body {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  color: #000;
  line-height: 2;
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Sans JP', sans-serif;
}
.m-plus {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
}
a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}
a:hover {
  opacity: .8;
}
.inner {
  max-width: 980px;
  width: 95%;
  margin: 0 auto;
}
.main-color {
  color: #fff;
}

/* 見出し */
h2 {
  text-align: center;
  padding: 110px 0 90px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
h2 .en {
  display: block;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 10px;
}
h2 .jp {
  display: inline-block;
  position: relative;
  padding: 0 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 20px;
  letter-spacing: 0.2em;
}
h2 .jp::before,
h2 .jp::after {
  content: "";
  position: absolute;
  background: #000;
  width: 26px;
  height: 1px;
  top: 50%;
}
h2 .jp::before {
  left: 0;
}
h2 .jp::after {
  right: 0;
}
@media screen and (max-width: 768px) {
  h2 {
    padding: 60px 0 40px;
  }
}

/* ボタン */
.btnList {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.btn {
  width: calc(33.3% - 26px);
  min-height: 60px;
  font-size: 18px;
}
.btn:not(:nth-of-type(3n)) {
  margin-right: 39px;
}
.btn:nth-of-type(n+4) {
  margin-top: 30px;
}
.btn a {
  height: 100%;
  min-height: 70px;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  padding: 13px 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  border-width: 2px;
  border-style: solid;
  border-radius: 10px;
  background-color: #fff;
}
.btn a svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  width: 12px;
}
@media screen and (max-width: 768px) {
  .btn,
  .btn:nth-of-type(n+4) {
    width: 100%;
    margin-top: 0;
    font-size: 16px;
  }
  .btn:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
  .btn:not(:last-child) {
    margin-bottom: 20px;
  }
}

/* header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
}
.header_item {
  padding: 45px 2.5%;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: flex-end;
}
.header .gnav {
  margin-right: 20px;
}
.header li {
  display: inline-block;
}
.header li a {
  margin-right: 20px;
  display: block;
  text-shadow: 0 0 3px rgba(255,255,255,.6);
}
.header a[href*="/job/-/info/list"] {
  border-radius: 10px;
  width: 180px;
  padding: 13px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  flex-shrink: 0;
  text-align: center;
  display: block;
}
.header .pc_none {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header .pc_none {
    display: block;
  }
  .header .sp_none {
    display: none;
  }
  .header {
    height: 50px;
    width: 100%;
  }
  .header_item {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    padding: 0;
    width: 100%;
    height: 100%;
    transition: all .3s;
    display: block;
    overflow-y: auto;
  }
  .header_item:not(.open) {
    opacity: 0;
    visibility: hidden;
  }
  .header .gnav {
    background: #fff;
    width: 100%;
    height: 100%;
  }
  .header ul {
    background: #fff;
    padding: 50px 2.5% 30px;
  }
  .header li {
    display: block;
    position: relative;
    text-align: center;
  }
  .header li:first-of-type,
  .header li:last-of-type {
    border-top: none;
  }
  .header li a {
    margin-right: 0;
    padding: 20px 2.5%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-shadow: none;
  }
  .header li .gnav_sp_border {
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
  }
  .header a[href*="/job/-/info/list"] {
    width: 100%;
    border-radius: 150px;
    margin: 20px auto 0;
    max-width: 380px;
    padding: 20px 2.5%;
  }
  .sp_gnav_btn {
    width: 46px;
    height: 46px;
    margin-left: auto;
    margin-right: 0;
    position: fixed;
    top: 4px;
    right: 4px;
    z-index: 999;
    border-radius: 4px;
  }
  .sp_gnav_btn span {
    position: absolute;
    width: 60%;
    height: 2px;
    left: 20%;
    background: #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
  }
  .sp_gnav_btn span:nth-of-type(1) {
    top: calc(30% - 1px);
  }
  .sp_gnav_btn span:nth-of-type(2) {
    top: calc(50% - 1px);
  }
  .sp_gnav_btn span:nth-of-type(3) {
    top: calc(70% - 1px);
  }
  .sp_gnav_open span:nth-of-type(1) {
    top: 50%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .sp_gnav_open span:nth-of-type(2) {
    opacity: 0;
  }
  .sp_gnav_open span:nth-of-type(3) {
    top: 50%;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

/* MV */
.mv {
  position: relative;
}
.mv_bg {
  position: absolute;
  width: 25%;
  height: 30%;
  bottom: 0;
  left: 0;
  opacity: .15;
}
.mv_img {
  width: calc(100% - 260px);
  min-width: 80vw;
  margin-left: auto;
  right: 0;
  z-index: 2;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 0 100px;
}
.mv_img img {
  width: 100%;
}
.mv h1 {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 5%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 40px;
  line-height: 1.7;
  text-shadow: 0 0 3px rgba(255,255,255,.6);
  letter-spacing: 0.2em;
}
.mv h1 .en {
  display: block;
  font-size: 20px;
  margin-top: 26px;
}
.mv .scroll {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 36px;
  padding-bottom: 90px;
  animation: scroll 3s infinite;
}
@keyframes scroll {
  30% {
    margin-bottom: 0;
  }
  40% {
    margin-bottom: -14px;
  }
  50% {
    margin-bottom: 0;
  }
  60% {
    margin-bottom: -14px;
  }
  70% {
    margin-bottom: 0;
  }
}
.mv .scroll::after {
  content: "";
  position: absolute;
  background: #4d4d4d;
  width: 1px;
  height: 70px;
  bottom: 0;
  right: 50%;
}
.mv .scroll span {
  color: #4d4d4d;
  display: block;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  font-size: 15px;
}
@media screen and (max-width: 1024px) {
  .mv .scroll {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .mv_img {
    width: 86%;
    border-radius: 0 0 0 60px;
  }
  .mv h1 {
    left: 2.5%;
    font-size: 6vw;
  }
  .mv h1 .en {
    margin-top: 4%;
    font-size: 4vw;
  }
}



/* お仕事検索 */
.job-search {
  position: relative;
  padding-bottom: 140px;
}
.job-search h2 {
  padding-bottom: 44px;
}
.job-search_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  opacity: .15;
}
.job-search .inner {
  position: relative;
  z-index: 2;
}
.job-search_content {
  padding-top: 46px;
}
.job-search h3 {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  color: #2d161b;
  font-size: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.06em;
}
.job-search h3 img {
  width: 34px;
  height: 34px;
  display: block;
  margin-right: 14px;
}
@media screen and (max-width: 768px) {
  .job-search {
    padding-bottom: 60px;
  }
  .job-search h2 {
    padding-bottom: 0;
  }
  .job-search_content {
    padding-top: 40px;
  }
}

/* 下のコンテンツ */
.bottom_content {
  position: relative;
}
.bottom_content_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .8;
}
.bottom_content .content_inner {
  position: relative;
  z-index: 2;
}
.bottom_content h2 {
  color: #fff;
}
.bottom_content h2 .jp::before,
.bottom_content h2 .jp::after {
  background: #fff;
}

/* 会社概要 */
.information dl {
  max-width: 566px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  padding-left: 36px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.information dl:not(:last-child) {
  border-bottom: 1px dashed #fff;
  padding-bottom: 26px;
  margin-bottom: 26px;
}
.information dt,
.information dd {
  color: #fff;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .information dl {
    display: block;
    padding: 0 16px;
  }
  .information dl:not(:last-child) {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .information dt {
    font-size: 20px;
  }
  .information dt,
  .information dd {
    width: 100%;
  }
}

/* よくある質問 */
.qa_item dl:not(:last-of-type) {
  margin-bottom: 24px;
}
.qa_item dt,
.qa_item dd {
  background: #fff;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: 0.18em;
}
.qa_item dt {
  border-radius: 10px 10px 0 0;
  border-style: dashed;
  border-width: 1px;
  border-top: none;
  border-left: none;
  border-right: none;
  font-size: 20px;
  line-height: 1.5;
}
.qa_item dd {
  border-radius: 0 0 10px 10px;
}
.qa_item dt .qa_icon,
.qa_item dd .qa_icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  margin-right: 24px;
}
.qa_item dt p,
.qa_item dd p {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .qa_item dt {
    border-radius: 10px 10px 0 0;
    border-style: dashed;
    border-width: 1px;
    border-top: none;
    border-left: none;
    border-right: none;
    font-size: 20px;
  }
  .qa_item dd {
    border-radius: 0 0 10px 10px;
  }
  .qa_item dt .qa_icon,
  .qa_item dd .qa_icon {
    margin-right: 10px;
  }
}


/* 働くメリット */
.merit_item {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}
.merit_item li {
  background: #fff;
  padding: 26px 36px 36px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  border-radius: 10px;
  flex:1 1 0%
}
.merit_item li:not(:last-child) {
  margin-right: 30px;
}
.merit_item .ttl {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  font-size: 20px;
  background: #fff;
  border-style: dashed;
  border-width: 1px;
  border-top: none;
  border-left: none;
  border-right: none;
  padding-bottom: 22px;
  margin-bottom: 24px;
}
.merit_item .ttl h3 {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  line-height: 1.75;
  letter-spacing: 0.06em;
}
.merit_item .icon {
  width: 50px;
  font-size: 12px;
  text-align: center;
  flex-shrink: 0;
  margin-right: 14px;
}
.merit_item .icon .num {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  font-size: 22px;
}
.merit_item p {
  letter-spacing: 0.18em;
}
@media screen and (max-width: 1024px) {
  .merit_item li {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .merit_item {
    display: block;
  }
  .merit_item li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .merit_item .ttl {
    padding-bottom: 16px;
    margin-bottom: 20px;
  }
}

/* メッセージ */
.message_item {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  width: 90%;
}
.message_item h3,
.message_item p {
  opacity: .8;
  color: #fff;
}
.message_item h3 {
  font-size: 24px;
  padding-bottom: 50px;
  line-height: 1.5;
  letter-spacing: 0.38em;
}
.message_item p {
  letter-spacing: 0.18em;
}
@media screen and (max-width: 768px) {
  .message_item {
    text-align: left;
  }
  .message_item h3 {
    padding-bottom: 30px;
  }
}

/* ページトップ */
.pagetop {
  height: 120px;
  position: relative;
}
.pagetop_btn {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin-left: auto;
  margin-right: 0;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 89;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.pagetop_btn_hide {
  opacity: 0;
  visibility: hidden;
}
.pagetop_btn_relative {
  position: absolute;
}
.pagetop_btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .pagetop {
    height: 80px;
  }
  .pagetop_btn {
    bottom: 20px;
    right: 20px;
  }
}

/* footer */
.footer {
  padding: 20px 0;
}
.footer .inner {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  line-height: 1.5;
}
.footer ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 20px;
}
.footer li:not(:last-child) a {
  margin-right: 20px;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid #fff;
}
.footer li a {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.footer li a span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .footer .inner {
    display: block;
    text-align: center;
  }
  .footer ul {
    margin-bottom: 10px;
    margin-right: 0;
  }
  .footer li {
    width: 50%;
  }
  .footer li a,
  .footer li:not(:last-child) a {
    margin-right: 0;
    padding: 0 10px;
  }
}

/* アイコンの呼び出し元 */
.svg-symbol {
  display: none;
}
