/* ##############################################################################

    HEADER

############################################################################## */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 60px;
    padding-right: 60px;
  }
  .header .header-logo {
    display: inline-flex;
    align-items: center;
  }
  .header .header-logo img {
    max-width: 150px;
    margin-right: 14px;
  }
  .header .header-logo span {
    font-size: .875rem;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 700;
    letter-spacing: 0;
  }
  .header .header-menu {
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 700;
  }
  .header-drawer {
    display: none;
  }
  @media (max-width: 767px) {
    .header {
      padding-left: 10px;
      padding-right: 10px;
      height: 60px;
    }
    .header .header-logo img {
      margin-right: 10px;
      max-width: 100px;
    }
    .header .header-logo span {
      letter-spacing: 0;
      font-size: .714rem;
    }
    .header .header-menu {
      font-size: .857rem;
      letter-spacing: 0;
    }
  }

/* ##############################################################################

    FOOTER

############################################################################## */
  .footer {
    background-color: #D0E9F3;
    padding-top: 40px;
  }
  .footer-logo {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 30px;
    text-align: center;
  }
  .footer-menu {
    max-width: 1200px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-top: dotted 2px #50A4D2;
  }
  .footer-menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }
  .footer-menu ul li {
    margin: 0 24px;
  }
  .footer-other {
    text-align: center;
    font-size: 14px;
    margin-top: 30px;
  }
  .footer-copy {
    background-color: #50A4D2;
    color: #fff;
    font-size: 14px;
    text-align: center;
    margin-top: 50px;
  }
  @media (max-width: 767px) {
    .footer {
      padding-top: 30px;
    }
    .footer-logo {
      max-width: 150px;
      padding-bottom: 18px;
    }
    .footer-menu ul {
      flex-direction: column;
      margin-top: 16px;
    }
    .footer-menu ul li {
      margin: 2px 24px;
    }
    .footer-other {
      font-size: .7143rem;
      margin-top: 18px;
    }
    .footer-copy {
      font-size: .7143rem;
      margin-top: 22px;
    }
  }

/* ##############################################################################

    common

############################################################################## */
  .flow {
    background-color: #50A4D2;
    height: 130px;
    display: flex;
    margin-bottom: 80px;
  }
  .flow-wrap {
    width: 90%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 700;
  }
  .flow-wrap .ttl {
    font-size: 2rem;
    color: #fff;
  }
  .flow-wrap .flow-list {
    display: flex;
    align-items: center;
    height: 84px;
  }
  .flow-wrap .flow-list li {
    height: 100%;
    line-height: 1.1;
    background-color: #fff;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 10% 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
    margin-left: -5px;
    margin-right: -5px;
    font-size: 14px;
    padding: 0 20px;
    justify-content: center;
  }
  .flow-wrap .flow-list li.current {
    color: #fff;
    background-color: #0B4398;
  }
  .flow-wrap .flow-list li:first-child {
    clip-path: polygon(90% 0%, 100% 50%, 90% 100%, 0 100%, 0 0);
  }
  .flow-wrap .flow-list li:last-child {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10% 50%);
  }
  .flow-wrap .flow-list li span {
    font-size: 11px;
    line-height: 1.6;
    letter-spacing: 0;
  }
  .ttl-section {
    width: 90%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 50px;
  }
  .ttl-section h1 {
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    display: inline-block;
    position: relative;
    padding-bottom: 32px;
  }
  .ttl-section h1::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 64px;
    height: 26px;
    background-image: url(../image/ttl-icon.svg);
    background-size: cover;
  }
  .ttl-section h1 + .description {
    margin-top: 50px;
  }
  @media (max-width: 767px) {
    .flow {
      height: 110px;
      margin-bottom: 50px;
    }
    .flow-wrap {
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      gap: 10px;
      overflow-x: clip;
      justify-content: flex-end;
    }
    .flow-wrap .ttl {
      font-size: 1.5715rem;
      padding-left: 16px;
    }
    .flow-wrap .flow-list {
      height: 50px;
    }
    .flow-wrap .flow-list li {
      font-size: .785rem;
      letter-spacing: 0;
      padding: 0 14px;
      justify-content: center;
      width: calc(25vw + 7px);
      margin-left: -4px;
      margin-right: -4px;
      line-height: 1.2;
    }
    .flow-wrap .flow-list li span {
      font-size: .5715rem;
      letter-spacing: 0;
    }
    .ttl-section {
      margin-bottom: 30px;
    }
    .ttl-section h1 {
      font-size: 1.7143rem;
      padding-bottom: 20px;
    }
    .ttl-section h1::before {
      width: 40px;
      height: 16px;
    }
    .ttl-section .description {
      text-align: left;
    }
    .ttl-section h1 + .description {
      margin-top: 24px;
    }
  }

/* ##############################################################################

    index

############################################################################## */
  .top {
    padding-bottom: 180px;
  }
  .top-inner {
    max-width: 960px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .top .top-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 10px;
    padding: 60px 50px 50px;
    width: 100%;
  }
  .top .top-content-wrapper > div {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 54px 35px 50px;
    background-color: #E3F2F8;
    border-radius: 10px;
  }
  .top .top-content-wrapper > div h2 {
    color: #0B4398;
    font-size: 20px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 700;
  }
  .top .top-content-wrapper > div > div:last-of-type {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .top .top-content-wrapper > div > div:last-of-type strong {
    display: block;
    margin-top: 15px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5625;
    color: #404044;
    letter-spacing: 0.05em;
  }
  .top .top-content-wrapper > div > div:last-of-type a {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    min-width: 200px;
    height: 48px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    color: rgb(255, 255, 255);
    letter-spacing: 0.05em;
    border-radius: 999px;
    background-color: #00C288;
  }
  .top .top-content-wrapper > div > div:last-of-type a:hover {
    background-color: #06A575;
  }
  .top-notes {
    width: 100%;
    padding: 40px;
    font-size: 15px;
    background-color: #E3F2F8;
    margin-top: 50px;
    border-radius: 10px;
  }
  @media (max-width: 767px) {
    .top {
      padding-bottom: 60px;
    }
    .top .top-content-wrapper {
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 30px 24px 50px;
    }
    .top .top-content-wrapper > div {
      padding: 34px;
    }
    .top .top-content-wrapper > div > div:last-of-type a {
      margin-top: 20px;
    }
  }

/* ##############################################################################

    sign-up

############################################################################## */
  .sign-up-form {
    width: 90%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
    background-color: #fff;
    border-radius: 10px;
    padding: 70px 50px 50px;
  }
  .sign-up-form .section-title > strong {
    font-size: 1.25rem;
    display: block;
    color: #404044;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 700;
    position: relative;
    padding-left: 20px;
    margin: 0 0 20px;
  }
  .sign-up-form .section-title:not(:first-of-type) > strong {
    margin: 50px 0 20px;
  }
  .sign-up-form .section-title > strong::before {
    content: "";
    width: 4px;
    height: 100%;
    background-color: #50A4D2;
    position: absolute;
    left: 0;
    top: 0;
  }
  .form-wrapper {
    display: flex;
    border-bottom: 1px solid #9599A3;
    font-size: .9375rem;
  }
  .sign-up-form .sign-up-form-wrap form .section-title > span {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: .9375rem;
    display: flex;
    justify-content: center;
  }
  .sign-up-form .sign-up-form-wrap form #important-matter > div:first-of-type {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
  }
  .sign-up-form .sign-up-form-wrap form #important-matter > div:first-of-type a {
    max-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 44px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: .875rem;
    line-height: 1;
    color: #555555;
    letter-spacing: 0.05em;
    background-color: #fff;
    border: 1px solid #9599A3;
    border-radius: 4px;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-property: all;
  }
  .sign-up-form .sign-up-form-wrap form #important-matter > div:last-of-type {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 700;
  }
  .form-wrapper.last_name {
    border-top: 1px solid #9599A3;
  }
  .form-wrapper > label {
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 500;
    width: 40%;
    padding: 10px 20px;
    background: #D0E9F3;
    display: block;
    align-items: center;
    position: relative;
    min-height: 86px;
  }
  .form-wrapper label .req {
    color: #DB3B3B;
    font-size: .875rem;
  }

  /* --- 10/17変更分 --- */
  /* .form-wrapper .div_text,
  .form-wrapper .div_image,
  .form-wrapper .div_date,
  .form-wrapper .div_select,
  .form-wrapper .div_radio,
  .form-wrapper .div_checkbox {
    width: 60%;
    padding: 20px;
  }
   */
  .form-cont {
    width: 60%;
    padding: 20px;
  }
  /* --- 10/17変更分終わり --- */

  .form-wrapper input[type=text],
  .form-wrapper input[type=email],
  .form-wrapper input[type=password],
  .form-wrapper input[type=date],
  .form-wrapper select {
    padding: 0.3em 1em;
    border-radius: 3px;
    border: 1px solid #ddd;
    font-size: 1rem;
    width: 100%;
    height: 46px;
    position: relative;
  }
  .form-wrapper input[type="radio"] {
    width: 15px;
    height: 15px;
    margin: 0px 6px 0px 0;
  }
  .form-wrapper .field-description {
    font-size: .8125rem;
    color: #7A7A81;
    line-height: 1.4;
    margin-top: 10px;
  }
  .form-wrapper .div_radio {
    display: flex;
    align-items: center;
  }
  .form-wrapper .div_checkbox {
    display: flex;
  }
  .form-wrapper .div_radio label {
    margin-right: 10px;
  }
  .sign-up-form form .button_div {
    margin-top: 50px;
  }
  .sign-up-form form .button_div > input {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 64px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1;
    color: #fff;
    background-color: #d4d2d2;
    letter-spacing: 0.05em;
    border-radius: 10px;
    border: 0;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.4s ease-out;
    cursor: pointer;
    pointer-events: none;
  }
  .sign-up-form .req-text {
    color: #DB3B3B;
    font-size: .875rem;
    text-align: right;
    margin-top: 16px;
  }

  .sign-up-form form .button_div > input[name="submit"].enabled {
    background-color: #00C288;
    box-shadow: 0px 4px 0px 0px #06A575;
    pointer-events: all;
  }
  .sign-up-form form .button_div > input[name="submit"].enabled:hover {
    background-color: #06A575;
  }
  .sign-up-form form .button_div > .input[name="submit"].disabled {
    background-color: #d4d2d2;
    color: white;
  }
  @media (max-width: 767px) {
    .sign-up-form {
      padding: 34px 20px;
      margin-bottom: 50px;
    }
    .sign-up-form .sign-up-form-wrap form #important-matter > div:first-of-type {
      flex-direction: column;
      align-items: center;
      margin-top: 16px;
    }
    .sign-up-form .sign-up-form-wrap form #important-matter > div:first-of-type a {
      margin-bottom: 10px;
    }
    .sign-up-form .sign-up-form-wrap form #important-matter > div:last-of-type {
      margin-top: 16px;
    }
    .sign-up-form .section-title:not(:first-of-type) > strong {
      margin: 30px 0 20px;
    }
    .form-wrapper {
      flex-direction: column;
    }
    .form-wrapper > label {
      width: 100%;
      min-height: 40px;
      font-size: .9285rem;
      padding: 8px;
      border-bottom: 1px solid #9599A3;
    }

    /* --- 10/17変更分 --- */
    /* .form-wrapper .div_text,
    .form-wrapper .div_image,
    .form-wrapper .div_date,
    .form-wrapper .div_select,
    .form-wrapper .div_radio,
    .form-wrapper .div_checkbox {
      width: 100%;
      padding: 10px;
    } */
    .form-cont {
      width: 100%;
      padding: 10px;
    }
    /* --- 10/17変更分終わり --- */
    
    .form-wrapper input[type=text],
    .form-wrapper input[type=email],
    .form-wrapper input[type=password],
    .form-wrapper input[type=date],
    .form-wrapper select {
      height: 36px;
    }
    .form-wrapper .field-description {
      margin-top: 4px;
      font-size: .7143rem;
    }
    .sign-up-form form .button_div {
      margin-top: 30px;
    }
    .sign-up-form form .button_div > input {
      height: 40px;
      width: 240px;
      font-size: 1rem;
    }
  }

  /* --- 10/4追記分 --- */
  .sign-up-form .address_postal_code .div_text {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .sign-up-form .address_postal_code input {
    width: 55%;
  }
  .sign-up-form .address_postal_code .address_search {
    border: solid 2px #50A4D2;
    font-size: .875rem;
    font-weight: bold;
    border-radius: 6px;
    display: inline-block;
    padding: 4px 10px;
  }
  .sign-up-form .address_postal_code .address_search:hover {
    background-color: #50A4D2;
    color: #fff;
  }
  @media (max-width: 767px) {
    .sign-up-form .address_postal_code .address_search {
      border: solid 1px #50A4D2;
      border-radius: 4px;
      padding: 2px 8px;
    }
  }
  /* --- 10/4追記分終わり --- */

  /* --- 10/17追記分12/24変更 --- */
  .alert-danger {
    display: block;
    color: #DB3B3B;
    margin-top: 0.5em;
    padding: 0.25em 1em;
    background-color: rgba(255, 0, 0, 0.1);
    font-size: .875rem;
    border-radius: 3px;
  }
  /* --- 10/17追記分終わり --- */

/* ##############################################################################

    register-complete

############################################################################## */
  .regist-career-do-form {
    width: 90%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
    background-color: #fff;
    border-radius: 10px;
    padding: 70px 50px 50px;
    text-align: center;
  }
  .regist-career-do-form h2 {
    color: #0B4398;
    font-size: 1.5rem;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 700;
    margin-bottom: 40px;
    border-bottom: 2px solid #0B4398;
    display: inline-block;
  }
  .regist-career-do-form .regist-career-do-form-wrap > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    min-width: 200px;
    height: 48px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    color:#fff;
    letter-spacing: 0.05em;
    border-radius: 999px;
    background-color: #0B4398;
    margin: 40px auto 0;
    border: solid 1px #0B4398;
  }
  .regist-career-do-form .regist-career-do-form-wrap > a:hover {
    color:#0B4398;
    background-color: #fff;
    border: solid 1px #0B4398;
  }
  @media (max-width: 767px) {
    .regist-career-do-form {
      padding: 38px 24px 30px;
      margin-bottom: 50px;
    }
    .regist-career-do-form h2 {
      margin-bottom: 30px;
    }
  }