@charset "UTF-8";
:root {
  --main: #D32D1F;
  --sub: #EA5651;
}

html * {
  max-width: 600px;
}

*, ::after, ::before {
  box-sizing: border-box;
  line-height: 1;
}

.ui-helper-hidden-accessible {
  display: none;
}

.inputRadio, .inputText, select, .btnNext, .btnBack {
  cursor: pointer;
}

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

img {
  display: block;
}

html {
  background-color: #ccc;
}

ol, ul {
  list-style: none;
}

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

caption, td, th {
  text-align: left;
  font-weight: inherit;
  vertical-align: middle;
}

blockquote, q {
  quotes: none;
}

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

a img {
  border: none;
}

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

a {
  color: inherit;
  text-decoration: inherit;
}

body {
  width: 100%;
  max-width: 600px;
  min-height: 100vh;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  background-color: #ffffff;
  color: #545454;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  font-family: Arial, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "メイリオ", sans-serif;
}

h3 {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 0px;
  padding: 5px 0px 8px;
  display: flex;
  align-items: center;
}
h3:before {
  content: "■";
  color: var(--main);
  margin-right: 2px;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "メイリオ", sans-serif;
}
h3.name::before, h3.birth::before, h3.tel::before, h3.mail::before {
  content: "";
  width: 22px;
  height: 22px;
  display: inline-block;
  position: relative;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: -2px;
  margin-right: 2px;
}
h3.name::before {
  background-image: url(../img/ico_man.png);
}
h3.birth::before {
  background-image: url(../img/ico_birth.png);
}
h3.tel::before {
  background-image: url(../img/ico_tel.png);
}
h3.mail::before {
  background-image: url(../img/ico_mail.png);
}

#sec1 h3:before {
  content: "";
}

input[type=radio], input[type=checkbox] {
  display: none;
}

label.error {
  margin-bottom: 1em;
  display: block;
  text-align: center;
  padding: 0.3em 1em;
  border: 1px solid var(--main);
  color: var(--main);
}

.btnArea {
  text-align: center;
  margin-top: 4cap;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btnArea span {
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 3em;
}
.btnArea.buttonFixed {
  margin: 15px auto 0;
  max-width: 600px;
  position: fixed;
  bottom: 60px;
  background: #fff;
  left: 0;
  right: 0;
  padding: 3% 5% 6%;
  box-shadow: 0 -5px 5px 0 #ccc;
}

@media screen and (min-width: 600px) {
  .btnArea.buttonFixed {
    padding: 3% 5%;
  }
}
.hands {
  width: 42px;
  height: 42px;
  position: absolute;
  right: 10px;
  top: 390px;
  background: url(../img/yubi.png) no-repeat;
  background-size: contain;
  z-index: 200;
  pointer-events: none;
  transition: 0.5s ease-out;
  animation: 2.5s linear 0s infinite normal none running finger;
}

@keyframes finger {
  0% {
    transform: translate(0px, 0px);
  }
  50% {
    transform: translate(-15px, 0px);
  }
  75% {
    transform: translate(0px, 0px);
  }
}
#overlay,
#overlayFooter {
  display: none;
  position: fixed;
  z-index: 100;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.5;
  inset: 0;
  margin: auto;
}
#overlay.overlay-on,
#overlayFooter.overlay-on {
  display: block;
}

#overlayFooter {
  position: absolute;
}

header {
  background-color: #fff;
  position: relative;
}
header h1.top_msg {
  background-color: var(--main);
  color: #fff;
  font-size: 1em;
  font-weight: bold;
  padding: 0.5em 1em;
}
@media screen and (max-width: 600px) {
  header h1.top_msg {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 400px) {
  header h1.top_msg {
    font-size: 0.7em;
  }
}
header .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8em;
  padding-left: 0.5em;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 4px -3px;
}
header .flex img {
  width: 30%;
}
header .flex p.number {
  font-size: 0.7em;
  font-weight: bold;
}
header .logo img {
  width: 100%;
  vertical-align: bottom;
}

section {
  display: none;
}
section div.wrapper {
  margin: 5px auto 40px;
  width: 84%;
}
@media (min-width: 600px) {
  section div.wrapper {
    padding: 0 0 20px;
    margin: 0 auto;
    max-width: 500px;
  }
}
section .formUnitBody {
  margin-bottom: 20px;
}
section#sec1 {
  display: block;
}
section#sec1 img.img_main {
  width: 100%;
}
section#sec1 .pop-bk {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100vw;
  height: 100vh;
  background: rgb(0, 0, 0);
  opacity: 0.5;
  z-index: 100;
}
section#sec1 .pop-flex {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 101;
}
section#sec1 .pop-wrapper {
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  width: 87%;
  max-width: 350px;
}
section#sec1 .pop-wrapper .pop-header {
  background-color: var(--sub);
  display: grid;
  justify-items: center;
  padding: 16px 16px 0px;
}
section#sec1 .pop-wrapper .pop-header img {
  width: 65%;
  height: auto;
  margin: 0px auto;
  padding-top: 10px;
}
section#sec1 .pop-wrapper .pop-content {
  padding: 20px;
  padding-bottom: 25px;
  width: 100%;
}
section#sec1 .pop-wrapper .pop-content h3.formHead {
  display: block;
  text-align: center;
  color: #707070;
  font-size: 1.125rem;
}
section#sec1 .pop-wrapper .pop-content .pop-content-inner {
  display: flex;
  flex-flow: column;
  gap: 16px;
  width: 100%;
}
section#sec1 .pop-wrapper .pop-content .pop-content-inner .pop-content-inputRadio {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  box-sizing: border-box;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
  box-shadow: rgba(0, 0, 0, 0.5) 2px 2px 6px -2px;
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 1.2px;
  width: 100%;
  height: 70px;
}
@media screen and (min-width: 601px) {
  section#sec1 .pop-wrapper .pop-content .pop-content-inner .pop-content-inputRadio {
    font-size: 1.25rem;
  }
}
section#sec1 .pop-wrapper .pop-content .pop-content-inner .pop-content-inputRadio-a {
  background: rgb(228, 145, 42);
  border-bottom: 3px solid rgb(185, 87, 22);
}
section#sec1 .pop-wrapper .pop-content .pop-content-inner .pop-content-inputRadio-b {
  background: rgb(73, 184, 191);
  border-bottom: 3px solid rgb(26, 134, 140);
}
section div.formList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
  justify-items: center;
  margin-bottom: 15px;
}
section div.formList label.inputRadio {
  display: flex;
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 20px 5px;
  border: 1px solid #555;
  border-radius: 4px;
  box-sizing: border-box;
  color: #333;
  font-size: 1em;
  font-weight: bold;
  line-height: 1em;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: 0 2px 3px 0 rgba(141, 141, 141, 0.4);
  background: white;
}
section div.formList label.inputRadio.lightpink {
  background-color: #ff7d7d;
  border-color: #ff7d7d;
  color: #FFF;
  top: -1px;
  border-radius: 4px;
}
section div.formList label.inputRadio strong {
  font-size: 1.5em;
}
section div.formList.withIcon label.inputRadio::before {
  content: "";
  width: 100%;
  height: 55px;
  margin: 0 auto 7px;
}
section#sec2 div.formList label.inputRadio:last-child {
  grid-column: 1/3;
}
section#sec3 div.formList.withIcon label.inputRadio:nth-child(1):before {
  background: url(../img/ico_03-1.png) center/contain no-repeat;
}
section#sec3 div.formList.withIcon label.inputRadio:nth-child(2):before {
  background: url(../img/ico_03-2.png) center/contain no-repeat;
}
section#sec3 div.formList.withIcon label.inputRadio:nth-child(3):before {
  background: url(../img/ico_03-3.png) center/contain no-repeat;
}
section#sec3 .experience.formList.withIcon label.inputRadio:nth-child(1):before {
  background: url(../img/ico_03-4.png) center/contain no-repeat;
}
section#sec3 .experience.formList.withIcon label.inputRadio:nth-child(2):before {
  background: url(../img/ico_03-5.png) center/contain no-repeat;
}
section#sec4 div.formList {
  grid-template-columns: 1fr;
}
section#sec4 div.formList label.inputRadio {
  font-size: 1em;
  height: 70px;
  align-items: center;
  position: relative;
}
section#sec4 div.formList label.inputRadio::before {
  position: absolute;
  width: 45px;
  height: 45px;
  right: 8px;
  margin: 0;
}
section#sec4 div.formList.withIcon label.inputRadio:nth-child(1):before {
  background: url(../img/ico_04-1.png) center/contain no-repeat;
}
section#sec4 div.formList.withIcon label.inputRadio:nth-child(2):before {
  background: url(../img/ico_04-2.png) center/contain no-repeat;
}
section#sec4 div.formList.withIcon label.inputRadio:nth-child(3):before {
  background: url(../img/ico_04-3.png) center/contain no-repeat;
}
section#sec4 div.formList.withIcon label.inputRadio:nth-child(4):before {
  background: url(../img/ico_04-4.png) center/contain no-repeat;
}
section#sec7 .formUnit {
  margin-bottom: 20px;
}
section#sec7 .formUnit .formUnitBody {
  margin-bottom: 10px;
}

@media screen and (max-width: 375px) {
  section#sec7 {
    padding-bottom: 125px;
  }
}
.news {
  max-width: 96%;
  width: 360px;
  margin: 16px auto;
  text-align: center;
  padding: 2px;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 1.1px;
  background: rgb(255, 255, 255);
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.3) 2px 2px 4px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
  font-weight: 700;
  animation: 2s ease-out 0s infinite normal none running ani-shrink;
  opacity: 1;
}
.news .job_count {
  color: darkorange;
  filter: blur(4px);
  font-size: 18px;
  letter-spacing: 1.2px;
  margin: 0px 0px 0px 4px;
}

@keyframes ani-shrink {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
.prefWrap, .nameBirthWrap, .tellMailWrap {
  margin: auto;
  padding: 20px;
  border-radius: 5px;
  border: solid 1px #373948;
  box-shadow: 2px 2px 10px -3px rgba(0, 0, 0, 0.6);
}

.key {
  font-size: 70%;
  text-align: center;
  margin: auto auto 10px auto;
}
.key > img {
  display: inline;
  width: 14px;
  vertical-align: middle;
  margin: -2px 5px auto auto;
}

.formH4 {
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: #707070;
  margin: 0 auto 10px;
  padding: 5px 10px;
  width: 100%;
}

.inputText,
.select {
  position: relative;
  width: 100%;
  display: block;
}
.inputText select,
.select select {
  width: 100%;
  height: 56px;
  padding: 0px 14px;
  font-size: 1.25rem;
  color: rgb(77, 72, 72);
  background: rgb(255, 255, 255);
  border-top: none;
  border-right: none;
  border-left: none;
  -o-border-image: initial;
     border-image: initial;
  margin: 14px auto 0px;
  border-bottom: 1px solid rgb(69, 69, 69);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-weight: 600;
}

#postal, #name, #birthyear, #tel, #email {
  font-size: 22px;
  letter-spacing: 0.075em;
  font-weight: 800;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 56px;
  padding: 0 14px;
  border: none;
  background-color: #ffffe1;
  border-radius: 8px;
  border: 1px solid #cbcbcb;
}

#postal {
  border-radius: 6px;
  border: 1px solid rgb(228, 145, 42);
  box-sizing: border-box;
  width: 100%;
  height: 56px;
  padding: 0px 14px 0px 40px;
  font-size: 1.25rem;
  font-weight: 600;
  background: url(../img/ico_zip.svg) left 10px center/20px no-repeat rgb(255, 255, 225);
}

#email {
  background-color: #fff;
  border: none;
  box-shadow: none;
  font-size: 16px;
}

#birthyear {
  padding: 0 70px;
}

.birthyear {
  position: relative;
}
.birthyear::before {
  content: "西暦";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  margin-top: auto;
  color: rgb(84, 84, 84);
  font-size: 20px;
  line-height: 56px;
  z-index: 5555;
  font-weight: bold;
}
.birthyear::after {
  content: "年";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin-top: auto;
  color: rgb(84, 84, 84);
  font-size: 15px;
  line-height: 56px;
  z-index: 5555;
}

.telWrap {
  position: relative;
}
.telWrap::after {
  background: url(../img/icon_key.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  right: 10px;
  top: 50%;
  margin-top: -9px;
  opacity: 0.3;
  visibility: visible;
}

.inputLabel,
.inputLabel2,
.inputLabel3 {
  position: absolute;
  top: 22px;
  left: 22px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #999;
  transition: font 0.1s ease, top 0.1s ease;
  pointer-events: none;
}

.inputLabel2 {
  left: 42px;
}

.inputLabel3 {
  left: 70px;
}

.inputLabel4 {
  left: 68px;
}

.placeOn + .inputLabel,
.placeOn + .inputLabel2,
.placeOn + .inputLabel3 {
  position: absolute;
  top: 2px;
  left: 12px;
  font-size: 10px;
  color: darkorange;
  font-weight: bold;
}

.nameText, .birthText, .TelText {
  font-size: 90%;
  text-align: left;
  color: #383948;
  margin: auto auto 20px auto;
}
.nameText > img, .birthText > img, .TelText > img {
  display: inline;
  width: 14px;
  vertical-align: middle;
  margin: -2px 5px auto auto;
}

.toggle .toggle-outer {
  display: flex;
  justify-content: center;
}
.toggle .toggle-outer label {
  background: rgb(248, 248, 248);
  border-radius: 50px;
  line-height: 20px;
  text-align: center;
  margin: 0px auto;
  font-weight: bold;
  font-size: 0.875rem;
  color: rgb(84, 84, 84);
  cursor: pointer;
  padding: 0.3em 36px;
}
.toggle #toggle1:checked ~ .addTxt {
  display: none;
}
.toggle #toggle1:checked ~ .toggle-inner {
  display: block;
}
.toggle .toggle-inner {
  display: none;
}

.addTxt {
  display: flex;
  align-items: center;
  font-size: 12px;
  margin: 0px auto 16px;
}
.addTxt > img {
  width: calc(20% - 10px);
  margin-right: -10px;
}
.addTxt p {
  width: 80%;
  position: relative;
  display: inline-block;
  margin: 0px 0px 0px auto;
  padding: 7px 10px;
  max-width: 100%;
  background: rgb(241, 246, 249);
  border-radius: 6px;
  color: rgb(84, 84, 84);
  text-align: left;
  font-weight: 600;
  letter-spacing: 0px;
  line-height: 1.5;
}
.addTxt p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  margin-top: -10px;
  border-width: 10px 15px 10px 10px;
  border-style: solid;
  border-color: transparent rgb(241, 246, 249) transparent transparent;
  -o-border-image: initial;
     border-image: initial;
}
.addTxt p span.pink {
  color: #ff348e;
  font-size: 14px;
}

.hissu {
  color: #FFFFFF;
  background-color: #f45775;
  font-size: 50%;
  padding: 4px 4px;
  margin: auto auto auto 2px;
}

#btnForm {
  z-index: 101;
  width: 85%;
}
#btnForm img {
  width: 100%;
}

.tel-count, .zip-count {
  position: absolute;
  top: -18px;
  right: 0;
  background: #f8f8f8;
  border-radius: 100px;
  padding: 0px 8px 4px;
  transition: 0.3s ease-out;
  -webkit-transition: 0.3s ease-out;
  -moz-transition: 0.3s ease-out;
  font-size: 12px;
  width: auto;
  white-space: nowrap;
}

footer {
  margin-top: auto;
}
footer .update_info {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: right;
  padding: 3px;
  background-color: rgb(250, 245, 202);
  color: rgb(59, 106, 107);
}
footer .copyright {
  background: black;
  color: white;
  text-align: center;
  font-size: 10px;
  padding: 10px 0;
}
footer.fotterFixed {
  margin-top: auto;
  position: fixed;
  bottom: 0;
  width: 100%;
}
footer .policy {
  padding-bottom: 8px;
}
footer .policy .popupLink {
  cursor: pointer;
  text-decoration: underline;
}

@keyframes shiny {
  0% {
    left: -30%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.tagArea {
  margin: 0 0 16px;
  padding: 0;
}
.tagArea .tagList {
  display: flex;
  line-height: 1;
}
.tagArea .tagList .tagUnit {
  color: darkorange;
  text-decoration: underline;
  font-size: 14px;
  margin-right: 8px;
  font-weight: bold;
  margin-bottom: 4px;
}
.tagArea .textNote {
  font-size: 12px;
}

.wideButtonWrapper {
  display: grid;
  grid-template-columns: 1fr; /* 最初の行は1列のみ */
  grid-template-rows: auto auto;
}

.wideButton {
  grid-column: 1/-1;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 18px !important;
}
.wideButton::before {
  width: 60px !important;
  background-size: contain !important;
  margin: 0 10px 0 0 !important;
}

.ribbon::after {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/ribbon_1.svg);
  width: 100px;
  height: 35px;
  left: -9px;
  top: 2px;
}

::-webkit-input-placeholder {
  font-size: 0.75em !important;
}/*# sourceMappingURL=spall.css.map */