@charset "UTF-8";
/*----------------------------------------------------------
更新日：2025年12月12日
-------------------------------------------------------------*/
/* =PAGE BASE
------------------------------------------------------------*/
.pageTitle {
  background-color: #f2f8fe;
  background-image: url("/asset/img/common/pagetitle_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 260px;
  padding: 0 1em;
}
.pageTitle .base-width {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}
.pageTitle h1, .pageTitle .normalType {
  color: #0e68cd;
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1.5;
}
.pageTitle .breadcrumb {
  position: absolute;
  bottom: 4%;
}

.content .home-btn {
  margin-top: 5em;
}
.content .center-link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.content .center-link li {
  width: 25%;
}
.content .center-link li .btn {
  width: 100%;
}

/* = PC
----------------------------------------*/
@media screen and (max-width: 1000px) {
  .pageTitle {
    height: 200px;
    padding: 0;
  }
  .pageTitle h1, .pageTitle .normalType {
    font-size: 2em;
  }
}
/* = スマホ
----------------------------------------*/
@media screen and (max-width: 768px) {
  .pageTitle {
    height: 50vw;
  }
  .pageTitle h1 .normalType {
    font-size: 1.75em;
    line-height: 1.4;
  }
}
/* ------------------------------------------------------------------
	採用情報
-------------------------------------------------------------------*/
#recruit .sec {
  margin: 0 1em 5em;
}
#recruit .flex2column, #recruit .flex3column, #recruit .flex4column {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#recruit .flex2column > *, #recruit .flex3column > *, #recruit .flex4column > * {
  margin-bottom: 1em;
}
#recruit .flex2column > * {
  width: calc(50% - 1em);
}
#recruit .flex3column > * {
  width: calc(33.3333% - 1em);
}
#recruit .flex4column > * {
  width: calc(25% - 1em);
}
#recruit .flex2column .txt, #recruit .flex3column .txt, #recruit .flex4column .txt {
  padding-top: 0.5em;
}
#recruit .txt {
  margin-bottom: 3em;
}
#recruit .borderWideBox {
  padding: 1em;
  border: 5px solid #ccc;
}
#recruit strong, #recruit .bold {
  font-weight: 700;
}
#recruit .recruitHead {
  display: flex;
  justify-content: center;
  margin-bottom: 1em;
  padding: 0.8em;
  border-top: 1px solid #AAA;
  border-bottom: 1px solid #AAA;
  line-height: 1.4;
  font-size: 2em;
  font-weight: 500;
  color: #168ea4;
}
#recruit .sec:first-of-type .recruitHead {
  border-top: 0;
}
#recruit .disc {
  padding-left: 1.5em;
  list-style-type: disc;
  list-style-position: outside;
}
#recruit .decimal {
  padding-left: 1.5em;
  list-style-type: decimal;
  list-style-position: outside;
}
#recruit .contactBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2em;
  margin-bottom: 0 !important;
  padding: 1em 0;
}
#recruit .contactBtn li {
  width: 300px;
  height: 80px;
  margin: 1em;
}

/* = PC = */
@media screen and (max-width: 1000px) {
  #recruit .sec {
    margin: 0 0 4em;
  }
  #recruit .flex2column, #recruit .flex3column, #recruit .flex4column {
    display: block;
  }
  #recruit .flex2column > *, #recruit .flex3column > *, #recruit .flex4column > * {
    width: auto;
  }
  #recruit .borderWideBox {
    border-width: 3px;
  }
  #recruit .recruitHead {
    line-height: 1.6;
    font-size: 1.6em;
  }
}
/* = スマホ = */
@media screen and (max-width: 768px) {
  #recruit .flex2column, #recruit .flex3column, #recruit .flex4column {
    display: block;
  }
  #recruit .flex2column > *, #recruit .flex3column > *, #recruit .flex4column > * {
    width: auto;
  }
  #recruit .borderWideBox {
    border-width: 3px;
  }
  #recruit .recruitHead {
    line-height: 1.6;
    font-size: 1.4em;
  }
}
/* /recruit
------------------------------------------------------*/
#recruitNav {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: #168ea4;
  z-index: 10;
}

#recruitNav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  margin-bottom: 0;
}

#recruitNav li:not(:last-of-type) {
  border-right: 1px solid rgba(255, 255, 255, 0.6);
  line-height: 1;
}

#recruitNav a {
  margin: 0 1em;
  color: #FFF;
}

#recruitKeyv {
  display: flex;
  align-items: center;
  position: relative;
  height: 600px;
  z-index: 0;
}

#recruitKeyv .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.2s;
}

#recruitKeyv .bg.active {
  opacity: 1;
}

#recruitKeyv .bg div {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 100%;
  opacity: 0;
  animation: bgAnime 25s infinite;
}

#recruitKeyv .bg div:nth-child(2) {
  animation-delay: 5s;
}

#recruitKeyv .bg div:nth-child(3) {
  animation-delay: 10s;
}

#recruitKeyv .bg div:nth-child(4) {
  animation-delay: 15s;
}

#recruitKeyv .bg div:nth-child(5) {
  animation-delay: 20s;
}

#recruitKeyv .bg div:nth-child(6) {
  animation-delay: 25s;
}

#recruitKeyv .bg div:nth-child(7) {
  animation-delay: 30s;
}

#recruitKeyv .bg .photo1 {
  background-image: url("/asset/img/recruit/photo1.jpg");
}

#recruitKeyv .bg .photo2 {
  background-image: url("/asset/img/recruit/photo2.jpg");
}

#recruitKeyv .bg .photo3 {
  background-image: url("/asset/img/recruit/photo3.jpg");
}

#recruitKeyv .bg .photo4 {
  background-image: url("/asset/img/recruit/photo4.jpg");
}

#recruitKeyv .bg .photo5 {
  background-image: url("/asset/img/recruit/photo5.jpg");
}

#recruitKeyv .bg .photo6 {
  background-image: url("/asset/img/recruit/photo6.jpg");
}

#recruitKeyv .bg .photo7 {
  background-image: url("/asset/img/recruit/photo7.jpg");
}

@keyframes bgAnime {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#recruitKeyv:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
}

#recruitKeyv .keyvTxt {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto !important;
  font-weight: 500;
  z-index: 1;
}

#recruitKeyv h1 {
  margin-bottom: 1.5em;
  line-height: 1.4;
  font-size: 3em;
  color: #168ea4;
}

#recruitKeyv h1 span {
  display: block;
}

#recruitKeyv h1 span:last-of-type {
  text-indent: 1em;
}

#recruitKeyv .btnArea {
  display: flex;
  align-items: stretch;
}

#recruitKeyv h2 {
  margin-right: 1em;
  line-height: 1.4;
  font-size: 2em;
  font-weight: bold;
}

#recruitKeyv h2 span {
  font-size: 0.68em;
}

#recruitKeyv .entryBtn,
#recruit .contactBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2em;
  border-radius: 10px;
  box-shadow: 0px 2px 3px 0 rgba(0, 0, 0, 0.3);
  background: #df9800;
  border: 3px solid #df9800;
  font-size: 1.6em;
  color: #FFF;
}

#recruit .contactBtn a {
  padding: 0.5em 1em;
}

#recruitKeyv .entryBtn:after,
#recruit .contactBtn a:after {
  content: "";
  position: relative;
  right: 0;
  width: 16px;
  height: 16px;
  margin-left: 0.5em;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  transform: rotate(45deg);
  transition: 0.2s;
}

#recruitKeyv .entryBtn:hover,
#recruit .contactBtn a:hover {
  background: #FFF;
  color: #df9800;
}

#recruitKeyv .entryBtn:hover:after,
#recruit .contactBtn a:hover:after {
  right: -1em;
  border-color: #df9800;
}

#recruitKeyv .comment {
  margin: 2em 0 0;
  letter-spacing: 0.08em;
  text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.8);
}

#recruitTop .txt {
  text-align: center;
}

#recruitTop .italic {
  font-style: italic;
  display: inline;
  border-bottom: 2px dotted rgba(22, 142, 164, 0.4);
  letter-spacing: 0.08em;
  line-height: 2.5;
  font-size: 1.1em;
}

#recruitTop .box {
  display: block;
  padding: 1em;
  border: 5px solid #EEE;
}

#telework {
  padding: 1em;
  border: 5px solid #ccc;
}

#telework .imgBox {
  display: flex;
  align-items: center;
}

#telework .imgBox .movie {
  min-width: calc(50% - 1em);
}

#telework .imgBox .txt {
  text-align: left;
  padding-right: 1em;
  padding-left: 2em;
  margin-bottom: 0;
}

#telework .imgBox h3 {
  margin-bottom: 1em;
  font-size: 1.4em;
  font-weight: 500;
}

#personal h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 1em;
}

#personal h3 span {
  display: block;
  position: absolute;
  text-align: center;
  font-size: 2em;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.6);
  color: #FFF;
}

#voice .box p {
  padding: 1em 0 1em;
}

#careerpath .e1,
#careerpath .e2,
#careerpath .e3,
#careerpath .leader,
#careerpath .s1,
#careerpath .s2,
#careerpath .d1,
#careerpath .d2 {
  color: #FFF;
}

#careerpath .e1 {
  background: #16a460;
}

#careerpath .e2 {
  background: #168ea4;
}

#careerpath .e3 {
  background: #164fa4;
}

#careerpath .leader {
  background: #4b16a4;
}

#careerpath .s1 {
  background: #b4b604;
}

#careerpath .s2 {
  background: #df9800;
}

#careerpath .d1 {
  background: #a4169c;
}

#careerpath .d2 {
  background: #a41616;
}

#careerpath .pic {
  text-align: center;
  margin-bottom: 3em;
}

#careerpath .pic img {
  width: 75%;
}

#careerpathPic {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 1em;
}

#careerpathPic dl {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 160px;
  height: 80px;
  margin: 0 20px 40px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.3);
}

#careerpathPic dl:last-of-type {
  margin-right: 220px;
}

#careerpathPic dl:not(.noArrow):before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #888;
  transform: translate(0%, -50%);
  color: #000;
}

#careerpathPic dl.bunki:after {
  content: "";
  position: absolute;
  top: 0px;
  left: -120px;
  width: 100px;
  height: 80px;
  border-left: 1px solid #888;
  border-bottom: 1px solid #888;
  transform: translate(0%, -50%);
  color: #000;
}

#careerpathPic dt {
  line-height: 1;
  font-size: 1.6em;
  font-weight: 500;
}

#careerpathTxt dl {
  padding: 1em 0 0;
  border-top: 1px solid #CCC;
}

#careerpathTxt dt {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  font-size: 1.2em;
  font-weight: 500;
}

#careerpathTxt dt span {
  display: inline-block;
  width: 50px;
  margin-right: 1em;
  border-radius: 5px;
  text-align: center;
}

.recruitSheet {
  border: 20px solid #EEE;
}

.recruitSheet th,
.recruitSheet td {
  padding: 1em 2em;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  vertical-align: top;
}

.recruitSheet th {
  width: 25%;
  white-space: nowrap;
  text-align: center;
  font-weight: bold;
}

.recruitSheet .box {
  display: block;
  padding: 1em;
  border: 5px solid #EEE;
}

/* = PC
----------------------------------------*/
@media screen and (max-width: 1000px) {
  #recruitNav a {
    margin: 0 0.5em;
    font-size: 0.875em;
  }

  #recruitKeyv {
    height: 450px;
  }

  #recruitKeyv .keyvTxt {
    padding-left: 3em;
  }

  #recruitKeyv h1 {
    margin: 1em 0;
    line-height: 1.4;
    font-size: 2.5em;
  }

  #recruitKeyv h2 {
    font-size: 1.8em;
  }

  #recruitKeyv .entryBtn,
  #recruit .contactBtn a {
    font-size: 1.4em;
  }

  #recruitKeyv .entryBtn:after,
  #recruit .contactBtn a:after {
    width: 12px;
    height: 12px;
  }

  #recruitKeyv .comment {
    margin: 1em 0 0;
    letter-spacing: inherit;
  }

  #telework .imgBox {
    display: block;
    align-items: flex-start;
  }

  #telework .imgBox .movie {
    min-width: calc(40% - 1em);
  }

  #telework .imgBox h3 {
    font-size: 1.2em;
  }

  #personal .box + .box {
    margin-top: 3em;
  }

  #personal h3 span {
    font-size: 1.5em;
  }

  #careerpathPic {
    transform: scale(0.9, 0.9);
  }
}
/* = スマホ
----------------------------------------*/
@media screen and (max-width: 768px) {
  #recruitNav {
    display: none;
  }

  #recruitKeyv {
    height: auto;
    min-height: 400px;
    padding: 2em 0;
    font-size: 1rem;
  }

  #recruitKeyv:after {
    width: 80%;
    background: rgba(255, 255, 255, 0.3);
    clip-path: polygon(0 0, 50% 0, 100% 100%, 0% 100%);
  }

  #recruitKeyv .bg div {
    background-position: 80% bottom;
  }

  #recruitKeyv .keyvTxt {
    padding: 0 2em;
    text-shadow: 0px 0px 3px rgba(255, 255, 255, 0.8);
  }

  #recruitKeyv h1 {
    margin: 1em 0;
    font-size: 7vw;
  }

  #recruitKeyv h2 {
    font-size: 5vw;
  }

  #recruit .contactBtn li {
    width: 100%;
    min-width: 0;
    height: inherit;
    margin: 0 1em 1em;
  }

  #recruitKeyv .entryBtn,
  #recruit .contactBtn a {
    padding: 1em 0;
    border-width: 2px;
    font-size: 4vw;
  }

  #recruitKeyv .entryBtn:after,
  #recruit .contactBtn a:after {
    width: 8px;
    height: 8px;
    border-width: 2px;
  }

  #recruitKeyv .comment br {
    display: none;
  }

  #recruitTop .txt {
    text-align: left;
  }

  #recruitTop .italic {
    border-bottom: 2px dotted rgba(22, 142, 164, 0.4);
    letter-spacing: inherit;
    line-height: 2;
    font-size: 0.875em;
  }

  #recruitTop .box {
    border-width: 3px;
  }

  #telework .imgBox .movie {
    min-width: calc(100%);
  }

  #telework .imgBox .txt {
    padding: 0;
  }

  #telework .imgBox h3 {
    margin: 1em 0 0.5em;
  }

  .recruitSheet,
  .recruitSheet tr,
  .recruitSheet th,
  .recruitSheet td {
    display: block;
    width: 100%;
  }

  .recruitSheet tr,
  .recruitSheet th,
  .recruitSheet td {
    padding: 0;
    border: 0;
  }

  .recruitSheet {
    border-width: 10px;
  }

  .recruitSheet th,
  .recruitSheet td {
    padding: 0.5em 1em;
  }

  .recruitSheet th {
    border-bottom: 1px solid #CCC;
  }

  .recruitSheet tr:not(:first-child) th {
    margin-top: 1em;
    border-top: 1px solid #CCC;
  }

  .recruitSheet .box {
    padding: 0.5em;
    border-width: 3px;
  }

  #careerpath .pic img {
    width: 100%;
  }
}
@media only screen and (max-width: 440px) {
  #recruitKeyv {
    height: auto;
    min-height: 0;
    padding: 1.5em 0;
  }

  #recruitKeyv:after {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    clip-path: none;
  }

  #recruitKeyv .bg div {
    background-position: 82% bottom;
  }

  #recruitKeyv .keyvTxt {
    padding: 0 1em;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  #recruitKeyv .entryBtn {
    padding: 0.5em 1em;
  }
}
