﻿html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  box-sizing: border-box;
  color: #333;
  background: #ffff;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    Meiryo, "ＭＳ Ｐゴシック", Verdana, Geneva, Arial, Helvetica, sans-serif;
}

li {
  list-style-type: none;
}

a:link,
a:visited {
  text-decoration: none;
  color: #444;
}

/* フォーム共通 */
form {
  background: white;
  padding-bottom: 1.5em;
}

form select,
form input[type="text"],
form input[type="tel"],
form textarea {
  padding: 5px 8px;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 2px;
  box-sizing: border-box;
  border: 1px solid #bebebe;
  appearance: none;
  -webkit-appearance: none;
}

form input[type="text"],
form input[type="tel"] {
  height: 34px;
  box-sizing: border-box;
  width: 100%;
  line-height: 15px;
}

form .check_bg {
  font-size: 90%;
  overflow: auto;
}

form input[type="checkbox"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

form input[type="checkbox"] + label {
  display: block;
  padding: 4vw 3vw 4vw 10vw;
  width: 100%;
  box-sizing: border-box;
}

form .check_bg input[type="checkbox"] + label {
  background: url(../img/img-check-off.png);
  background-size: 6%;
  background-repeat: no-repeat;
  background-position: left 3vw center;
}

form .check_bg input[type="checkbox"]:checked + label {
  background: url(../img/img-check-on.png);
  background-size: 6%;
  background-repeat: no-repeat;
  background-position: left 3vw center;
}

form .check_bg input[type="checkbox"]:last-of-type + label {
  -moz-border-radius: 0 0 3px 3px;
  -webkit-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
}

form .form_inner {
  padding: 5%;
}

form .form_inner select {
  width: 100%;
  height: 50px;
  background: #fff url(../img/icon-select-arrow.png) no-repeat 95% center;
  background-size: 8px;
}

form .form_inner.inner_birthday select.valid-year {
  width: 30%;
}

form .form_inner.inner_birthday select.valid-month,
form .form_inner.inner_birthday select.valid-day {
  width: 20%;
}

form h3 {
  border-top: 3px solid #dcdcdc;
  padding: 7% 5% 1%;
  font-weight: bold;
  font-size: 17px;
  display: flex;
  align-items: center;
}

form h3.required:before {
  content: "必須";
  font-family: FontAwesome;
  font-size: 3.2vw;
  font-weight: normal;
  color: #fff;
  display: inline-block;
  margin-right: 2%;
  padding: 1vw 2.8vw;
  background-color: #fc8419;
  border-radius: 0.6vw;
}

form textarea {
  width: 100%;
}

form button {
  background: none;
  border: none;
}

/* ヘッダー */
header {
  width: 100%;
  overflow: hidden;
}

header .header-inner {
  width: 100vw;
  height: 15vw;
  z-index: 10;
  top: 0;
  background: #fff;
  border-bottom: 4px solid #fc8419;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

header .header-inner .logo {
  pointer-events: none;
}

header .header-inner .logo img {
  display: block;
  width: 49vw;
  min-height: 32px;
  height: auto;
}

header .header-inner .jobchange-success {
  width: 40%;
  padding-right: 1vw;
}

/* フォーム */
.controller-simple h2 img {
  display: block;
}

.controller-simple .entry_head h2 {
  padding: 3% 5%;
  background-color: #fc8419;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.controller-simple .entry_head .inner {
  padding: 3.5% 4%;
  background: url(../img/img_entry_top.png) no-repeat;
  background-size: cover;
}

.controller-simple .entry_head .inner ul {
  background-color: #fff;
  border-radius: 5px;
  padding: 4% 5%;
}

.controller-simple .entry_head .inner ul li {
  margin: 0 0 2.8%;
  font-size: 3.5vw;
}

.controller-simple .entry_head .inner ul li:before {
  content: "\f058";
  display: inline-block;
  margin-right: 1vw;
  margin-bottom: -2px;
  font-family: FontAwesome;
  font-size: 1.2em;
  color: #3dc308;
}

.controller-simple .entry_head .inner ul p {
  font-size: 10px;
  text-align: right;
}

.controller-simple .entry_head .inner .und_tx {
  font-size: 3.5vw;
  font-weight: bold;
  text-align: center;
  margin: 3% 0 0;
}

.controller-simple .job_info {
  margin: 0 auto;
  background-color: #fff4d8;
  padding: 5%;
  font-size: 12px;
  line-height: 1.4em;
  font-weight: bold;
}

.controller-simple .job_info {
  padding: 2.5% 5%;
  font-size: 10px;
}

.controller-simple .entry_head h2 {
  padding: 2% 4%;
  font-size: 4.4vw;
}

.controller-simple form + section {
  padding: 5.5%;
  cursor: pointer;
}

.controller-simple form button.policy_btn {
  border-radius: 1vw;
  width: 90%;
  height: 91px;
  font-size: 4.6vw;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0.97, #ff6d00),
    color-stop(0, #ffa361)
  );
  background: -webkit-linear-gradient(top, #ffa361 0%, #ff6d00 97%);
  background: -moz-linear-gradient(top, #ffa361 0%, #ff6d00 97%);
  background: -o-linear-gradient(top, #ffa361 0%, #ff6d00 97%);
  background: -ms-linear-gradient(top, #ffa361 0%, #ff6d00 97%);
  background: linear-gradient(to bottom, #ffa361 0%, #ff6d00 97%);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  border: 3px solid #ff6d00;
  color: #fff;
  font-weight: bold;
  text-align: left;
  box-shadow: none;
  position: relative;
  padding: 4% 10%;
  margin: 5%;
  box-sizing: border-box;
}

.controller-simple form button.policy_btn:after {
  content: "\f061";
  font-family: FontAwesome;
  font-weight: normal;
  font-size: 5vw;
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/* 各種リンク */
.policy_lt {
  font-size: 3.4vw;
  text-align: center;
}

.policy_lt a {
  margin: 0 0.2%;
  color: #0042b5;
}

/* お問い合わせ */
.tel_area {
  display: block;
  background-color: #d9f3ff;
  padding: 20px;
}

.tel_area img {
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 0;
}

/* ローディング */
.controller-simple form button.policy_btn:has(.text):after {
  content: "";
}

.loading:has(.text) {
  transition: 0.5s ease-in-out;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  height: 90px;
}

.loading .text {
  margin-right: 10px;
}

.isLoading {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 0.25rem solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  animation: spin 1s infinite linear;
}

/* フッター */
footer {
  width: 100%;
  text-align: center;
  margin: 10px 0 0;
  padding: 10px 0;
  font-size: 10px;
  bottom: 0;
}

footer .pmark-box {
  font-size: 8px;
  line-height: 1.4;
  padding: 0 2% 2%;
}

footer .pmark-box img {
  float: left;
  width: 40px;
  margin-right: 10px;
}

footer .pmark-box span {
  font-weight: bold;
  font-size: 9px;
}

/* エラーメッセージ */
.validErrorMsg {
  padding: 30px;
  border: 1px solid #F4B2B2;
  border-radius: 10px;
  margin: 20px;
  background-color: #FEE;
  list-style-type: disc;
  font-weight: 700;
}

/* PC表示最適化 */
@media screen and (min-width: 460px) {
  body {
    width: 460px;
    margin: auto;
  }

  form input[type="checkbox"] + label {
    padding: 18.4px 13.8px 18.4px 46px;
  }

  form .check_bg input[type="checkbox"] + label,
  form .check_bg input[type="checkbox"]:checked + label {
    background-position: left 13.8px center;
  }

  form h3.required:before {
    font-size: 14.72px;
    padding: 4.6px 12.88px;
    border-radius: 2.76px;
  }

  header .header-inner {
    width: 460px;
    height: 69px;
  }

  header .header-inner .logo img {
    width: 225.4px;
  }

  header .header-inner .jobchange-success {
    padding-right: 4.6px;
  }

  .controller-simple .entry_head .inner ul li {
    font-size: 16.1px;
  }

  .controller-simple .entry_head .inner ul li:before {
    margin-right: 4.6px;
  }

  .controller-simple .entry_head .inner .und_tx {
    font-size: 16.1px;
  }

  .controller-simple .entry_head h2 {
    font-size: 20.24px;
  }

  .controller-simple form button.policy_btn {
    height: 108px;
    border-radius: 4.6px;
    font-size: 21.16px;
  }

  .controller-simple form button.policy_btn:after {
    font-size: 23px;
  }

  .policy_lt {
    font-size: 15.64px;
  }
}

/* アニメーション */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
