/*============================
アニメーション
============================*/
@keyframes yurayura {
  0%,
  100% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes fuwafuwa {
  0% {
    transform: translateX(2px);
  }
  50% {
    transform: translateX(-2px);
  }
}

/*============================
ヘッダー
============================*/
header {
  transition: transform 0.5s 0.3s;
  height: 0.81rem;
  min-width: 900px;
  position: fixed;
  z-index: 10;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

@media screen and (max-width: 1250px) {
  header {
    height: 1.41rem;
  }
}

@media screen and (max-width: 599px) {
  header {
    height: 0.55rem;
    min-width: 100%;
  }
}

/* ヘッダーが上に消える */
/*
header.hide {
	transform: translateY(-1.50rem);
}
*/

/* ロゴ */
header .logo {
  width: 2rem;
  position: absolute;
  top: 50%;
  left: 0.4rem;
  transform: translateY(-50%);
}

@media screen and (max-width: 1250px) {
  header .logo {
    top: 0.25rem;
    left: 50%;
    transform: none;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 599px) {
  header .logo {
    width: 1.5rem;
    left: 0.2rem;
    top: 0.2rem;
    transform: none;
  }

  header .logo a {
    line-height: 0;
    display: block;
  }
}

/* ナビゲーション */
header .glo_navi {
  position: absolute;
  top: 50%;
  right: 0.4rem;
  transform: translateY(-50%);
}

@media screen and (max-width: 1250px) {
  header .glo_navi {
    right: auto;
    width: 100%;
    transform: none;
  }
}

@media screen and (max-width: 599px) {
  header .glo_navi {
    position: absolute;
    top: 0.55rem;
    right: auto;
    left: 0;
    background-color: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transform: none;
    width: 100%;
    display: none;
  }
}

header .glo_navi .list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (max-width: 1250px) {
  header .glo_navi .list {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 599px) {
  header .glo_navi .list {
    display: block;
    padding: 0.2rem;
  }
}

header .glo_navi .list .link {
  margin-right: 0.3rem;
}

@media screen and (max-width: 1250px) {
  header .glo_navi .list .link {
    text-align: center;
    line-height: 1.35;
    margin-right: 0.25rem;
  }
}

@media screen and (max-width: 599px) {
  header .glo_navi .list .link {
    margin-right: 0;
    text-align: left;
    padding: 0.15rem 0;
  }

  header .glo_navi .list .link::before {
    content: "";
    display: inline-block;
    width: 0.06rem;
    height: 2px;
    background-color: #d70227;
    position: relative;
    margin-right: 0.08rem;
    top: -0.04rem;
  }
}

header .glo_navi .list .link a {
  font-size: 0.14rem;
  color: #3c3c3c;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 599px) {
  header .glo_navi .list .link a {
    font-size: 0.16rem;
    letter-spacing: 0.05em;
  }
}

header .glo_navi .list .link a:hover {
  color: #d70227;
}

header .glo_navi .list .link a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #d70227;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

@media screen and (max-width: 599px) {
  header .glo_navi .list .link a::after {
    content: none;
  }
}

header .glo_navi .list .link a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

@media screen and (max-width: 599px) {
  header .glo_navi .list .contact {
    padding: 0.2rem 0;
  }
}

header .glo_navi .list .contact a {
  background-color: #d70227;
  display: block;
  line-height: 0;
  padding: 0.2rem 0 0.22rem;
  width: 1.8rem;
  border-radius: 0.3rem;
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.14rem;
  letter-spacing: 0.02em;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 599px) {
  header .glo_navi .list .contact a {
    padding: 0.22rem 0 0.24rem;
    width: 100%;
    font-size: 0.16rem;
  }
}

header .glo_navi .list .contact a::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  z-index: 1;
}

header .glo_navi .list .contact a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

/*============================
main
============================*/
main {
  padding-top: 0.8rem;
}

@media screen and (max-width: 1250px) {
  main {
    padding-top: 1.41rem;
  }
}

@media screen and (max-width: 599px) {
  main {
    padding-top: 0.55rem;
  }
}

/*============================
MV
============================*/
#mv {
  height: calc(100vh - 0.8rem);
  max-height: 7.5rem;
  min-height: 6rem;
  position: relative;
  background-image: url(../img/mv_bg.jpg);
  background-position: center top;
  background-size: cover;
}

@media screen and (max-width: 599px) {
  #mv {
    height: calc(100vh - 0.55rem);
    max-height: 4rem;
    min-height: 3rem;
    background-position: 81% center;
  }
}

/* キャッチ */
#mv .catch {
  width: 6.45rem;
  height: 1.86rem;
  position: absolute;
  top: 40%;
  left: 55%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 599px) {
  #mv .catch {
    width: 3.2rem;
    height: 0.93rem;
    left: 52%;
    top: 40%;
  }
}

/*============================
jobs
============================*/
#jobs {
  padding-top: 0.3rem;
  padding-bottom: 0.6rem;
  position: relative;
  background-image: url(../img/jobs-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 599px) {
  #jobs {
    padding-top: 0.3rem;
    padding-bottom: 0.4rem;
  }
}

#jobs .sec_title {
  padding: 0.6rem 0 0.2rem;
  text-align: center;
  font-size: 0.48rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.61;
  color: #fff;
}

@media screen and (max-width: 599px) {
  #jobs .sec_title {
    padding: 0.2rem 0 0.2rem;
    font-size: 0.38rem;
  }
}

#jobs .lead {
  font-size: 0.18rem;
  line-height: 1.85;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  padding-bottom: 0.5rem;
  color: #fff;
}

@media screen and (max-width: 599px) {
  #jobs .lead {
    font-size: 0.16rem;
    line-height: 1.85;
    padding: 0 0.22rem 0.2rem;
  }
}

#jobs .job_list_wrap .list {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 599px) {
  #jobs .job_list_wrap .list {
    flex-direction: column;
    margin: 0;
  }
}

#jobs .job_list_wrap .list .detail {
  position: relative;
  width: calc((100% - 0.6rem) / 3);
  margin-top: 0.3rem;
  margin-left: 0.3rem;
}

#jobs .job_list_wrap .list .detail:nth-child(1),
#jobs .job_list_wrap .list .detail:nth-child(2),
#jobs .job_list_wrap .list .detail:nth-child(3) {
  margin-top: 0;
}

#jobs .job_list_wrap .list .detail:nth-child(3n + 1) {
  margin-left: 0;
}

@media screen and (max-width: 599px) {
  #jobs .job_list_wrap .list .detail:nth-child(2),
  #jobs .job_list_wrap .list .detail:nth-child(3) {
    margin-top: 0.3rem;
  }
}

@media screen and (max-width: 599px) {
  #jobs .job_list_wrap .list .detail {
    width: 100%;
    margin-top: 0.3rem;
    margin-left: 0;
  }
}

#jobs .job_list_wrap .list .detail a {
  display: block;
  padding: 0.32rem 0.25rem;
  text-decoration: none;
  color: #000;
  position: relative;
}

@media screen and (max-width: 599px) {
  #jobs .job_list_wrap .list .detail a {
    padding: 0.25rem 0.26rem;
  }
}

#jobs .job_list_wrap .list .detail::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: all 0.3s;
}

@media screen and (max-width: 599px) {
  #jobs .job_list_wrap .list .detail::before {
    width: 100%;
  }
}

#jobs .job_list_wrap .list .detail:hover::before {
  background-color: #fdf0f2;
  transform: translate(-50%, -50%) scale(1.05, 1.05);
}

#jobs .job_list_wrap .list .detail a .job_title {
  font-size: 0.25rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.025em;
  line-height: 1.61;
  padding-top: 0.05rem;
  padding-bottom: 0.15rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

@media screen and (max-width: 599px) {
  #jobs .job_list_wrap .list .detail a .job_title {
    font-size: 0.2rem;
    line-height: 1.2;
  }
}

#jobs .job_list_wrap .list .detail a:hover .job_title {
  color: #d70227;
}

#jobs .job_list_wrap .list .detail a .text_list {
  list-style: disc outside;
  margin-left: 0.13rem;
  padding-bottom: 0.05rem;
}

#jobs .job_list_wrap .list .detail a .text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.15rem;
  letter-spacing: 0.03em;
  line-height: 1.55;
  padding-bottom: 0.08rem;
  position: relative;
  z-index: 1;
  color: #d70227;
}

#jobs .job_list_wrap .list .detail a .text span {
  color: #000;
}

@media screen and (max-width: 599px) {
  #jobs .job_list_wrap .list .detail a .text {
    font-size: 0.14rem;
    letter-spacing: 0.03em;
  }
}

#jobs .in .more_btn {
  width: 5rem;
  margin: auto;
  padding-top: 0.76rem;
}

@media screen and (max-width: 599px) {
  #jobs .in .more_btn {
    width: 100%;
    padding-top: 0.2rem;
  }
}

#jobs .in .more_btn a {
  display: block;
  line-height: 0;
  padding: 0.34rem 0 0.36rem;
  background-color: #a9a7a7;
  font-family: "Montserrat", sans-serif;
  font-size: 0.25rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  position: relative;
  text-align: center;
  border-radius: 0.3rem;
}

@media screen and (max-width: 599px) {
  #jobs .in .more_btn a {
    padding: 0.29rem 0 0.31rem;
    font-size: 0.16rem;
    letter-spacing: 0.03em;
  }
}

#jobs .in .more_btn a:hover {
  background-color: #fff;
  color: #000;
}

#jobs .in .more_btn a::after {
  content: "";
  width: 0.6rem;
  height: 1px;
  background-color: #fff;
  position: absolute;
  right: -0.3rem;
  top: 50%;
  transition: all 0.3s;
}

@media screen and (max-width: 599px) {
  #jobs .in .more_btn a::after {
    width: 0.3rem;
    right: -0.15rem;
  }
}

#jobs .in .more_btn a:hover::after {
  background-color: #000;
  width: 0.5rem;
  right: -0.36rem;
}

@media screen and (max-width: 599px) {
  #jobs .in .more_btn a:hover::after {
    background-color: #000;
    width: 0.3rem;
    right: -0.2rem;
  }
}

/*============================
introduction
============================*/
#introduction {
  padding-top: 0.7rem;
}

@media screen and (max-width: 599px) {
  #introduction {
    padding-top: 0.5rem;
  }
}

#introduction .in .in_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#introduction .in .title_wrap {
  width: 100%;
  max-width: 2.65rem;
}

@media screen and (max-width: 599px) {
  #introduction .in .title_wrap {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}

#introduction .in .title_wrap .sec_title {
  font-size: 0.32rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.61;
}

@media screen and (max-width: 599px) {
  #introduction .in .title_wrap .sec_title {
    font-size: 0.28rem;
  }
}

#introduction .in .title_wrap .q-chan_wrap {
  padding-top: 0.2rem;
  text-align: center;
}

#introduction .in .title_wrap .q-chan_wrap .q-chan {
  width: 1.3rem;
  margin: auto;
  padding-bottom: 0.2rem;
  animation: fuwafuwa 2.3s ease-in-out infinite alternate;
}

@media screen and (max-width: 599px) {
  #introduction .in .title_wrap .q-chan_wrap .q-chan {
    width: 1rem;
  }
}

#introduction .in .title_wrap .q-chan_wrap .q-chan img {
  animation: yurayura 1.3s ease-in-out infinite;
}

#introduction .in .title_wrap .q-chan_wrap .text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.13rem;
  line-height: 1.55;
  padding: 0 0.2rem;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 599px) {
  #introduction .in .title_wrap .q-chan_wrap .text {
    font-size: 0.12rem;
    padding: 0 0.2rem 0.4rem;
  }
}

#introduction .in video {
  max-width: 8.55rem;
  width: 100%;
  max-height: 4.85rem;
  height: 100%;
}

#introduction .in .mission_wrap {
  width: 100%;
  padding-top: 1.9rem;
}

@media screen and (max-width: 599px) {
  #introduction .in .mission_wrap {
    padding-top: 0.8rem;
  }
}

#introduction .in .mission_wrap .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#introduction .in .mission_wrap .list .detail {
  width: calc((100% - 60px) / 3);
  height: 4.65rem;
  position: relative;
  box-sizing: border-box;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

@media screen and (max-width: 599px) {
  #introduction .in .mission_wrap .list .detail {
    width: 100%;
    height: 2.65rem;
    margin-bottom: 0.2rem;
  }
}

#introduction .in .mission_wrap .list .detail .title {
  font-size: 0.34rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 599px) {
  #introduction .in .mission_wrap .list .detail .title {
    font-size: 0.3rem;
    font-weight: 700;
    color: #fff;
  }
}

#introduction .in .mission_wrap .list .detail .title span {
  padding-top: 0.38rem;
  padding-left: 0.2rem;
  display: block;
}

#introduction .in .mission_wrap .list .detail .title::before {
  content: "";
  width: 0.05rem;
  height: 0.7rem;
  background-color: #d70227;
  top: 0;
  left: 0;
  position: absolute;
}

#introduction .in .mission_wrap .list .detail .text {
  font-size: 0.14rem;
  font-family: "Poppins", sans-serif;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0;
  position: absolute;
  left: 0.2rem;
  bottom: 0.2rem;
  letter-spacing: 0;
  width: calc(100% - 0.4rem);
}

@media screen and (max-width: 599px) {
  #introduction .in .mission_wrap .list .detail .text {
    font-size: 0.12rem;
    font-family: "Poppins", sans-serif;
    line-height: 1.5;
  }
}

#introduction .in .mission_wrap .list .detail .ph_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

#introduction .in .mission_wrap .list .detail .ph_wrap .ph_inner {
  position: relative;
  width: 100%;
  height: 100%;
}

#introduction .in .mission_wrap .list .detail .ph_wrap .ph_inner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

#introduction .in .mission_wrap .list .detail .ph_wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

#introduction .in .mission_wrap .list .detail.fade02 .ph_wrap img {
  height: 120%;
  object-position: left 40% top -70px;
}

#introduction .in .mission_wrap .list .detail.fade03 .ph_wrap img {
  height: 105%;
  object-position: left 12% top -8px;
}

#introduction .in .mission_wrap .list .detail.fade04 .ph_wrap img {
  height: 150%;
  object-position: left 65% top -60px;
}

#introduction .in .mission_wrap .list .detail:hover .ph_wrap img {
  transform: scale(1.08);
}

/*============================
Benefits & Allowance
============================*/
#Benefits_Allowance {
  padding-top: 1.3rem;
  position: relative;
}

@media screen and (max-width: 599px) {
  #Benefits_Allowance {
    padding-top: 1rem;
  }
}

#Benefits_Allowance::before {
  content: "";
  width: calc(50% + 3.3rem);
  height: calc(100% - 0.8rem);
  background-color: #fdf0f2;
  position: absolute;
  left: 0;
  top: 60%;
  transform: translateY(-50%);
  z-index: -1;
}

@media screen and (max-width: 599px) {
  #Benefits_Allowance::before {
    content: none;
  }
}

#Benefits_Allowance .in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

#Benefits_Allowance .in .title_wrap {
  width: 100%;
  max-width: 2.65rem;
}

@media screen and (max-width: 599px) {
  #Benefits_Allowance .in .title_wrap {
    max-width: 100%;
    text-align: center;
  }
}

#Benefits_Allowance .in .title_wrap .sec_title {
  font-size: 0.32rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.61;
  text-align: center;
}

@media screen and (max-width: 599px) {
  #Benefits_Allowance .in .title_wrap .sec_title {
    font-size: 0.28rem;
  }
}

#Benefits_Allowance .in .title_wrap .q-chan_wrap {
  padding-top: 0.5rem;
  text-align: center;
}

@media screen and (max-width: 599px) {
  #Benefits_Allowance .in .title_wrap .q-chan_wrap {
    padding-top: 0.2rem;
  }
}

#Benefits_Allowance .in .title_wrap .q-chan_wrap .q-chan {
  width: 1.3rem;
  margin: auto;
  padding-bottom: 0.2rem;
  animation: fuwafuwa 2.3s ease-in-out infinite alternate;
}

@media screen and (max-width: 599px) {
  #Benefits_Allowance .in .title_wrap .q-chan_wrap .q-chan {
    width: 1rem;
    padding-bottom: 0.4rem;
  }
}

#Benefits_Allowance .in .title_wrap .q-chan_wrap .q-chan img {
  animation: yurayura 1.3s ease-in-out infinite;
}

#Benefits_Allowance .in .title_wrap .q-chan_wrap .text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.12rem;
  line-height: 1.55;
  padding: 0 0.2rem;
}

@media screen and (max-width: 599px) {
  #Benefits_Allowance .in .title_wrap .q-chan_wrap .text {
    font-size: 0.1rem;
    padding: 0 0.3rem 0.3rem;
  }
}

#Benefits_Allowance .in .benefits_wrap {
  width: 100%;
  max-width: 8.8rem;
  position: relative;
}

@media screen and (max-width: 599px) {
  #Benefits_Allowance .in .benefits_wrap {
    padding: 0.2rem 0;
  }

  #Benefits_Allowance .in .benefits_wrap::before {
    content: "";
    width: calc(100% + 0.2rem);
    height: 100%;
    background-color: #fdf0f2;
    position: absolute;
    left: -0.2rem;
    bottom: 0;
    z-index: -1;
  }
}

#Benefits_Allowance .in .benefits_wrap .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#Benefits_Allowance .in .benefits_wrap .list .detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 48%;
  padding: 0.28rem 0;
}

@media screen and (max-width: 599px) {
  #Benefits_Allowance .in .benefits_wrap .list .detail {
    width: 100%;
    padding: 0.2rem 0;
  }
}

#Benefits_Allowance .in .benefits_wrap .list .detail .icon_wrap {
  width: 0.9rem;
  padding-top: 0.1rem;
}

@media screen and (max-width: 599px) {
  #Benefits_Allowance .in .benefits_wrap .list .detail .icon_wrap {
    width: 0.8rem;
    padding: 0.1rem;
    box-sizing: border-box;
  }
}

#Benefits_Allowance .in .benefits_wrap .list .detail .textbox {
  width: calc(100% - 0.9rem);
  padding-left: 0.15rem;
  box-sizing: border-box;
  transition: all 0.3s;
}

@media screen and (max-width: 599px) {
  #Benefits_Allowance .in .benefits_wrap .list .detail .textbox {
    width: calc(100% - 0.8rem);
    padding-left: 0.1rem;
  }
}

#Benefits_Allowance .in .benefits_wrap .list .detail:hover .textbox {
  color: #d70227;
}

#Benefits_Allowance .in .benefits_wrap .list .detail .title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.2rem;
  font-weight: 600;
  line-height: 1.35;
  padding-bottom: 0.1rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 599px) {
  #Benefits_Allowance .in .benefits_wrap .list .detail .title {
    font-size: 0.16rem;
    padding-bottom: 0.05rem;
  }
}

#Benefits_Allowance .in .benefits_wrap .list .detail .text_list {
  list-style: disc outside;
  margin-left: 0.12rem;
}

#Benefits_Allowance .in .benefits_wrap .list .detail .text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.13rem;
  line-height: 1.55;
  padding-bottom: 0.08rem;
  letter-spacing: 0.03em;
  color: #d70227;
}

@media screen and (max-width: 599px) {
  #Benefits_Allowance .in .benefits_wrap .list .detail .text {
    font-size: 0.12rem;
    line-height: 1.5;
    padding-bottom: 0.05rem;
    padding-right: 0.15rem;
    letter-spacing: 0.02em;
  }
}

#Benefits_Allowance .in .benefits_wrap .list .detail .text span {
  color: #000;
  transition: all 0.3s;
}

#Benefits_Allowance .in .benefits_wrap .list .detail:hover .text span {
  color: #d70227;
}

/*============================
Interview
============================*/
#interview {
  padding-top: 1.5rem;
}

@media screen and (max-width: 599px) {
  #interview {
    padding-top: 0.5rem;
  }
}

#interview_slider_wrap {
  position: relative;
}

#interview .slide {
  width: 11.4rem;
}

@media screen and (max-width: 599px) {
  #interview .slide {
    width: 3rem;
  }
}

#interview .slide .flexbox {
  background-color: #f2f2f2;
  background: linear-gradient(135deg, #eeeeee 0%, #eeeeee 46%, #eeeeee 50%, #f2f2f2 50%, #f2f2f2 100%);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.6rem;
  min-height: 3.9rem;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  margin: 0 0.3rem;
}

@media screen and (max-width: 599px) {
  #interview .slide .flexbox {
    padding: 0.2rem;
    margin: 0 0.1rem;
    min-height: auto;
    display: block;
  }
}

#interview .slide .flexbox .name_ph {
  width: 2.2rem;
  text-align: center;
  color: #808080;
}

@media screen and (max-width: 599px) {
  #interview .slide .flexbox .name_ph {
    width: 100%;
    padding-top: 0.4rem;
  }
}

#interview .slide .flexbox .name_ph .ph_wrap {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: auto;
}

@media screen and (max-width: 599px) {
  #interview .slide .flexbox .name_ph .ph_wrap {
    width: 1.4rem;
    height: 1.4rem;
  }
}

#interview .slide .flexbox .name_ph .ph_wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

#interview .slide .flexbox .name_ph .name {
  font-size: 0.17rem;
  font-weight: 600;
  padding: 0.2rem 0 0.1rem;
  font-family: "Poppins", sans-serif;
}

#interview .slide .flexbox .name_ph .job_post {
  font-size: 0.13rem;
  font-family: "Poppins", sans-serif;
}

#interview .slide .flexbox .textbox {
  width: 6.7rem;
  box-sizing: border-box;
  padding-left: 0.4rem;
}

@media screen and (max-width: 599px) {
  #interview .slide .flexbox .textbox {
    width: 2.8rem;
    padding-left: 0;
    padding-top: 0.2rem;
  }
}

#interview .slide .flexbox .textbox .text {
  font-size: 0.15rem;
  line-height: 2;
}

@media screen and (max-width: 599px) {
  #interview .slide .flexbox .textbox .text {
    font-size: 0.14rem;
    line-height: 1.85;
    letter-spacing: 0.03em;
  }
}

/* 送り矢印基本 */
#interview .slick-arrow {
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

@media screen and (max-width: 599px) {
  #interview .slick-arrow {
    width: 0.3rem;
    height: 0.3rem;
  }
}

#interview .slick-arrow.prev {
  background-image: url(../img/slider_arrow_prev.svg);
  background-position: left center;
  left: calc(50% - 5.9rem);
}

@media screen and (max-width: 599px) {
  #interview .slick-arrow.prev {
    left: 0.1rem;
    background-size: auto 0.07rem;
  }
}

#interview .slick-arrow.next {
  background-image: url(../img/slider_arrow_next.svg);
  background-position: right center;
  right: calc(50% - 5.9rem);
}

@media screen and (max-width: 599px) {
  #interview .slick-arrow.next {
    right: 0.1rem;
    background-size: auto 0.07rem;
  }
}

/* ドット */
#interview .slick-dots li {
  height: 4px;
  background-color: #c3c3c3;
  border-radius: 4px;
  width: 4px;
  transition: all 0.3s;
  overflow: hidden;
}

#interview .slick-dots li button {
  height: 4px;
  border-radius: 4px;
}

#interview .slick-dots li button::before {
  height: 4px;
  line-height: 4px;
  font-size: 0;
  border-radius: 4px;
}

#interview .slick-dots li.slick-active {
  background-color: #d70227;
  width: 20px;
  border-radius: 4px;
}

/*============================
Office
============================*/
#office {
  padding-top: 1.3rem;
}

@media screen and (max-width: 599px) {
  #office {
    padding-top: 0.7rem;
  }
}

#office .sec_title {
  text-align: center;
  font-size: 0.38rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.61;
  padding-bottom: 0.4rem;
}

@media screen and (max-width: 599px) {
  #office .sec_title {
    font-size: 0.28rem;
  }
}

#office .lead {
  font-size: 0.18rem;
  line-height: 1.85;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  padding-bottom: 0.5rem;
}

@media screen and (max-width: 599px) {
  #office .lead {
    font-size: 0.14rem;
    line-height: 1.85;
    padding-bottom: 0.3rem;
  }
}

#office #office_slider_wrap .slide {
  width: 100%;
  max-width: 8.2rem;
  margin-left: 0.2rem;
}

@media screen and (max-width: 599px) {
  #office #office_slider_wrap .slide {
    width: 3rem;
    max-width: 3.2rem;
    margin-left: 0.1rem;
  }
}

#office #office_slider_wrap .slide img {
  height: 30vw;
  max-height: 6rem;
  min-height: 2.2rem;
  object-fit: cover;
}

/* スライダーのQチャン */
#office .q-chan_box {
  position: absolute;
  width: 1.3rem;
  right: 0.5rem;
  bottom: -0.5rem;
  z-index: 1;
}

@media screen and (max-width: 599px) {
  #office .q-chan_box {
    position: absolute;
    width: 0.7rem;
    right: 0.1rem;
    bottom: -0.3rem;
    z-index: 1;
  }
}

/*============================
blog
============================*/
#blog {
  margin-top: 1.62rem;
}

@media screen and (max-width: 599px) {
  #blog {
    margin-top: 1rem;
  }
}

#blog .blog_in {
  position: relative;
  max-width: 12rem;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ccc;
  background: linear-gradient(78deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 60%), url(../img/blog_bg.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

@media screen and (max-width: 599px) {
  #blog .blog_in {
    width: calc(100% - 0.4rem);
  }
}

#blog .blog_in::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

#blog .blog_in .text_content {
  padding: 0.26rem 0.5rem 0.5rem;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 599px) {
  #blog .blog_in .text_content {
    padding: 0.2rem;
  }
}

#blog .blog_in .text_content .sec_title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.54rem;
  color: #fff;
}

@media screen and (max-width: 599px) {
  #blog .blog_in .text_content .sec_title {
    font-size: 0.3rem;
  }
}

#blog .blog_in .text_content .sec_title span {
  font-weight: 400;
  font-style: italic;
  font-size: 0.3rem;
  letter-spacing: 0;
}

@media screen and (max-width: 599px) {
  #blog .blog_in .text_content .sec_title span {
    font-size: 0.18rem;
  }
}

#blog .blog_in .text_content .text {
  padding-top: 0.34rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.25rem;
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
}

@media screen and (max-width: 599px) {
  #blog .blog_in .text_content .text {
    padding-top: 0.1rem;
    font-size: 0.14rem;
  }
}

#blog .blog_in .text_content .more_btn {
  max-width: 3rem;
  padding-top: 0.36rem;
  text-align: center;
}

@media screen and (max-width: 599px) {
  #blog .blog_in .text_content .more_btn {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0.4rem;
  }
}

#blog .blog_in .text_content .more_btn a {
  display: block;
  padding: 0.18rem 0.4rem;
  background-color: #d70227;
  font-family: "Montserrat", sans-serif;
  font-size: 0.22rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  position: relative;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

@media screen and (max-width: 599px) {
  #blog .blog_in .text_content .more_btn a {
    padding: 0.2rem 0 0.22rem;
    font-size: 0.18rem;
  }
}

#blog .blog_in .text_content .more_btn a:hover {
  background-color: #fff;
  color: #000;
}

#blog .blog_in .text_content .more_btn a::after {
  position: absolute;
  top: 50%;
  right: 0.3rem;
  transform: translateY(-50%);
  content: "";
  width: 0.15rem;
  height: 0.15rem;
  background-image: url(../img/blog_arrow01.png);
  background-size: cover;
  background-position: center;
  transition: all 0.3s;
}

@media screen and (max-width: 599px) {
  #blog .blog_in .text_content .more_btn a::after {
    width: 0.1rem;
    height: 0.1rem;
    right: 0.15rem;
  }
}

#blog .blog_in .text_content .more_btn a:hover::after {
  background-image: url(../img/blog_arrow02.png);
  right: 0.15rem;
}

@media screen and (max-width: 599px) {
  #blog .blog_in .text_content .more_btn a:hover::after {
    right: 0.05rem;
  }
}

/*============================
message
============================*/
#message {
  background-color: #f2f2f2;
  margin-top: 1rem;
  padding: 0.9rem 0;
  position: relative;
}

@media screen and (max-width: 599px) {
  #message {
    margin-top: 0.6rem;
    padding: 0;
  }
}

#message::before {
  content: "";
  width: 44%;
  height: 100%;
  background-image: url(../img/ceo_ph.jpg);
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 599px) {
  #message::before {
    display: block;
    position: relative;
    width: 100%;
    height: 75vw;
  }
}

#message .textbox {
  width: 50%;
  margin-left: auto;
}

@media screen and (max-width: 599px) {
  #message .textbox {
    width: 100%;
    margin: auto;
    padding: 0.2rem 0;
  }
}

#message .textbox .sec_title {
  font-size: 0.32rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.61;
}

@media screen and (max-width: 599px) {
  #message .textbox .sec_title {
    font-size: 0.22rem;
    text-align: center;
  }
}

#message .textbox .catch {
  width: 100%;
  max-width: 4.35rem;
  padding: 0.2rem 0;
}

@media screen and (max-width: 599px) {
  #message .textbox .catch {
    max-width: 2.35rem;
    text-align: center;
    margin: auto;
  }
}

#message .textbox .text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.15rem;
  line-height: 1.85;
  position: relative;
  z-index: 1;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 599px) {
  #message .textbox .text {
    font-size: 0.14rem;
  }
}

#message .textbox .ceo_name {
  font-family: "Poppins", sans-serif;
  font-size: 0.15rem;
  line-height: 1.85;
  position: relative;
  z-index: 1;
  letter-spacing: 0.03em;
  text-align: right;
  padding-top: 0.1rem;
}

#message .textbox .ceo_name span {
  font-size: 0.18rem;
}

@media screen and (max-width: 599px) {
  #message .textbox .ceo_name {
    font-size: 0.13rem;
    padding-bottom: 0.3rem;
  }
  #message .textbox .ceo_name span {
    font-size: 0.16rem;
  }
}

/*============================
last-q-chan
============================*/
#last_q-chan {
  background-image: url(../img/last_q-chan_bg.jpg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}

@media screen and (max-width: 599px) {
  #last_q-chan {
    margin-top: 0.5rem;
  }
}

#last_q-chan .textbox {
  color: #fff;
  padding: 1.9rem 0;
  width: 5.2rem;
  position: relative;
}

@media screen and (max-width: 599px) {
  #last_q-chan .textbox {
    padding: 0.6rem 0;
    width: 100%;
  }
}

#last_q-chan .textbox .sec_title {
  font-size: 0.38rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.025em;
  line-height: 1.31;
  padding-bottom: 0.1rem;
}

@media screen and (max-width: 599px) {
  #last_q-chan .textbox .sec_title {
    font-size: 0.28rem;
  }
}

#last_q-chan .textbox .text {
  font-size: 0.24rem;
  padding-bottom: 0.8rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.35;
}

@media screen and (max-width: 599px) {
  #last_q-chan .textbox .text {
    font-size: 0.18rem;
    line-height: 1.5;
    letter-spacing: 0.03em;
    padding-bottom: 0.4rem;
  }
}

#last_q-chan .textbox .more_btn {
  width: 3rem;
}

@media screen and (max-width: 599px) {
  #last_q-chan .textbox .more_btn {
    width: 80%;
    margin: auto;
  }
}

#last_q-chan .textbox .more_btn a {
  display: block;
  line-height: 0;
  padding: 0.34rem 0 0.36rem 0.3rem;
  background-color: #a9a7a7;
  font-family: "Montserrat", sans-serif;
  font-size: 0.25rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  position: relative;
  border-radius: 0.3rem;
}

@media screen and (max-width: 599px) {
  #last_q-chan .textbox .more_btn a {
    font-size: 0.18rem;
    padding: 0.3rem 0 0.32rem;
    text-align: center;
  }
}

#last_q-chan .textbox .more_btn a:hover {
  background-color: #fff;
  color: #000;
}

#last_q-chan .textbox .more_btn a::after {
  content: "";
  width: 0.6rem;
  height: 1px;
  background-color: #fff;
  position: absolute;
  right: -0.3rem;
  top: 50%;
  transition: all 0.3s;
}

@media screen and (max-width: 599px) {
  #last_q-chan .textbox .more_btn a::after {
    width: 0.3rem;
    right: -0.15rem;
  }
}

#last_q-chan .textbox .more_btn a:hover::after {
  background-color: #000;
  width: 0.5rem;
  right: -0.36rem;
}

@media screen and (max-width: 599px) {
  #last_q-chan .textbox .more_btn a:hover::after {
    width: 0.3rem;
    right: -0.2rem;
  }
}

/* QRコード */
#last_q-chan .textbox .qr_code {
  position: absolute;
  width: 1.2rem;
  right: 0;
  bottom: 1.65rem;
}

/* Qチャン */
#last_q-chan .q-chan_box {
  width: 3.15rem;
  height: 3.86rem;
  position: absolute;
  right: 0.5rem;
  bottom: -0.3rem;
  z-index: 1;
}

#last_q-chan .q-chan_box .q-chan_img {
  width: 100%;
  height: 100%;
  position: relative;
  animation: fuwafuwa 4.3s ease-in-out infinite alternate;
}

@media screen and (max-width: 599px) {
  #last_q-chan .q-chan_box {
    width: 100%;
    height: auto;
    position: relative;
    right: auto;
    bottom: auto;
    background-image: none;
  }

  #last_q-chan .q-chan_box .q-chan_img {
    width: 1.5rem;
    height: auto;
    margin-left: auto;
    position: relative;
    bottom: -0.25rem;
  }
}

#last_q-chan .q-chan_box .q-chan_img img {
  animation: yurayura 2.3s ease-in-out infinite;
}

#last_q-chan .q-chan_box .q-chan_text {
  position: absolute;
  width: 3.13rem;
  height: 1rem;
  top: -0.3rem;
  left: -2.6rem;
  z-index: 1;
  transform: rotate(3deg);
}

@media screen and (max-width: 599px) {
  #last_q-chan .q-chan_box .q-chan_text {
    width: 2.1rem;
    height: 1rem;
    top: -0.1rem;
    left: 0;
  }
}

#last_q-chan .q-chan_box .q-chan_text img {
  display: block;
}

/* Qちゃんの瞬き */
#last_q-chan .q-chan_box .q-chan_eye {
  position: absolute;
  width: 0.8rem;
  left: 0.74rem;
  z-index: 2;
  top: 0.68rem;
  animation: fuwafuwa 4.3s ease-in-out infinite alternate;
}

@media screen and (max-width: 599px) {
  #last_q-chan .q-chan_box .q-chan_eye {
    width: 0.4rem;
    left: auto;
    top: 0.59rem;
    right: 0.76rem;
  }
}

#last_q-chan .q-chan_box .q-chan_eye img {
  animation: yurayura 2.3s ease-in-out infinite;
}

/*============================
footer
============================*/
footer {
  border-bottom: 0.1rem solid #000;
  position: relative;
  z-index: 0;
}

footer::after {
  content: "";
  width: 50%;
  height: 0.1rem;
  background-color: #d70227;
  position: absolute;
  right: 0;
  bottom: -0.1rem;
}

footer .in {
  max-width: 100%;
  padding: 0.2rem 0.7rem 0.45rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 599px) {
  footer .in {
    max-width: 100%;
    padding: 0.2rem 0.2rem 0.45rem;
  }
}

footer .in .logo_wrap {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media screen and (max-width: 599px) {
  footer .in .logo_wrap {
    width: 100%;
    display: block;
    text-align: center;
  }
}

footer .in .logo_wrap .logo {
  width: 2rem;
}

@media screen and (max-width: 599px) {
  footer .in .logo_wrap .logo {
    width: 1.5rem;
    margin: auto;
    padding-bottom: 0.15rem;
  }
}

footer .in .logo_wrap .address {
  font-size: 0.12rem;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.025em;
  line-height: 1.61;
  padding-left: 0.3rem;
}

@media screen and (max-width: 599px) {
  footer .in .logo_wrap .address {
    padding-left: 0;
    padding-bottom: 0.2rem;
  }
}

footer .in .sns_link_wrap {
  width: 50%;
}

@media screen and (max-width: 599px) {
  footer .in .sns_link_wrap {
    width: 100%;
  }
}

footer .in .sns_link_wrap .list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (max-width: 599px) {
  footer .in .sns_link_wrap .list {
    justify-content: center;
  }
}

footer .in .sns_link_wrap .list .link {
  padding-left: 0.35rem;
}

@media screen and (max-width: 599px) {
  footer .in .sns_link_wrap .list .link {
    padding: 0 0.15rem;
  }
}

footer .in .sns_link_wrap .list .link a {
  width: 0.4rem;
  display: block;
}

footer .in .sns_link_wrap .list .link a:hover {
  opacity: 0.5;
}

/*ShiftAsia css*/

.desktop {
  display:block;
}
.mobile {
  display:none;
}
.signin_banner {
  text-align: center;
  margin-bottom: 0.3rem;
  border-radius: 30px;
  overflow: hidden;
}
.signin_btn {
  width:5.8rem;
}
#jobs .in .signin_btn a {
  font-size: 0.21rem;
}

@media screen and (max-width: 599px) {
  .desktop {
    display:none;
  }
  .mobile {
    display:block;
  }
  .signin_banner {
    border-radius: 20px;
  }
  .signin_btn {
    width:5.8rem;
  }
  #jobs .in .signin_btn a {
    font-size: 0.14rem;
  }
}
