/*****************************************************
  基本
*****************************************************/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.6;
  color: #333;
  font-family: 'Arial', 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

ul li {
  list-style: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}


/*****************************************************
  共通パーツ
*****************************************************/
.container {
  max-width: 380px;
  margin: auto;
  padding: 0 15px;
}


.button {
  width: 100%;
  max-width: 200px;
  font-weight: 600;
  display: block;
  background: #2CA681;
  border-radius: 4px;
  color: #fff;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  margin: auto;
  box-shadow: 0 5px 0 0 #258D6E;
  transform: translateY(-5px);
  transition: 0.3s all;
  position: relative;
}

.button::after {
  position: absolute;
  right: 15px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
}

.button:hover {
  box-shadow: 0 2px 0 0 #258D6E;
  transform: translateY(-2px);
}


/*****************************************************
  header
*****************************************************/
.header__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  height: 60px;
}

.header__logo {
  flex-basis: 150px;
}

.header__text {
  flex-basis: auto;
}

.header__text p {
  font-size: 1.2rem;
  letter-spacing: -.05rem;
  font-weight: 600;
}


/*****************************************************
  info
*****************************************************/
.top-info {
  background: #004087;
  color: #FFFF52;
  font-weight: 600;
  text-align: center;
  padding: 5px;
}

/*****************************************************
  status-bar
*****************************************************/
.status-bar {
  padding: 12px 0;
}

.status-bar__item {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.status-bar__item p {
  flex-basis: 90px;
  font-weight: 600;
}

ul.status-bar__contents {
  flex-basis: auto;
  display: flex;
  justify-content: center;
}

ul.status-bar__contents li {
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 24px;
  color: #004087;
  font-weight: 600;
  background: #fff;
  border: 1px solid #004087;
  border-radius: 50%;
  margin: 0 3px;
}

ul.status-bar__contents li.active {
  background: #004087;
  color: #fff;
}

.wizard-wrap {
  max-width: 350px;
  margin: 0 auto;
  overflow: hidden;
}

#wizard-form {
  width: 700%;
}

/*****************************************************
  step-form
*****************************************************/
.step-form {
  background: #f7f7f7;
  padding: 30px 0;
  min-height: 500px;
  float: left;
  width: 14.2%;
}

.step-form h2 {
  font-size: 1.6rem;
  border-left: 5px solid #004087;
  padding-left: 8px;
}

.step-form h2 span {
  font-size: 1.3rem;
}

.step-form__item {
  padding: 20px 0;
}

.step-form__item ul {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: stretch;
}

.step-form__item ul li {
  width: calc((100% - 10px) / 2);
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 10px;
  background: #fff;
  border: 1px solid #eee;
}

.step-form__item ul li:nth-of-type(2n) {
  margin-right: 0;
}

.step-form__item ul li.selected {
  background: #004087;
  color: #fff;
}

.step-form input[type=radio] {
  display: none;
}

.step-form input[type=radio]+label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.3;
  font-weight: bold;
  width: 100%;
  box-sizing: border-box;
  transition: 0.3s ease-out;
  -webkit-transition: 0.3s ease-out;
}

.step-form input[type=radio]+label::before {
  content: '';
  width: 100%;
  height: 65px;
  margin: 0 auto 8px;
  display: block;
}

.step-form input[type=radio]+label:before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.step-form input[type=text],
.step-form input[type=tel],
.step-form input[type=email],
.step-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #fff;
}

.step-form label.required::after {
  content: "必須";
  padding: 2px;
  border-radius: 2px;
  font-size: 1rem;
  color: #fff;
  background: #E91E63;
  margin-left: 6px;
}

.step-form input[type=tel].zip {
  background-image: url(../img/icon_zip.svg);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: left 10px center;
  padding-left: 40px;
}

.step-form__textbox {
  padding-bottom: 20px;
}

.step-form__textbox:last-of-type {
  padding-bottom: 0;
}

.step-form__textbox label {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 5px;
}

select {
  background-image: url(../img/icon_arrow_down.svg);
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 15px;
  position: relative;
}

select::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f007";
  position: absolute;
  right: 15px;
}

.step-form__button {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.step-form__button .back {
  width: 30%;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  text-align: center;
}

.step-form__button .back i {
  padding-right: 6px;
}

.step-form__kiyaku {
  margin: 30px auto;
  font-size: 1.5rem;
  text-align: center;
}

.step-form__kiyaku a {
  color: #666;
}

/*****************************************************
  step-form icon
*****************************************************/

/* STEP1 *****************************************/

.step-form input[type=radio][value="キャリアアドバイザー"]+label:before {
  background-image: url(../img/icon_advisor_crossed.png);
}

.step-form input[type=radio][value="法人営業"]+label:before {
  background-image: url(../img/icon_advisor_phone.png);
}
.step-form input[type=radio][value="個人営業"]+label:before {
  background-image: url(../img/icon_advisor_cheerful.png);
}
.step-form input[type=radio][value="接客販売"]+label:before {
  background-image: url(../img/icon_adviser_textgirl.png);
}
.step-form input[type=radio][value="販売営業未経験者"]+label:before {
  background-image: url(../img/icon_adviser_goodgirl.png);
}
.step-form input[type=radio][value="その他"]+label:before {
  background-image: url(../img/icon_adviser_meganegirl.png);
}

/* STEP2 *****************************************/

.step-form input[type=radio][value="新しい経験を積みたい"]+label:before {
  background-image: url(../img/icon_adviser_textgirl.png);
}

.step-form input[type=radio][value="年収を上げたい"]+label:before {
  background-image: url(../img/icon_advisor_kane.png);
}

.step-form input[type=radio][value="ワークライフバランスを整えたい"]+label:before {
  background-image: url(../img/icon_adviser_meganegirl.png);
}
.step-form input[type=radio][value="スタートアップ企業に挑戦したい"]+label:before {
  background-image: url(../img/icon_advisor_cheerful.png);
}
.step-form input[type=radio][value="社会貢献性の高い事業に挑戦したい"]+label:before {
  background-image: url(../img/icon_advisor_kouken..png);
}
.step-form input[type=radio][value="ワその他"]+label:before {
  background-image: url(../img/icon_step4_02.png);
}
/* STEP3 *****************************************/

.step-form input[type=radio][value="1ヶ月以内"]+label:before {
  background-image: url(../img/icon_step3_01.png);
}

.step-form input[type=radio][value="3ヶ月以内"]+label:before {
  background-image: url(../img/icon_step3_02.png);
}

.step-form input[type=radio][value="6ヶ月以内"]+label:before {
  background-image: url(../img/icon_step3_03.png);
}

.step-form input[type=radio][value="良い求人があればいつでも"]+label:before {
  background-image: url(../img/icon_step3_04.png);
}

.step-form input[type=radio][value="まだはっきりと決まってない"]+label:before {
  background-image: url(../img/icon_step3_05.png);
}

/* STEP4 *****************************************/

.step-form input[type=radio][value="1社"]+label:before {
  background-image: url(../img/icon_step4_1.png);
}

.step-form input[type=radio][value="2社"]+label:before {
  background-image: url(../img/icon_step4_2.png);
}

.step-form input[type=radio][value="3社"]+label:before {
  background-image: url(../img/icon_step4_3.png);
}

.step-form input[type=radio][value="4社"]+label:before {
  background-image: url(../img/icon_step4_4.png);
}

.step-form input[type=radio][value="5社以上"]+label:before {
  background-image: url(../img/icon_step4_5.png);
}

.step-form input[type=radio][value="就労経験無し"]+label:before {
  background-image: url(../img/icon_step4_nashi.png);
}

.step-form input[type=radio][value="その他"]+label:before {
  background-image: url(../img/icon_step4_07.png);
}



/*****************************************************
  thanks
*****************************************************/
.thanks_contents {
  padding: 30px 0;
}

.thanks_contents h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.thanks_contents p {
  font-size: 1.4rem;
}


/*****************************************************
  footer
*****************************************************/
.footer__nav {
  background: #004087;
  color: #fff;
  padding: 20px 0;
}

.footer__nav li {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 2px;
}

.footer__nav li:last-of-type {
  margin-bottom: 0;
}

.footer__nav a {
  color: #fff;
}

.footer__nav p {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.footer__copyright {
  background: #fff;
  padding: 15px 0;
}

.footer__copyright p {
  font-size: 1.2rem;
  text-align: center;
}