@charset "UTF-8";
/*
 * メディアクエリ用ミックスイン
 *
 * $from: 指定した画面幅を超過した状態をブレークポイントに設定する
 * $until: 指定した画面幅以下の状態をブレークポイントに設定する
 */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
/*path*/
/*color*/
/*font-family*/
/*font-size*/
.wrapper {
  font-size: 1.6rem;
}
@media (max-width: 767.98px) {
  .wrapper {
    font-size: 1.4rem;
  }
}

.recruit-welfare .test-title, .recruit-top .test-title {
  font-size: 3rem;
}
@media (max-width: 767.98px) {
  .recruit-welfare .test-title, .recruit-top .test-title {
    font-size: 2.6rem;
  }
}

/*inner*/
.recruit-desc__concept__inner, .recruit-desc .main__inner, .recruit-welfare .main__inner, .recruit-top .main__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/*top-inner*/
/*arrow*/
/*button*/
/*wave*/
.wave-item {
  width: 45%;
  max-width: 700px;
}
@media (max-width: 992.98px) {
  .wave-item {
    width: 55%;
  }
}
@media (max-width: 767.98px) {
  .wave-item {
    width: 75%;
  }
}

/*animation*/
@keyframes handwriting {
  0% {
    stroke-dashoffset: 20000px;
  }
  100% {
    stroke-dashoffset: 4000px;
  }
}
@keyframes handwriting-sp {
  0% {
    stroke-dashoffset: 30000px;
  }
  70% {
    stroke-dashoffset: 8000px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.effect-long.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.effect.fadein-left {
  animation-name: fadeInLeft;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.effect.fadein-right {
  animation-name: fadeInRight;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.effect.fadein-bottom {
  animation-name: fadeInBottom;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.effect.colorIn {
  animation-name: colorIn;
  animation-duration: 3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes colorIn {
  0% {
    filter: grayscale(100%);
  }
  100% {
    filter: grayscale(0%);
  }
}
.effect.popUp {
  animation-name: popUp;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes popUp {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
html {
  font-size: 62.5%; /* 10px */
}

.container {
  background-image: url("../images/common/bg_yellow.jpg");
  background-size: 150px;
  background-position: center top;
  background-repeat: repeat;
  overflow: hidden;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  font-family: "Zen Kaku Gothic New", serif;
  list-style: none;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.15em;
  line-height: 1.8;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  overflow: hidden;
  position: relative;
}
.wrapper a {
  text-decoration: none;
  transition: opacity 0.3s;
}
.wrapper a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .wrapper a:hover {
    opacity: 1;
  }
}
.wrapper img {
  width: 100%;
  height: auto;
}

.wave-left {
  position: relative;
  left: -5%;
  z-index: -1;
  text-align: left;
}
.wave-right {
  position: relative;
  right: -5%;
  z-index: -1;
  text-align: right;
}

.scroll {
  opacity: 0;
}

.effect-long.fadeIn {
  animation-duration: 0.5s;
}

.slider-item {
  height: auto;
  margin-right: 10px;
  margin-left: 10px;
  position: relative;
}
.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-item figcaption {
  padding: 0 10px 15px;
  color: #FFFFFF;
  line-height: 1.6;
  position: absolute;
  bottom: 0;
}
.slider-item figcaption span {
  margin-bottom: 10px;
  padding: 3px 4px 4px 5px;
  background: #FFFFFF;
  font-weight: 500;
  color: #B60033;
  line-height: 1;
  display: inline-block;
}

.dots-wrap {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.dots-wrap li {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
.dots-wrap li.slick-active {
  background: #00549E !important;
  transition: ease 0.2s;
}

/*
Copyright (c) 2010, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.com/yui/license.html
version: 2.8.1
*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td, section, figure {
  margin: 0;
  padding: 0;
}

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

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var, optgroup {
  font-style: inherit;
  font-weight: inherit;
}

del, ins {
  text-decoration: none;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

legend {
  color: #000;
}

input, button, textarea, select, optgroup, option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

input, button, textarea, select {
  *font-size: 100%;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

.wrapper {
  position: relative;
}
.wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../images/common/bg_sub.png");
  background-size: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
}

.headline-title {
  width: 100%;
  margin: 8% auto 120px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1440px) {
  .headline-title {
    margin: 9% auto 120px;
  }
}
@media (max-width: 767.98px) {
  .headline-title {
    margin-bottom: calc(11.42% + 20px);
  }
}
.headline-title span {
  width: 100%;
  text-indent: -9999px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}

.main {
  background-image: url("../images/common/bg_yellow.jpg");
  background-size: 150px;
  background-position: center top;
  background-repeat: repeat;
  border-radius: 40px 40px 0 0;
  position: relative;
  z-index: 1;
}
.main__inner {
  transform: translateY(-50px);
}
@media (max-width: 767.98px) {
  .main {
    border-radius: 20px 20px 0 0;
  }
  .main__inner {
    transform: translateY(-20px);
  }
}

.recruit__title01 h3 {
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #B60033;
}
.recruit__title01 p {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #B60033;
}
@media (max-width: 767.98px) {
  .recruit__title01 h3 {
    font-size: 5.33vw;
  }
}
.recruit__container {
  margin-top: 80px;
}
@media (max-width: 767.98px) {
  .recruit__container {
    margin-top: 40px;
  }
}
.recruit__block {
  margin-top: 60px;
}
@media (max-width: 767.98px) {
  .recruit__block {
    margin-top: 40px;
  }
}

.recruit-top .headline-title {
  width: 351px;
}
.recruit-top .headline-title span {
  width: 100%;
  padding-top: 26.21%;
  background-image: url("../images/recruit/top/title.svg");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .recruit-top .headline-title {
    width: 50.28%;
  }
}
.recruit-top__intro__inner {
  background-image: url("../images/recruit/bg_wht.jpg");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  background-repeat: repeat;
  background-size: auto;
  padding: 20px 30px;
  border-radius: 8px;
}
.recruit-top__intro__inner p {
  font-size: 18px;
  line-height: 2em;
  letter-spacing: 0.1em;
}
@media (max-width: 767.98px) {
  .recruit-top__intro__inner {
    padding: 16px;
  }
  .recruit-top__intro__inner p {
    font-size: 15px;
  }
}
.recruit-top__feature__block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recruit-top__feature__box {
  margin-bottom: 30px;
  width: 48.43%;
}
.recruit-top__feature__box h4 {
  background-color: #B60033;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  color: #fff;
  position: relative;
}
.recruit-top__feature__box h4 img {
  position: absolute;
  left: 20px;
  bottom: -5px;
  max-width: 114px;
  width: 24.51%;
}
.recruit-top__feature__box p {
  padding: 16px;
  font-size: 16px;
  line-height: 1.8em;
  color: #222;
}
@media (max-width: 992.98px) {
  .recruit-top__feature__box h4 {
    padding-left: 50px;
  }
  .recruit-top__feature__box h4 img {
    left: 10px;
  }
}
@media (max-width: 767.98px) {
  .recruit-top__feature__box {
    width: 100%;
  }
  .recruit-top__feature__box h4 {
    padding-left: 0;
    font-size: 14px;
  }
  .recruit-top__feature__box h4 img {
    width: 83px;
    left: 20px;
  }
  .recruit-top__feature__box p {
    font-size: 14px;
  }
}
@media (max-width: 479.98px) {
  .recruit-top__feature__box h4 {
    padding-left: 50px;
  }
}
.recruit-top__program__intro {
  margin-top: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 1.8em;
  color: #222;
}
.recruit-top__program__block {
  margin-top: 32px;
}
.recruit-top__program__table {
  background-image: url("../images/recruit/bg_wht.jpg");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  background-repeat: repeat;
  background-size: auto;
  width: 100%;
  border-radius: 4px;
}
.recruit-top__program__table th {
  background-color: #B60033;
  padding: 4px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.5em;
}
.recruit-top__program__table th:first-child {
  border-radius: 4px 0 0 0;
}
.recruit-top__program__table th:last-child {
  border-radius: 0 4px 0 0;
}
.recruit-top__program__table th:not(.recruit-top__program__table th:last-child) {
  border-right: 1px solid #fff;
}
.recruit-top__program__table td {
  padding: 4px 8px;
  text-align: center;
  font-size: 16px;
  line-height: 1.8em;
  color: #222;
  border-bottom: 1px solid #f4eacc;
}
.recruit-top__program__table td:not(.recruit-top__program__table td:last-child) {
  border-right: 1px solid #f4eacc;
}
.recruit-top__program__table td:nth-child(1) {
  width: 13em;
}
.recruit-top__program__table td:nth-child(2) {
  width: 15em;
}
.recruit-top__program__table td:nth-child(3) {
  text-align: left;
}
.recruit-top__program__table tr:last-child td {
  border-bottom: none;
}
.recruit-top__program__photos {
  margin-top: 40px;
}
.recruit-top__program__photo {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.recruit-top__program__photo figure {
  width: calc(50% - 10px);
  line-height: 1em;
}
.recruit-top__program__photo figure img {
  border-radius: 8px;
}
.recruit-top__program__photo figcaption {
  margin-top: 10px;
  font-size: 12px;
}
@media (max-width: 767.98px) {
  .recruit-top__program__intro {
    margin-top: 20px;
    font-size: 14px;
  }
  .recruit-top__program__table {
    background: none;
    border-radius: 0;
  }
  .recruit-top__program__table tr:first-child {
    display: none;
  }
  .recruit-top__program__table td {
    display: block;
    font-size: 14px;
    text-align: left;
    border-right: none;
  }
  .recruit-top__program__table td:not(.recruit-top__program__table td:last-child, :nth-child(2)) {
    border-bottom: none;
  }
  .recruit-top__program__table td:first-child {
    margin-top: 16px;
    margin-bottom: 4px;
    padding: 0;
    display: block;
    width: 100%;
    color: #B60033;
  }
  .recruit-top__program__table td:first-child br {
    display: none;
  }
  .recruit-top__program__table td:nth-child(2) {
    background-image: url("../images/recruit/bg_wht.jpg");
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    background-repeat: repeat;
    background-size: auto;
    display: flex;
    align-items: stretch;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #f4eacc;
    gap: 8px;
    border-radius: 4px 4px 0 0;
  }
  .recruit-top__program__table td:nth-child(2)::before {
    content: "対象";
    background-color: #B60033;
    padding: 2px 8px;
    color: #fff;
    border-radius: 4px 0 0 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
  }
  .recruit-top__program__table td:nth-child(3) {
    background-image: url("../images/recruit/bg_wht.jpg");
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    background-repeat: repeat;
    background-size: auto;
    display: flex;
    align-items: stretch;
    width: 100%;
    padding: 0;
    gap: 8px;
    border-radius: 0 0 4px 4px;
  }
  .recruit-top__program__table td:nth-child(3)::before {
    content: "内容";
    background-color: #B60033;
    padding: 2px 8px;
    color: #fff;
    border-radius: 0 0 0 4px;
    white-space: nowrap;
    display: flex;
    align-items: center;
  }
  .recruit-top__program__table tr:nth-child(2) td:first-child {
    margin-top: 0;
  }
  .recruit-top__program__table tr:last-child td:nth-child(2) {
    border-bottom: 1px solid #f4eacc;
  }
  .recruit-top__program__photos {
    margin-top: 32px;
  }
  .recruit-top__program__photo {
    gap: 16px;
  }
  .recruit-top__program__photo figure {
    width: 100%;
  }
  .recruit-top__program__photo figcaption {
    font-size: 10px;
  }
}
.recruit-top__step__box {
  position: relative;
}
.recruit-top__step__box__title {
  margin-bottom: 10px;
  text-align: center;
  position: relative;
}
.recruit-top__step__box__title span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #B60033;
  position: relative;
}
.recruit-top__step__box__title img {
  width: 102px;
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
}
.recruit-top__step__box:not(:last-child) {
  margin-bottom: 80px;
}
.recruit-top__step__box:not(:last-child)::after {
  content: "";
  background-image: url("../images/recruit/arrow_step.svg");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  width: 100%;
  height: 13px;
  position: absolute;
  bottom: -37px;
}
.recruit-top__step__detail {
  background-image: url("../images/recruit/bg_wht.jpg");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  background-repeat: repeat;
  background-size: auto;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recruit-top__step__text {
  width: calc(100% - 220px - 20px);
  font-size: 16px;
  line-height: 1.8em;
}
.recruit-top__step__thum {
  width: 220px;
}
.recruit-top__step__thum a {
  background-color: #B60033;
  padding: 8px;
  border-radius: 8px;
  display: block;
  font-size: 16px;
  line-height: 1em;
  color: #fff;
}
.recruit-top__step__thum__img img {
  border-radius: 4px;
}
.recruit-top__step__thum__text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recruit-top__step__thum__text span {
  margin-top: 5px;
}
.recruit-top__step__thum__text span:first-child {
  margin-left: 5px;
}
.recruit-top__step__thum__text span:last-child {
  width: 20px;
}
.recruit-top__step__thum__text span:last-child img {
  width: 100%;
}
@media (max-width: 767.98px) {
  .recruit-top__step__box__title span {
    font-size: 14px;
  }
  .recruit-top__step__box__title img {
    width: 80px;
  }
  .recruit-top__step__box:not(:last-child) {
    margin-bottom: 70px;
  }
  .recruit-top__step__box:not(:last-child)::after {
    bottom: -33px;
  }
  .recruit-top__step__detail {
    flex-flow: column;
    padding: 16px;
  }
  .recruit-top__step__text {
    width: 100%;
    font-size: 14px;
  }
  .recruit-top__step__thum {
    margin-top: 16px;
    width: 100%;
  }
  .recruit-top__step__thum a {
    font-size: 14px;
  }
  .recruit-top__step__thum__text {
    justify-content: center;
    gap: 0 12px;
  }
  .recruit-top__step__thum__text span {
    margin-top: 5px;
  }
  .recruit-top__step__thum__text span:first-child {
    margin-left: 0;
  }
  .recruit-top__step__thum__text span:last-child {
    width: 16px;
  }
}
.recruit-top .test:not(:last-of-type) {
  margin-bottom: 60px;
}
.recruit-top .test-title {
  margin-bottom: 40px;
  font-weight: 500;
  color: #B60033;
  letter-spacing: 0.2em;
  text-align: center;
}
.recruit-top .test__inner {
  padding-top: 30%;
  background: #ccc;
}

.recruit-welfare .headline-title {
  max-width: 230px;
}
.recruit-welfare .headline-title span {
  width: 100%;
  padding-top: 40%;
  background-image: url("../images/recruit/welfare/title.svg");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .recruit-welfare .headline-title {
    width: 32.85%;
  }
}
.recruit-welfare__intro__inner {
  background-image: url("../images/recruit/bg_wht.jpg");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  background-repeat: repeat;
  background-size: auto;
  padding: 20px 30px;
  border-radius: 8px;
}
.recruit-welfare__intro__inner p {
  font-size: 18px;
  line-height: 2em;
  letter-spacing: 0.1em;
}
@media (max-width: 767.98px) {
  .recruit-welfare__intro__inner {
    padding: 16px;
  }
  .recruit-welfare__intro__inner p {
    font-size: 15px;
  }
}
.recruit-welfare__system__container {
  background-image: url("../images/recruit/bg_wht.jpg");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  background-repeat: repeat;
  background-size: auto;
  margin-top: 40px;
  padding: 60px;
}
.recruit-welfare__system__block__title {
  background-color: #B60033;
  padding: 4px 20px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.2em;
  color: #fff;
}
.recruit-welfare__system__block:not(:first-child) {
  margin-top: 40px;
}
.recruit-welfare__system__box {
  margin-top: 24px;
}
.recruit-welfare__system__table {
  width: 100%;
}
.recruit-welfare__system__table tr:first-child th {
  border-radius: 4px 0 0 0;
}
.recruit-welfare__system__table tr:first-child td {
  border-radius: 0 4px 0 0;
}
.recruit-welfare__system__table tr:last-child th {
  border-radius: 0 0 0 4px;
}
.recruit-welfare__system__table tr:last-child td {
  border-radius: 0 0 4px 0;
}
.recruit-welfare__system__table tr:not(:last-child) th {
  border-bottom: 1px solid #fff;
}
.recruit-welfare__system__table tr:not(:last-child) td {
  border-bottom: 1px solid #f7f4e8;
}
.recruit-welfare__system__table tr:only-child th {
  border-radius: 4px 0 0 4px;
}
.recruit-welfare__system__table tr:only-child td {
  border-radius: 0 4px 4px 0;
}
.recruit-welfare__system__table th, .recruit-welfare__system__table td {
  padding: 8px 20px;
}
.recruit-welfare__system__table th {
  background-color: #f5e6eb;
  width: 200px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6em;
  color: #B60033;
}
.recruit-welfare__system__table td {
  background-color: #fff;
  font-size: 16px;
  line-height: 1.6em;
  color: #222;
}
.recruit-welfare__system__photos {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 0 16px;
}
.recruit-welfare__system__photos li img {
  border-radius: 8px;
}
@media (max-width: 767.98px) {
  .recruit-welfare__system__container {
    margin-top: 32px;
    padding: 16px;
  }
  .recruit-welfare__system__block__title {
    padding: 1px 12px;
    font-size: 14px;
  }
  .recruit-welfare__system__block:not(:first-child) {
    margin-top: 24px;
  }
  .recruit-welfare__system__box {
    margin-top: 16px;
  }
  .recruit-welfare__system__table tr:first-child th {
    border-radius: 4px 4px 0 0;
  }
  .recruit-welfare__system__table tr:first-child td {
    border-radius: 0;
  }
  .recruit-welfare__system__table tr:last-child th {
    border-radius: 0;
  }
  .recruit-welfare__system__table tr:last-child td {
    border-radius: 0 0 4px 4px;
  }
  .recruit-welfare__system__table tr:not(:last-child) th {
    border-bottom: none;
  }
  .recruit-welfare__system__table tr:not(:last-child) td {
    border-bottom: none;
  }
  .recruit-welfare__system__table tr:only-child th {
    border-radius: 4px 4px 0 0;
  }
  .recruit-welfare__system__table tr:only-child td {
    border-radius: 0 0 4px 4px;
  }
  .recruit-welfare__system__table th br {
    display: none;
  }
  .recruit-welfare__system__table th, .recruit-welfare__system__table td {
    padding: 8px 16px;
    border-radius: 0;
    width: 100%;
    display: block;
    text-align: left;
    font-size: 14px;
  }
  .recruit-welfare__system__photos {
    margin-top: 16px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .recruit-welfare__system__photos li:first-child {
    width: 100%;
  }
  .recruit-welfare__system__photos li:not(:first-child) {
    width: calc(50% - 8px);
  }
}
.recruit-welfare .test:not(:last-of-type) {
  margin-bottom: 60px;
}
.recruit-welfare .test-title {
  margin-bottom: 40px;
  font-weight: 500;
  color: #B60033;
  letter-spacing: 0.2em;
  text-align: center;
}
.recruit-welfare .test__inner {
  padding-top: 30%;
  background: #ccc;
}

.recruit-desc .headline-title {
  max-width: 230px;
}
.recruit-desc .headline-title span {
  padding-top: 40%;
  background-image: url("../images/recruit/desc/title.svg");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .recruit-desc .headline-title {
    width: 32.85%;
  }
}
.recruit-desc__nav__tab {
  margin: auto;
  max-width: 800px;
  width: 90%;
  display: flex;
  justify-content: center;
}
.recruit-desc__nav__button {
  width: 50%;
}
.recruit-desc__nav__button a {
  background-color: #000;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 3em;
}
.recruit-desc__nav__button--new a {
  background-color: #B60033;
}
.recruit-desc__nav__button--career a {
  background-color: #2295AC;
}
@media (max-width: 767.98px) {
  .recruit-desc__nav__button a {
    font-size: 3.73vw;
  }
}
.recruit-desc__info__container {
  background-image: url("../images/recruit/bg_wht.jpg");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  background-repeat: repeat;
  background-size: auto;
  margin-top: 40px;
  padding: 60px;
}
.recruit-desc__info__block__title {
  background-color: #B60033;
  padding: 4px 20px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.2em;
  color: #fff;
}
.recruit-desc__info__block__title a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.recruit-desc__info__block:not(:first-child) {
  margin-top: 40px;
}
.recruit-desc__info__box {
  margin-top: 24px;
}
.recruit-desc__info__box p + table {
  margin-top: 24px;
}
.recruit-desc__info__table {
  width: 100%;
}
.recruit-desc__info__table tr:first-child th {
  border-radius: 4px 0 0 0;
}
.recruit-desc__info__table tr:first-child td {
  border-radius: 0 4px 0 0;
}
.recruit-desc__info__table tr:last-child th {
  border-radius: 0 0 0 4px;
}
.recruit-desc__info__table tr:last-child td {
  border-radius: 0 0 4px 0;
}
.recruit-desc__info__table tr:not(:last-child) th {
  border-bottom: 1px solid #fff;
}
.recruit-desc__info__table tr:not(:last-child) td {
  border-bottom: 1px solid #f7f4e8;
}
.recruit-desc__info__table tr:only-child th {
  border-radius: 4px 0 0 4px;
}
.recruit-desc__info__table tr:only-child td {
  border-radius: 0 4px 4px 0;
}
.recruit-desc__info__table th, .recruit-desc__info__table td {
  padding: 8px 20px;
}
.recruit-desc__info__table th {
  background-color: #f5e6eb;
  width: 200px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6em;
  color: #B60033;
}
.recruit-desc__info__table td {
  background-color: #fff;
  font-size: 16px;
  line-height: 1.6em;
  color: #222;
}
.recruit-desc__info__table2 {
  width: 100%;
}
.recruit-desc__info__table2 tr:first-child th {
  border-radius: 4px 4px 0 0;
}
.recruit-desc__info__table2 tr:last-child td {
  border-radius: 0 0 4px 4px;
}
.recruit-desc__info__table2 th, .recruit-desc__info__table2 td {
  padding: 8px 20px;
}
.recruit-desc__info__table2 th {
  background-color: #f7f4e8;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6em;
  color: #B60033;
}
.recruit-desc__info__table2 td {
  background-color: #fff;
  font-size: 16px;
  line-height: 1.6em;
  color: #222;
}
.recruit-desc__info__photos {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 0 16px;
}
.recruit-desc__info__photos li img {
  border-radius: 8px;
}
@media (max-width: 767.98px) {
  .recruit-desc__info__container {
    margin-top: 32px;
    padding: 24px 16px;
  }
  .recruit-desc__info__block__title {
    padding: 1px 12px;
    font-size: 14px;
  }
  .recruit-desc__info__block:not(:first-child) {
    margin-top: 24px;
  }
  .recruit-desc__info__box {
    margin-top: 16px;
  }
  .recruit-desc__info__box p + table {
    margin-top: 16px;
  }
  .recruit-desc__info__table tr:first-child th {
    border-radius: 4px 4px 0 0;
  }
  .recruit-desc__info__table tr:first-child td {
    border-radius: 0;
  }
  .recruit-desc__info__table tr:last-child th {
    border-radius: 0;
  }
  .recruit-desc__info__table tr:last-child td {
    border-radius: 0 0 4px 4px;
  }
  .recruit-desc__info__table tr:not(:last-child) th {
    border-bottom: none;
  }
  .recruit-desc__info__table tr:not(:last-child) td {
    border-bottom: none;
  }
  .recruit-desc__info__table tr:only-child th {
    border-radius: 4px 4px 0 0;
  }
  .recruit-desc__info__table tr:only-child td {
    border-radius: 0 0 4px 4px;
  }
  .recruit-desc__info__table th br {
    display: none;
  }
  .recruit-desc__info__table th, .recruit-desc__info__table td {
    padding: 8px 16px;
    border-radius: 0;
    width: 100%;
    display: block;
    text-align: left;
    font-size: 14px;
  }
  .recruit-desc__info__table2 th, .recruit-desc__info__table2 td {
    padding: 8px 20px;
    font-size: 14px;
  }
  .recruit-desc__info__photos {
    margin-top: 16px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .recruit-desc__info__photos li:first-child {
    width: 100%;
  }
  .recruit-desc__info__photos li:not(:first-child) {
    width: calc(50% - 8px);
  }
}
.recruit-desc__flow__container {
  background-image: url("../images/recruit/bg_wht.jpg");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  background-repeat: repeat;
  background-size: auto;
  margin-top: 40px;
  padding: 60px;
}
.recruit-desc__flow__block {
  position: relative;
}
.recruit-desc__flow__block:not(:last-child) {
  margin-bottom: 80px;
}
.recruit-desc__flow__block:not(:last-child)::after {
  content: "";
  background-image: url("../images/recruit/arrow_step.svg");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  width: 100%;
  height: 13px;
  position: absolute;
  bottom: -37px;
}
.recruit-desc__flow__dt > a, .recruit-desc__flow__dt > span {
  background-color: #fff;
  padding: 1em 0;
  display: block;
  text-align: center;
  border-radius: 4px;
  position: relative;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6em;
  letter-spacing: 0.1em;
  color: #000;
}
.recruit-desc__flow__dt > a > span, .recruit-desc__flow__dt > span > span {
  background-color: #B60033;
  display: block;
  width: 60px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 4px 4px 0;
}
.recruit-desc__flow__dt--link > a > span::before, .recruit-desc__flow__dt--link > a > span::after {
  content: "";
  background-color: #fff;
  width: 16px;
  height: 2px;
  display: inline-block;
  position: absolute;
  top: calc(50% - 1px);
  transform-origin: center right;
}
.recruit-desc__flow__dt--link > a > span::before {
  transform: rotate(45deg);
  left: 20px;
}
.recruit-desc__flow__dt--link > a > span::after {
  transform: rotate(-45deg);
  left: 20px;
}
.recruit-desc__flow__dt--q > a > span::before, .recruit-desc__flow__dt--q > a > span::after {
  content: "";
  background-color: #fff;
  width: 20px;
  height: 2px;
  display: inline-block;
  position: absolute;
  top: calc(50% - 1px);
  transform-origin: center center;
}
.recruit-desc__flow__dt--q > a > span::before {
  transform: rotate(0deg);
  left: 20px;
}
.recruit-desc__flow__dt--q > a > span::after {
  transform: rotate(90deg);
  left: 20px;
  transition: transform 0.2s;
}
.recruit-desc__flow__dt--q > a.active > span::after {
  transform: rotate(180deg);
}
.recruit-desc__flow__dt br {
  display: none;
}
.recruit-desc__flow__dd {
  margin-top: 24px;
}
@media (max-width: 767.98px) {
  .recruit-desc__flow {
    margin-top: 60px;
  }
  .recruit-desc__flow__container {
    margin-top: 32px;
    padding: 24px 16px;
  }
  .recruit-desc__flow__block {
    position: relative;
  }
  .recruit-desc__flow__block:not(:last-child) {
    margin-bottom: 60px;
  }
  .recruit-desc__flow__block:not(:last-child)::after {
    bottom: -29px;
  }
  .recruit-desc__flow__dt > a, .recruit-desc__flow__dt > span {
    font-size: 16px;
  }
  .recruit-desc__flow__dt > a > span, .recruit-desc__flow__dt > span > span {
    width: 14.19%;
  }
  .recruit-desc__flow__dt--link > a > span::before, .recruit-desc__flow__dt--link > a > span::after {
    width: 26.66%;
  }
  .recruit-desc__flow__dt--link > a > span::before {
    left: 33.33%;
  }
  .recruit-desc__flow__dt--link > a > span::after {
    left: 33.33%;
  }
  .recruit-desc__flow__dt--q > a > span::before, .recruit-desc__flow__dt--q > a > span::after {
    width: 33.33%;
  }
  .recruit-desc__flow__dt--q > a > span::before {
    left: 33.33%;
  }
  .recruit-desc__flow__dt--q > a > span::after {
    left: 33.33%;
  }
  .recruit-desc__flow__dt br {
    display: block;
  }
  .recruit-desc__flow__dd {
    margin-top: 16px;
    font-size: 14px;
  }
}
.recruit-desc__banner__inner {
  margin-top: 80px;
}
.recruit-desc__banner picture {
  margin: auto;
  display: block;
  max-width: 640px;
}
@media (max-width: 767.98px) {
  .recruit-desc__banner__inner {
    margin-top: 40px;
  }
}
.recruit-desc__concept {
  background-image: url("../images/recruit/desc/bg_blue.webp");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  margin-top: 80px;
}
.recruit-desc__concept__inner {
  padding-top: 80px;
  padding-bottom: 100px;
}
.recruit-desc__concept__title h3 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0.2em;
  color: #B60033;
}
.recruit-desc__concept__title h3 br {
  display: none;
}
.recruit-desc__concept__container {
  margin-top: 60px;
}
.recruit-desc__concept__block {
  display: flex;
  justify-content: space-between;
}
.recruit-desc__concept__text {
  width: calc(100% - 400px - 40px);
}
.recruit-desc__concept__text p {
  font-size: 16px;
  line-height: 1.8em;
}
.recruit-desc__concept__text p + p {
  margin-top: 32px;
}
.recruit-desc__concept__photo {
  width: 400px;
  margin-top: 16.66%;
}
.recruit-desc__concept__message {
  margin-top: 60px;
  padding: 20px;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.recruit-desc__concept__message::before {
  content: "";
  background-image: url("../images/recruit/bg_wht.jpg");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  background-repeat: repeat;
  background-size: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 0;
}
.recruit-desc__concept__message__title {
  text-align: center;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: 0.1em;
  color: #B60033;
}
.recruit-desc__concept__message__text {
  position: relative;
  margin-top: 16px;
  line-height: 1.8em;
}
@media (max-width: 767.98px) {
  .recruit-desc__concept {
    margin-top: 40px;
  }
  .recruit-desc__concept__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .recruit-desc__concept__title h3 {
    font-size: 6.28vw;
  }
  .recruit-desc__concept__title h3 br {
    display: block;
  }
  .recruit-desc__concept__container {
    margin-top: 32px;
  }
  .recruit-desc__concept__block {
    flex-flow: column;
  }
  .recruit-desc__concept__text {
    width: 100%;
  }
  .recruit-desc__concept__text p {
    font-size: 14px;
  }
  .recruit-desc__concept__text p + p {
    margin-top: 16px;
  }
  .recruit-desc__concept__photo {
    margin-top: 32px;
    width: 100%;
  }
  .recruit-desc__concept__message {
    margin-top: 32px;
  }
  .recruit-desc__concept__message__title {
    font-size: 14px;
  }
  .recruit-desc__concept__message__text {
    margin-top: 16px;
    font-size: 14px;
  }
}

#career .recruit-desc__info__title h3, #career .recruit-desc__info__title p {
  color: #2295AC;
}
#career .recruit-desc__info__block__title {
  background-color: #2295AC;
}
#career .recruit-desc__info__table th {
  background-color: #dbeaee;
  color: #2295AC;
}
#career .recruit-desc__info__table2 th {
  background-color: #dbeaee;
  color: #2295AC;
}
#career .recruit-desc__flow__title h3, #career .recruit-desc__flow__title p {
  color: #2295AC;
}
#career .recruit-desc__flow__block:not(:last-child)::after {
  background-image: url("../images/recruit/arrow_step_grn.svg");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
}
#career .recruit-desc__flow__dt > a > span, #career .recruit-desc__flow__dt > span > span {
  background-color: #2295AC;
}/*# sourceMappingURL=recruit.css.map */