@charset "utf-8";
/* CSS Document */
@media screen and (min-width:768px), print {
  /*----------------------------------------------------------------------
PC Style
----------------------------------------------------------------------*/
  /********** メインビュー **********/
  .main_img {
    background: url("../images/entry/main_img.jpg") no-repeat center / cover;
  }
  /**********  メインエリア ***********/
  main {
    padding-top: 0;
  }
  /* 募集要項 */
  .job_description {
    padding-top: 100px;
    padding-bottom: 18.594%;
    background: #F3F3F3;
  }
  .job_description:after {
    content: "";
    width: 100%;
    height: 0;
    background: url("../images/entry/bg_gray02.jpg") no-repeat left top / 100%;
    padding-bottom: 18.594%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .job_description .inner {
    display: flex;
    justify-content: space-between;
  }
  .job_description dl {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    width: 900px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 50px;
  }
  .job_description dl dt {
    width: 180px;
    font-weight: 600;
    padding: 1em 0 1em 0.5em;
    border-bottom: solid 1px var(--red);
  }
  .job_description dl dd {
    width: 720px;
    padding: 1em 0 1em 1em;
    border-bottom: solid 1px #A5A5A5;
  }
  /* 応募フォーム*/
  .entry_form {
    margin-bottom: 180px;
  }
  .entry_form .flow {
    display: flex;
    gap: 0 5px;
    width: 750px;
    margin: 0 auto 45px;
  }
  .entry_form .flow li {
    width: calc(100%/3);
    display: block;
    border: solid 1px var(--navy);
    padding: 2px 0;
    transform: skew(-20deg);
    text-align: center;
  }
  .entry_form .flow li.on {
    background: var(--navy);
  }
  .entry_form .flow li span {
    display: block;
    color: var(--navy);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    transform: skew(20deg);
  }
  .entry_form .flow li.on span {
    color: #FFF;
  }
  .form {
    background: #F3F3F3;
    padding: 60px 75px;
  }
  .form input[placeholder], .form textarea {
    font-size: 1.6rem;
  }
  .form dl {
    margin-bottom: 60px;
  }
  .form dl dt {
    font-weight: 600;
    margin-bottom: 10px;
  }
  .required {
    display: inline-block;
    background: #D90000;
    color: #FFF;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0 7px;
    margin-right: 10px;
  }
  .form dl dd {
    width: 100%;
    margin-bottom: 20px;
  }
  .form dl dd input {
    display: inline-block;
    margin-right: 0.5em;
  }
  .form dl dd input[type="text"], .form dl dd input[type="tel"], .form dl dd input[type="email"] {
    width: 100%;
    height: 45px;
    padding: 0 0.5em;
  }
  .form textarea {
    width: 100%;
    padding: 0.5em;
    margin-bottom: 50px;
    resize: none;
  }
  input[type="checkbox"] {
    width: 18px;
    height: 18px;
    vertical-align: -4px;
  }
  .form .policy {
    text-align: center;
    margin-bottom: 20px;
  }
  .form .policy input {
    display: inline-block;
    margin-right: 7px;
  }
  .form .policy a {
    color: #0465A9;
    font-weight: 500;
    background: url("../images/contact/linkto.svg") no-repeat right center / 12px;
    padding-right: 15px;
    margin-right: 3px;
    text-decoration: underline;
    transition: opacity 0.3s;
  }
  .form .policy a:hover {
    opacity: 0.6;
  }
  .form input[type="submit"], .submit-button {
    display: block;
    width: 330px;
    height: 65px;
    border: solid 1px var(--navy);
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: var(--navy);
    font-size: 1.6rem;
    font-weight: 600;
    background: url("../images/contact/submit_logo.svg") no-repeat left 50px center / 40px, url("../images/contact/submit_logo_h.svg") no-repeat left 50px center / 0, url("../images/contact/submit_arrow.svg") no-repeat right 50px center / 48px, url("../images/contact/submit_arrow_h.svg") no-repeat right 50px center / 0;
    cursor: pointer;
    margin: 0 auto;
    background-color: #fff;
    transition: background-color 0.3s;
  }
  .form input[type="submit"]:hover, .submit-button:hover {
    background: url("../images/contact/submit_logo.svg") no-repeat left 50px center / 0, url("../images/contact/submit_logo_h.svg") no-repeat left 50px center / 40px, url("../images/contact/submit_arrow.svg") no-repeat right 50px center / 0, url("../images/contact/submit_arrow_h.svg") no-repeat right 50px center / 48px;
    background-color: var(--navy);
    color: #ffffff;
  }
}
.form dl dd.occupation textarea {
  font-size: 1.6rem;
  white-space: normal;
  text-align: left;
  display: block;
  appearance: none;
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  color: #282828;
  font-family: 'Oswald', 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
  line-height: 2.0;
  height: 30px;
  pointer-events: none;
  resize: none;
}
.form dl dd.occupation textarea:focus:not(:focus-visible) {
  outline: none;
}
@media screen and (max-width:767px) {
  /*----------------------------------------------------------------------
SP Style
----------------------------------------------------------------------*/
  /********** メインビュー **********/
  .main_img {
    background: url("../images/entry/main_img.jpg") no-repeat center / cover;
    width: 100%;
    height: 150px;
    margin-top: 60px;
    position: relative;
  }
  .main_img .inner {
    width: 90%;
    height: 100%;
    position: relative;
  }
  /**********  メインエリア ***********/
  main {
    padding-top: 0;
  }
  /* 募集要項 */
  .job_description {
    background: #F3F3F3;
    padding: 30px 0 50px;
  }
  .job_description:after {
    content: "";
    width: 100%;
    height: 0;
    background: url("../images/entry/bg_gray02.jpg") no-repeat left top / 100%;
    padding-bottom: 18.594%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .job_description .inner {}
  .job_description dl {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    display: block;
    padding-bottom: 50px;
    margin: 0 auto;
  }
  .job_description dl dt {
    font-weight: 700;
    position: relative;
    padding-top: 0.5em;
    padding-left: 0.5em;
  }
  .job_description dl dt:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 32%;
    border-top: 1px solid var(--red);
    z-index: 1;
  }
  .job_description dl dt:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border-top: 1px solid #A5A5A5;
  }
  .job_description dl dd {
    padding-bottom: 0.5em;
    padding-left: 0.5em;
  }
  .entry_form {
    margin-bottom: 60px;
  }
  .entry_form h2 {
    margin-bottom: 50px;
  }
  .entry_form .flow {
    width: 90%;
    display: flex;
    gap: 0 5px;
    margin: 0 auto 20px;
  }
  .entry_form .flow li {
    width: calc(100%/3);
    display: block;
    border: solid 1px var(--navy);
    padding: 2px 0;
    transform: skew(-30deg);
    text-align: center;
  }
  .entry_form .flow li.on {
    background: var(--navy);
  }
  .entry_form .flow li span {
    display: block;
    color: var(--navy);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    transform: skew(30deg);
  }
  .entry_form .flow li.on span {
    color: #FFF;
  }
  .form {
    background: #F3F3F3;
    padding: 30px 1em 40px;
  }
  .form input[placeholder], .form textarea {
    font-size: 1.6rem;
  }
  .form dl {}
  .form dl dt {
    font-weight: 600;
    margin-bottom: 10px;
  }
  .required {
    display: inline-block;
    background: #D90000;
    color: #FFF;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0 7px;
    margin-right: 10px;
  }
  .form dl dd {
    width: 100%;
    margin-bottom: 20px;
  }
  .form dl dd input {
    display: inline-block;
  }
  .form dl dd input[type="text"], .form dl dd input[type="tel"], .form dl dd input[type="email"] {
    width: 100%;
    height: 45px;
    padding: 0.5em;
    box-sizing: border-box;
  }
  .form textarea {
    width: 100%;
    padding: 0.5em;
    box-sizing: border-box;
    margin-bottom: 40px;
    resize: none;
  }
  .form dl dd > span {
    display: block;
  }
  input[type="checkbox"] {
    margin-right: 0.5em;
    width: 18px;
    height: 18px;
    vertical-align: middle;
  }
  .form .policy {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
  .form .policy input {
    display: inline-block;
    margin-right: 7px;
  }
  .form .policy a {
    color: #0465A9;
    font-weight: 500;
    background: url("../images/contact/linkto.svg") no-repeat right center / 12px;
    padding-right: 15px;
    margin-right: 3px;
    text-decoration: underline;
    transition: opacity 0.3s;
  }
  .form .policy a:hover {
    opacity: 0.6;
  }
  .form input[type="submit"], .submit-button {
    display: block;
    width: 90%;
    height: 65px;
    border: solid 1px var(--navy);
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: var(--navy);
    font-size: 1.6rem;
    font-weight: 600;
    background: url("../images/contact/submit_logo.svg") no-repeat left 20px center / 40px, url("../images/contact/submit_logo_h.svg") no-repeat left 20px center / 0, url("../images/contact/submit_arrow.svg") no-repeat right 20px center / 48px, url("../images/contact/submit_arrow_h.svg") no-repeat right 20px center / 0;
    cursor: pointer;
    margin: 0 auto;
    background-color: #ffffff;
    transition: background-color 0.3s;
  }
  .form input[type="submit"]:hover, .submit-button:hover {
    background: url("../images/contact/submit_logo.svg") no-repeat left 20px center / 0, url("../images/contact/submit_logo_h.svg") no-repeat left 20px center / 40px, url("../images/contact/submit_arrow.svg") no-repeat right 20px center / 0, url("../images/contact/submit_arrow_h.svg") no-repeat right 20px center / 48px;
    background-color: var(--navy);
    color: #ffffff;
  }
  input[type="button"], input[type="submit"], input[type="email"], input[type="tel"], input[type="text"],textarea {
    -webkit-appearance: none;
    border-radius: 0;
  }
  input[type="checkbox"] {
    border-radius: 0;
  }
}