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,
select {
  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;
}
a {
  text-decoration: none;
}
button {
  border: none;
  background: none;
}
html {
  min-height: 100%;
  position: relative;
  background-color: #fff;
  color: #444;
  font-size: 3.5vw;
  line-height: 1.5;
}
body {
  background: #faf4e7;
  font-family: Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
    "ＭＳ Ｐゴシック", "メイリオ", Meiryo, "MS PGothic", sans-serif;
}
a {
  color: #444;
}
.form-item dd {
  font-size: 0;
}
.form-item dt {
  margin-bottom: 3%;
  font-size: 4vw;
  font-weight: bold;
  position: relative;
}
.form-item .required:after,
.form-item .optional:after {
  content: "";
  padding: 1.3% 1.5%;
  margin-left: 2%;
  line-height: 1;
  font-size: 3.2vw;
  border-radius: 3px;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.form-item .required:after {
  content: "必須";
  background: #f66876;
}
.form-item .optional:after {
  content: "任意";
  background: #b4b4b4;
}
.form-item input[type="checkbox"]:checked + span,
.form-item input[type="radio"]:checked + span {
  background-color: #fac546;
  color: #fff;
}
.form-item label > span {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  padding: 4% 0 4% 7%;
  font-size: 3.5vw;
  font-weight: bold;
  background-color: #fef4db;
  border-radius: 5px;
  transition: 0.3s;
  -webkit-tap-highlight-color: initial;
}
.form-item input[type="text"],
.form-item input[type="mail"],
.form-item input[type="tel"],
.form-item textarea,
.form-item select {
  width: 100%;
  height: 43px;
  box-sizing: border-box;
  padding: 0 15px;
  border: 1px solid #b5b5b5;
  background: #fff;
  font-size: 3.5vw;
  line-height: 43px;
  border-radius: 0;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-item input[type="checkbox"],
.form-item input[type="radio"] {
  display: none;
}
.form-item textarea {
  height: 16vw;
  padding: 8px 15px;
  line-height: 1.4;
  font-size: 3.8vw;
  resize: none;
}
.form-item .error {
  margin-top: 5px;
}
.form-item .form-check-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form-item .form-check-btn li {
  margin: 1.5% 0;
}
.form-item .form-check-btn li:nth-child(-n + 2) {
  margin-top: 0;
}
.form-item .form-check-btn li label > span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 43.5vw;
  height: 7.5vh;
  padding: 8% 9% 9%;
  box-sizing: border-box;
  font-size: 3.5vw;
  font-weight: bold;
  text-align: center;
  background-color: #fef4db;
  border-radius: 5px;
  transition: 0.3s;
  -webkit-tap-highlight-color: initial;
}
.three-column .form-check-btn li {
  margin: 1.5% 1.5% 0 0;
}
.three-column .form-check-btn li:nth-child(-n + 3) {
  margin-top: 0;
}
.three-column .form-check-btn li:nth-child(3n) {
  margin-right: 0;
}
.three-column .form-check-btn li label > span {
  width: 29vw;
}
.buttom-area {
  width: 92%;
  margin: 11% auto 0;
  text-align: center;
}
.buttom-area button {
  height: 60px;
  font-size: 4.8vw;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  vertical-align: middle;
  outline: none;
  cursor: pointer;
  position: relative;
}
.buttom-area button:after {
  font-family: FontAwesome;
  content: "\f108";
  font-weight: 900;
  line-height: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.buttom-area .nextbtn {
  width: 70%;
  justify-content: center;
  align-items: center;
  padding: 0 3% 0 0;
  background: #FF0000;
  box-shadow: 2px 4px 5px #5b533199;
  overflow: hidden;
}
.buttom-area .nextbtn:after {
  content: "";
  right: 4%;
}
@media screen and (max-width: 320px) {
  .buttom-area .nextbtn {
    padding-right: 3%;
  }
  .buttom-area .nextbtn:after {
    right: 4%;
  }
}
.buttom-area .button-shine:before {
  content: "";
  width: 85vw;
  height: 23vw;
  background: rgba(255, 255, 255, 0.2);
  animation: buttonshine 1.5s ease 1s infinite;
  animation-delay: 0s;
  transform: rotate(120deg) translate(40%, 250%);
  position: absolute;
  top: 0;
  left: 8%;
}
@keyframes buttonshine {
  0% {
    transform: rotate(120deg) translate(40%, 220%);
  }
  100% {
    transform: rotate(120deg) translate(-40%, -220%);
  }
}
.buttom-area button:disabled {
  pointer-events: none;
  background: #ff6473;
}
.buttom-area .policyBox {
  margin: 8% auto 0;
  text-align: left;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 85%;
  margin-bottom: 19%;
}
.buttom-area .policyBox li {
  display: inline-block;
  width: 46%;
  font-size: 3.7vw;
  line-height: 1;
}
.buttom-area .policyBox li:nth-child(odd) {
  border-right: 1px solid #b3b3b3;
}
.buttom-area .policyBox li:nth-child(n + 3) {
  margin-top: 14px;
}
.buttom-area .policyBox li:last-child {
  border: none;
}
.buttom-area .policyBox a {
  color: #444;
}
.buttom-area .policyBox a::after {
  content: "\f105";
  font-family: FontAwesome;
  font-weight: 900;
  color: rgb(246, 104, 118);
  margin-left: 10px;
  font-size: 130%;
  transform: translateY(-10%);
}
.buttom-area .quitLink {
  font-size: 12px;
  text-align: center;
  margin: 19% 0 10px 0;
  color: #444;
}
.buttom-area .quitLink a {
  min-height: 24px;
  line-height: 24px;
  color: #F74E00 !important;
}
.quitLink .underline {
  color: #F74E00;
  padding: 0px 0px 3px;
  border-bottom: 1px solid #F74E00;
}

header {
  background: #fff;
  width: 100%;
}
header .header-inner {
  width: 100%;
  height: 15vw;
  box-sizing: border-box;
  z-index: 10;
  background: #fff;
  display: flex;
  border-bottom: 3px solid #f6921d;
  justify-content: space-between;
  align-items: center;
}
header .header-inner .logo {
  width: 45%;
  min-height: 32px;
}
header .header-inner .logo img {
  display: block;
  width: 100%;
  height: 12.533vw;
}
.form-header {
  border-bottom: 2px solid #f6921d;
}
.form-header .header-inner {
  border-bottom: none;
}
.form-header .header-inner .logo {
  pointer-events: none;
}
.form-header .header-inner .license {
  width: 42%;
  padding: 0 4% 0 0;
}
.form-header .header-inner .license img {
  width: 100%;
  height: 8.141vw;
}
footer .copyright {
  padding: 3% 0;
  font-size: 2.6vw;
  text-align: center;
  background: #fff;
}
#form-footer {
  padding: 3.5%;
  color: #444;
  background: #faf4e7;
}
#form-footer .pmark {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2%;
}
#form-footer .pmark img {
  width: 11.5vw;
}
#form-footer .pmark .txt {
  padding-left: 2%;
  line-height: 1.4;
  font-size: 2.6vw;
}
#form-footer .pmark .txt span {
  font-weight: bold;
}
#form-footer .copyright {
  padding: 0;
  background: none;
}
.entry-box {
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  background: #fff;
}
.entry-box img {
  width: 100%;
}
.entry-box .job-info {
  margin-top: 2%;
  padding: 4%;
  background: #fff;
  border-radius: 5px;
}
.entry-box .job-info p {
  font-size: 4vw;
}
.entry-box .job-info p .job-id {
  margin-bottom: 2%;
  display: block;
  font-weight: bold;
}
.entry-box .job-info p .job-id:before {
  content: "";
  margin-right: 2%;
  display: inline-block;
  background: url(/entry/reregister/image/icon-reregister-fukidashi.png)
    no-repeat;
  width: 5vw;
  height: 5vw;
  background-size: 100%;
  vertical-align: middle;
}
.entry-box .buttom-area .btn-w90 {
  width: 100%;
  line-height: 1.25;
  padding-right: 0;
}
.entry-box .accordion-head {
  position: relative;
}
.entry-box .accordion-head:after {
  display: inline-block;
  font-family: FontAwesome;
  content: "\f107";
  font-weight: 900;
  font-size: 130%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.entry-box .active:after {
  content: "\f106";
}
.entry-box .accordion-content {
  display: none;
}
p.error {
  display: none;
  margin-top: 0px;
  color: transparent;
}
p.error.show {
  display: inline-block;
  margin-top: 5px;
  color: red;
}
.mv {
  margin-bottom: 3%;
  padding: 2.5% 4%;
  background: url(/entry/reregister/image/bg-entry.png);
  position: relative;
}
.mv h1 {
  background-image: url(/entry/reregister/image/img-reregister-kaigorira.png);
  background-size: 23%;
  background-repeat: no-repeat;
  background-position: right top;
}
.mv h1 img {
  width: 76%;
  padding: 1% 0;
}
.top-text-area {
  margin: 0 18px 20px;
  margin: 0 5% 4%;
}
.top-text-area .top-text-time {
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 16px;
}
.top-text-area .top-text {
  color: red;
  font-size: 14px;
  font-weight: bold;
}
.form-item {
  margin: 0 5% 4%;
}
.form-item .form-check-btn li {
  margin: 0 0 2%;
}
.buttom-area {
  margin: 6% auto 0;
}
.buttom-area .small-text {
  font-size: 13px;
}

/* 求人表示全体 */
.job-section {
  margin-top: 10px;
  margin-bottom: 24px;
}
.jobdetail {
  background: #FFFFFF;
  margin-top: 15px;
  margin-bottom: 24px;
  padding: 24px 20px 0px 20px;
  position: relative;
}

/* お問い合わせラベル */
.jobdetail-label {
  position: absolute;
  top: -12px;
  left: 20px;
  background: linear-gradient(to left, #FF8931, #FF501F);
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 2;
}

/* 内包ボックス */
.jobdetail-box {
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
}

/* 求人カードのスタイル */
.job-card {
  padding: 10px;
  border-bottom: 1px solid #FFD8A0;
}
.job-card .company {
  font-weight: bold;
  font-size: 16px;
  color: #222;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.job-card .company img {
  width: 20px;
  height: 20px;
}
.job-card .appeal {
  font-size: 14px;
  color: #333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.6;
}
.job-toggle-button {
  display: block;
  text-align: center;
  color: #FF7915;
  font-size: 14px;
  padding-top: 12px;
  padding-bottom: 12px;
  cursor: pointer;
}

/* 非表示化 */
.jobdetail input {
  display: none;
}

.jobdetail input:checked ~ .jobdetail-box .job-card .appeal {
  -webkit-line-clamp: unset;
  display: block;
}

.jobdetail .jobdetail-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.jobdetail input:checked ~ .jobdetail-box .jobdetail-container {
  max-height: none;
  padding-bottom: 12px;
}

.jobdetail-container .jobdetail-inner {
  padding: 0 10px;
  font-size: 14px;
}
.jobdetail-inner dl {
  display: block;
  padding: 8px 0;
}
.jobdetail-inner dt {
  display: inline-block;
  width: auto;
  font-weight: bold;
  color: #000000;
}
.jobdetail-inner dd {
  width: 100%;
  margin-top: 4px;
  color: #222222;
}

.hidden {
  display: none;
}

/* 給与情報ブロック */
.salary-block dd .main-salary {
  width: 95%;
  font-weight: bold;
  font-size: 16px;
  color: #222222;
  margin: 6px 0;
  display: block;
  padding-bottom: 3px;
  border-bottom: 2px solid #BBBBBB;
}

.salary-block dd .sub-info {
  font-size: 14px;
  color: #767676;
  line-height: 1.6;
}

/* トグルボタンのテキスト切り替え */
.jobdetail label.job-toggle-button::after {
  content: "求人詳細を見る ▼";
}
.jobdetail input:checked ~ label.job-toggle-button::after {
  content: "詳細内容を畳む ▲";
}

@media screen and (min-width: 460px) {
  body {
    width: 460px;
    margin: auto;
    position: relative;
    background: #faf4e7;
  }
  header .header-inner {
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    z-index: 10;
    background: #fff;
    display: flex;
    border-bottom: 3px solid #f6921d;
    justify-content: space-between;
    align-items: center;
  }
  header .header-inner .logo {
    width: 45%;
    min-height: 32px;
  }
  header .header-inner .logo img {
    display: block;
    width: 100%;
    height: 12.533vw;
  }
  .form-header .header-inner .license {
    width: 42%;
    padding: 0 4% 0 0;
  }
  .form-header .header-inner .license img {
    width: 100%;
    height: 40px;
  }
  .entry-box .job-info p {
    font-size: 16px;
  }
  .entry-box .job-info p .job-id:before {
    content: "";
    margin-right: 2%;
    display: inline-block;
    background: url(/entry/reregister/image/icon-reregister-fukidashi.png)
      no-repeat;
    width: 18px;
    height: 18px;
    background-size: 100%;
    vertical-align: middle;
  }
  .top-text-area {
    margin: 0 18px 20px;
  }
  .form-item {
    margin: 0 18px 15px;
    font-size: 16px;
  }
  .form-item dt {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: bold;
    position: relative;
  }
  .form-item .required:after,
  .form-item .optional:after {
    content: "";
    padding: 1.3% 1.5%;
    margin-left: 2%;
    line-height: 1;
    font-size: 16px;
    border-radius: 3px;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .form-item .required:after {
    content: "必須";
    background: #f66876;
  }
  .form-item .optional:after {
    content: "任意";
    background: #b4b4b4;
  }
  .form-item .form-check-btn li label > span {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 200px;
    height: 50px;
    padding: 13px 14px 14px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    background-color: #fef4db;
    border-radius: 5px;
    transition: 0.3s;
    -webkit-tap-highlight-color: initial;
  }
  .three-column .form-check-btn li label > span {
    width: 138px;
  }
  .form-item textarea {
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    padding: 0 15px;
    border: 1px solid #b5b5b5;
    background: #fff;
    font-size: 16px;
    line-height: 43px;
    border-radius: 0;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .buttom-area button {
    height: 60px;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    vertical-align: middle;
    outline: none;
    cursor: pointer;
    position: relative;
  }
  .buttom-area .policyBox li {
    display: inline-block;
    font-size: 17px;
    line-height: 1;
  }
  p.error {
    display: none;
    margin-top: 0px;
    color: transparent;
  }
  p.error.show {
    display: inline-block;
    font-size: 14px;
    margin-top: 0px;
    color: red;
  }
  p.form-error {
    display: none;
    margin-top: 0px;
    color: transparent;
  }
  p.form-error.show {
    display: inline-block;
    font-size: 15px;
    margin-top: 5px;
    color: red;
    width: 400px;
  }

  #form-footer {
    padding: 3.5%;
    color: #444;
    background: #faf4e7;
  }
  #form-footer .pmark {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2%;
  }
  #form-footer .pmark img {
    width: 55px;
    height: 55px;
  }
  #form-footer .pmark .txt {
    padding-left: 2%;
    line-height: 1.4;
    font-size: 13px;
  }
  #form-footer .pmark .txt span {
    font-weight: bold;
    font-size: 13px;
  }
  #form-footer .copyright {
    padding: 0;
    background: none;
  }
  footer .copyright {
    padding: 3% 0;
    font-size: 18.4px;
    text-align: center;
    background: #fff;
  }
}
