@charset "UTF-8";


/* ----------------------------------------------
   共通レイアウト
---------------------------------------------- */

main ul + *,
main dl + * {
  margin-top: 1em;
}

main dt + dd {
  margin-top: .5em;
}

main .list__items {
  list-style-type: disc;
  margin-left: 1.5em;
}

.remark {
  font-size: 14px;
}

.smp {
  display: none;
}

.pc {
  display: block;
}

.green {
  color: #00a8a9;
}

@media print, screen and (min-width: 768px) {
  body#recruit #contactBtn {
    width: 320px;
    right: -250px;
  }
  body#recruit #contactBtn:hover {
    right: 0;
  }
}



body#recruit {
  color: #333;
}
section {
  margin: 0;
}
section:not(#hero) {
  padding: 4vw 0;
}
.section__inner {
  max-width: calc(980px + 4vw);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2vw;
  padding-right: 2vw;
}
body.home .section__inner,
body:not(.home) .inquiry .section__inner {
  max-width: calc(1400px + 4vw);
  padding-left: 2vw;
  padding-right: 2vw;
}

.recruit__heading_lv2 {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
}
.recruit__heading_lv2 span {
  display: block;
  font-family: initial;
  font-size: 14px;
  line-height: initial;
  margin-left: 1em;
  position: relative;
  margin-top: 1em;
}
.recruit__heading_lv2 span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1em;
  width: 9px;
  height: 2px;
  background-color: #00a8a9;
  transform: translateY(-50%);
}

.flexbox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#recruit .atten {
  color: #f10202;
  font-size: 14px;
}


#recruit.home section:not(#news) .heading__group {
  margin-bottom: 3vw;
}
#recruit.home .heading__group.noborder {
  border: none;
}
.view__more a {
  color: #00a8a9;
  position: relative;
  padding-right: 1em;
  font-size: 14px;
}
.view__more a:hover {
  text-decoration: none;
}
.view__more a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background-image: url(img/arrow_green.png);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 6px 9px;
  width: 6px;
  height: 9px;
  transform: translateY(-50%);
}
.button {
  width: 320px;
  height: 80px;
  padding: 1em 2em;
  background-color: #00a8a9;
  color: #fff !important;
  text-decoration: none !important;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid #00a8a9;
  transition: all .5s ease;
  position: relative;
}
.button:hover {
  background-color: #fff;
  color: #00a8a9 !important;
}
.button::after {
  content: "";
  position: absolute;
  right: 2em;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(img/arrow_white.png) !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 6px 9px !important;
  width: 6px;
  height: 9px;
  transition: all .5s ease;
}
.button:hover::after {
  background-image: url(img/arrow_green.png) !important;
}
.inquiry__button {
  margin-top: 2em;
  padding-left: 4em;
}
.inquiry__button::before {
  content: "";
  position: absolute;
  right: auto;
  left: 2em;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(img/icon_email_white.png) !important;
  background-size: 16px 16px !important;
  width: 16px;
  height: 16px;
  transition: all .5s ease;
}
.inquiry__button:hover::before {
  background-image: url(img/icon_email_green.png) !important;
}

#recruit .pagetitle {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  width: 100%;
  height: 340px;
}
#recruit .pagetitle h2 {
  font-weight: normal;
}
/* 新卒採用 */
#recruit.recruit__info .pagetitle {
  background-image: url(img/bg_pagetitle_recruit.jpg);
}
/* 社員の声 */
#recruit.interview .pagetitle {
  background-image: url(img/bg_pagetitle_interview.jpg);
}


/* アコーディオン */
.accordion {
  margin: 0 auto 50px;
}
.accordion_wrap {
  border: none;
}
.accordion_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f5f5;
  color: #00a8a9;
  font-size: 18px;
  font-weight: normal !important;
  padding: .75em 1em .5em;
  position: relative;
  border: none;
  cursor: pointer;
}
.accordion .accordion_wrap + .accordion_wrap {
  margin-top: 1em
}
.accordion_header:after {
  content: "";
  background-image: url(img/icon_accordion.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px, 16px;
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 32px;
  top: 50%;
  transition: all .5s ease;
  transform: translateY(-50%) rotate(0deg);
}
.accordion_inner {
  display: none;
  margin-top: 2em;
  padding: 0 0 2em;
  border: none;
}
.accordion_inner.open,
.accordion_inner.stay {
  display: block;
}

.accordion_header.stay:after,
.accordion_header.open:after {
  transform: translateY(-50%) rotate(45deg);
}
.accordion_header.stay.open:after {
  transform: translateY(-50%) rotate(0deg);
}
.accordion_inner p + p {
  margin-top: 1em;
}
.table__wrap {
  display: block;
}



/* ----------------------------------------------
   #hero
---------------------------------------------- */
#recruit #hero {
  position: relative;
  width: 100%;
  height: auto;
}

/* パンくず共通 */
#recruit .breadCrumb {
  background-color: #fff;
  font-size: 14px;
  padding: .5em 0;
  width: 100%;
}
#recruit .breadCrumb ul li:not(:last-of-type) {
  margin-right: 2em;
  position: relative;
}
#recruit .breadCrumb ul li:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1em;
  background-image: url(img/arrow_green.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 6px 9px;
  width: 6px;
  height: 9px;
  transform: translateY(-50%);
}
#recruit .breadCrumb a:hover {
  text-decoration: none;
}



/* ----------------------------------------------
   #news
---------------------------------------------- */
#recruit #news {
  background-color: #f5f5f5;
}
#recruit #news .section__inner {
  align-items: center;
  flex-wrap: wrap;
}
#recruit #news .heading__group {
  flex-wrap: wrap;
  width: 25%;
  border-right: 1px solid #cdcbcb;
}
#recruit #news .news {
  flex: 1;
  padding-left: 3vw;
}
#recruit #news .news__content {
  align-items: flex-start;
  flex-wrap: wrap;
}
#recruit #news .news__content time {
  font-weight: bold;
  color: #008486;
  margin-right: 1em;
}


/* ----------------------------------------------
   #interview
---------------------------------------------- */
#recruit #interview .heading__group,
#recruit #recruit__info .heading__group {
  flex-wrap: wrap;
  width: 100%;
}
#recruit #interview .recruit__heading_lv2 {
  width: 25%;
  border-right: 1px solid #cdcbcb;
}
#recruit #interview .discription {
  padding-left: 3vw;
}
#recruit #interview .view__more {
  margin-left: auto;
  margin-right: 0;
}
#recruit #interview .interview {
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
#recruit #interview .interview__content {
  width: calc(calc(100% - 96px) / 4);
  background-color: #f5f5f5;
  position: relative;
}
#recruit #interview .article__inner {
  padding: 42px 25px 25px;
  transition: all .5s ease;
}
#recruit #interview .article__inner .name span {
  color: #00a8a9;
  margin-right: 8px;
}
#recruit #interview .interview__content a {
  text-decoration: none;
}
#recruit #interview .interview__content a:hover .article__inner {
  background-color: #e5f6f6;
}
#recruit #interview .interview__content a img {
  transition: all .5s ease;
}
#recruit #interview .interview__content a:hover img {
  filter: brightness(0.5);
}
#recruit #interview .status {
  position: absolute;
  left: 0;
  bottom: 7.4em;
  font-size: 14px;
  color: #fff;
  background-color: #00a8a9;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 230px;
  line-height: 1;
  white-space: nowrap;
}


/* ----------------------------------------------
   #recruit__info
---------------------------------------------- */
#recruit #recruit__info {
  background-color: #e5f6f6;
}
#recruit #recruit__info .recruit {
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
#recruit #recruit__info .recruit .interview__content {
  width: calc(calc(100% - 32px) / 2);
}
#recruit #recruit__info img {
  filter: brightness(0.65);
  transition: all .5s ease;
}
#recruit #recruit__info a:hover img {
  filter: brightness(0.35);
}
#recruit #recruit__info a {
  text-decoration: none;
  color: #fff;
  position: relative;
  display: block;
}
#recruit #recruit__info a h3 {
  font-size: 28px;
  font-weight: normal;
}
#recruit #recruit__info a .fook {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#recruit #recruit__info a .fook .btn {
  line-height: 1;
  white-space: nowrap;
  color: #fff;
  background-color: #00a8a9;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 1em;
  transition: all .5s ease;
}
#recruit #recruit__info a:hover .fook .btn {
  background-color: #008486;
}


/* ----------------------------------------------
   #others
---------------------------------------------- */
#recruit #others .others {
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
#recruit #others .others .interview__content {
  width: calc(calc(100% - 32px) / 2);
}
#recruit #others .others .interview__content a {
  justify-content: space-between;
  max-height: 210px;
  background-color: #fff;
  text-decoration: none;
  border: 1px solid #00a8a9;
  transition: all .5s ease;
}
#recruit #others .others .interview__content a:hover {
  background-color: #e5f6f6;
}
#recruit #others .others .interview__content a img {
  max-height: 208px;
  width: auto;
  transition: all .5s ease;
}
#recruit #others .others .interview__content a:hover img {
  filter: brightness(0.35);
}
#recruit #others .others .interview__content a .right {
  padding: 24px;
}
#recruit #others .others .interview__content h3 {
  font-size: 26px;
  font-weight: normal;
  color: #00a8a9;
}
#recruit #others .others .interview__content p {
  font-size: 14px;
}



/* ----------------------------------------------
   aside
---------------------------------------------- */
#recruit .inquiry {
  background-color: #f5f5f5;
}
#recruit .inquiry .section__inner {
  justify-content: center;
  align-items: flex-start;
  padding-top: 4vw;
  padding-bottom: 4vw;
}
#recruit .inquiry .section__inner > div {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2em;
}
#recruit .inquiry .section__inner .left {
  border-right: 1px solid #ccc;
  padding: 4vw 80px 4vw 0;
}
#recruit .inquiry .section__inner h3 {
  font-size: 24px;
}
/*
#recruit .inquiry .section__inner p,
#recruit .inquiry .section__inner dl {
  margin-top: 2em;
}
*/
#recruit .inquiry .section__inner .right {
  padding: 4vw 0 4vw 80px;
}
#recruit .inquiry .section__inner .right .description {
  flex-grow: 1;
}
#recruit .inquiry .section__inner .right .tel a {
  font-size: 27px;
  color: #00a8a9;
  text-decoration: none;
  padding-left: 40px;
  position: relative;
  cursor: default;
  pointer-events: none;
}
#recruit .inquiry .section__inner .right .tel a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background-image: url(img/icon_phone.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 32px;
  display: inline-block;
  width: 32px;
  height: 32px;
  transform: translateY(-63%);
}
#recruit .inquiry .section__inner .to {
  height: 80px;
  /*margin-top: 2em;*/
}

#recruit .inquiry .button {
  width: 100%;
  margin-top: 0;
}




/* ----------------------------------------------
   各ページ
---------------------------------------------- */

/* 採用情報（新卒・経験者共通） */

.tabSwitch__header ul {
  width: 100%;
  border-left: 1px solid #ddd;
}
.tabSwitch__header ul li {
  width: calc(100% / 3);
  border: none !important;
}
.tabSwitch__header ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #f5f5f5;
  color: #333;
  text-decoration: none;
  font-size: 21px;
  height: 88px;
  transition: all .5s ease;
}
.tabSwitch__header ul li.selected a {
  background-color: #fff;
  color: #008486;
  border-bottom: none !important;
  border-top: 3px solid #00a8a9 !important;
}
.tabSwitch__header ul li a:hover {
  background-color: #fff;
  color: #008486;
}

#tab-process ol {
  margin: 2em 0 4vw;
  border-top: 1px solid #ddd;
}
#tab-process ol li {
  padding: 1.5em 2em;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2em;
  color: #00a8a9;
  font-size: 22px;
  position: relative;
}
#tab-process ol li:not(:first-of-type):after {
  content: "・・・";
  position: absolute;
  left: 49px;
  top: -28px;
  transform: rotate(90deg);
  color: #333;
}
#tab-process ol li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  min-width: 80px;
  height: 80px;
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
}
#tab-process ol li:nth-child(1) span {
  background-color: #00a8a9;
}
#tab-process ol li:nth-child(2) span {
  background-color: #0096af;
}
#tab-process ol li:nth-child(3) span {
  background-color: #0082b4;
}
#tab-process ol li:nth-child(4) span {
  background-color: #0171b7;
}
#tab-process ol li:nth-child(5) span {
  background-color: #043689;
}

.tabSwitch__content h3 {
  margin-top: 4vw;
  font-size: 22px;
  font-weight: normal;
}

#recruit table {
  margin: 2em 0 4vw;
  border-collapse: collapse;
  border-top: 1px solid #ddd;
}
#recruit table tbody th {
  border-bottom: 1px solid #ddd;
  background-color: #f5f5f5;
  padding: 2em;
  vertical-align: top;
  font-weight: normal;
  text-align: left;
  width: 30%;
}
#recruit table tbody td {
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  padding: 2em;
  vertical-align: top;
}


.bottom__nav {
  justify-content: center;
  gap: 32px;
}


/* 社員の声 */
#recruit.interview main {
  background-color: transparent;
  margin-top: -124px;
}
#recruit.interview .staff_photo {
  position: relative;
  margin-bottom: 4vw;
}
#recruit.interview .staff_photo .description {
  background-color: #fff;
  padding: 2em 3em 1em 0;
  position: absolute;
  bottom: 0;
  left: 0;
}
#recruit.interview .staff_photo .label {
  line-height: 1;
  background-color: #00a8a9;
  color: #fff;
  max-width: 18em;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
#recruit.interview .staff_photo .name {
  margin-top: 16px;
}
#recruit.interview .staff_photo .name span {
  font-size: 32px;
  font-weight: bold;
  color: #00a8a9;
  margin-right: 10px;
}
#recruit.interview .accordion h3 {
  font-weight: normal;
  font-size: 14px;
}
#recruit.interview .table {
  margin: 1em 0 2vw;
  width: 100%;
}
#recruit.interview .table {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-top: 1px solid #ddd;
}
#recruit.interview .table dt {
  width: 20%;
  padding: 1em 2em;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}
#recruit.interview .table dd {
  padding: 1em 2em;
  width: 80%;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
  margin-top: 0;
}
#recruit.interview .interview {
  margin-top: 2vw;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
#recruit.interview .bottom__links {
  border-top: 1px solid #eee;
}
#recruit.interview .bottom__links h3 {
  font-size: 18px;
  font-weight: normal;
}
#recruit.interview .interview .interview__content {
  width: calc(calc(100% - 64px) / 3);
  background-color: #f5f5f5;
  position: relative;
}
#recruit.interview .interview .current {
  display: none;
}
#recruit.interview .interview .interview__content .article__inner {
  padding: 42px 25px 25px;
  transition: all .5s ease;
}
#recruit.interview .interview .interview__content a {
  text-decoration: none;
}
#recruit.interview .interview .interview__content a:hover .article__inner {
  background-color: #e5f6f6;
}
#recruit.interview .interview .interview__content .article__inner .name span {
  color: #00a8a9;
  margin-right: 8px;
}
#recruit.interview .interview .interview__content a img {
  transition: all .5s ease;
}
#recruit.interview .interview .interview__content a:hover img {
  filter: brightness(0.5);
}
#recruit.interview .interview .interview__content .status {
  position: absolute;
  left: 0;
  bottom: 7.4em;
  font-size: 14px;
  color: #fff;
  background-color: #00a8a9;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 230px;
  line-height: 1;
  white-space: nowrap;
}


#contactBtn a::after {
  content: none;
}




@media screen and (max-width: 1399px) {
  #recruit #others .others .interview__content a {
    flex-direction: column;
    max-height: fit-content;
  }
  #recruit #others .others .interview__content a img {
    max-height: fit-content;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1099px) {
  section:not(#hero),
  #recruit .inquiry .section__inner {
    padding: 8vw 0;
  }
  .section__inner {
    padding-left: 5%;
    padding-right: 5%;
  }
  #recruit .inquiry .section__inner .left,
  #recruit .inquiry .section__inner .right {
    padding: 0 5%;
  }
  #recruit .inquiry .section__inner .right {
    margin-top: 2em;
  }
  #recruit #news .section__inner,
  #recruit.home section:not(#news) .heading__group {
    align-items: flex-start;
  }
  #recruit #news .heading__group,
  #recruit #interview .heading__group,
  #recruit #recruit__info .heading__group {
    width: auto;
  }
  #recruit #news .heading__group,
  #recruit #interview .recruit__heading_lv2,
  #recruit #recruit__info .recruit__heading_lv2 {
    border: none;
    width: 100%;
  }
  #recruit #news .news {
    margin-top: 2em;
    padding-left: 0;
    max-width: 100%;
    width: 100%;
    text-align: left;
  }
  #recruit #interview .discription {
    width: 90%;
    padding: 0;
    margin-top: 2em;
  }
  #recruit #interview .view__more {
    margin-top: 2em;
    width: 10%;
    text-align: right;
  }
  #recruit #interview .interview__content {
    width: calc(calc(100% - 32px) / 2);
  }
  #recruit.interview .interview .interview__content {
    width: calc(calc(100% - 32px) / 2);
  }
  #recruit #others .others {
    flex-direction: column;
  }
  #recruit #others .others .interview__content {
    width: 100%;
  }
  #recruit #others .others .interview__content a {
    flex-direction: row;
    max-height: 210px;
  }
  #recruit #others .others .interview__content a img {
    max-height: 208px;
    width: auto;
  }
  #recruit .inquiry .section__inner {
    flex-direction: column;
    gap: 1em;
  }
  #recruit .inquiry .section__inner .left,
  #recruit .inquiry .section__inner .right {
    width: 100%;
  }
  #recruit .inquiry .section__inner br {
    display: none;
  }
  #recruit .inquiry .section__inner br.smp {
    display: block;
  }
  .inquiry__button {
    max-width: 100%;
    width: 100%;
  }
  #recruit table,
  #tab-process ol {
    margin: 2em 0 8vw;
  }
}
@media screen and (max-width: 899px) {
  #recruit #recruit__info .recruit .interview__content {
    width: 100%;
  }
  #recruit .inquiry .section__inner .right .tel a {
    cursor: pointer;
    pointer-events: all;
  }
  #recruit.interview .staff_photo .description {
  background-color: #fff;
  padding: 3em 3em 0 0;
  position: static;
  width: 100%;
}
}

@media screen and (max-width: 799px) {
  #recruit #interview .discription {
    width: 100%;
  }
  #recruit #interview .view__more {
    width: 100%;
    text-align: left;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .smp {
    display: block;
  }
  body.home .section__inner {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .recruit__heading_lv2 {
    font-size: 26px;
  }
  #recruit #interview .interview__content {
    width: 100%;
  }
  #recruit #others .others .interview__content a img {
    display: none;
  }
  .tabSwitch__header ul li a {
    font-size: 14px;
    text-align: center;
    height: 64px;
    line-height: 1.35;
  }
  #recruit table tbody th,
  #recruit table tbody td {
    display: block;
    width: 100%;
    padding: 1em;
  }
  #recruit .pagetitle {
    height: 150px;
    font-size: 25px;
  }
  .bottom__nav {
    flex-direction: column;
  }
  #tab-process ol li {
    flex-direction: column;
    gap: 1em;
    text-align: center;
  }
  #tab-process ol li:not(:first-of-type):after {
    content: none;
  }
  #recruit.interview main {
    margin-top: 2vw;
  }
  .accordion .title {
    font-size: 16px;
    line-height: 1.5;
  }
  #recruit #recruit__info a h3 {
    font-size: 24px;
  }

  .button {
    padding: 1em 4em 1em 2em;
  }
  .inquiry__button {
    padding: 1em 4em;
  }
  #recruit.interview .interview .interview__content {
    width: 100%;
  }
}



.button[href$=".docx"] {
  position: relative;
}

.button[href$=".docx"]::after {
  content: "" !important;
  background: initial !important;
  background-image: url(/img/icon/icon_word.svg) !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 1em !important;
  display: inline-block !important;
  width: 1em !important;
  height: 1em !important;
  position: absolute;
  right: 2em;
  top: 50%;
  transform: translateY(-50%);
}
.button:hover[href$=".docx"]::afte {
  background-image: url(/img/icon/icon_word.svg) !important;
}



