body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}
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;
}
.content_inner {
  padding-top: 60px;
}
.content_inner:last-of-type {
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .content_inner {
    padding-top: 40px;
  }
  .content_inner:last-of-type {
    padding-bottom: 60px;
  }
}
.main-color {
  color: #fff;
}

/* 見出し */
h2 {
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  overflow: hidden;
  margin-bottom: 30px;
}
h2 .en {
  display: block;
  font-size: 20px;
}
h2 .jp {
  display: inline-block;
  position: relative;
}
h2 .jp::before,
h2 .jp::after {
  content: "";
  position: absolute;
  background: #ccc;
  width: 100vw;
  height: 1px;
  top: 50%;
}
h2 .jp::before {
  right: calc(100% + 20px);
}
h2 .jp::after {
  left: calc(100% + 20px);
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
  h2 svg {
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
  }
}

/* ボタン */
.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% - 14px);
  font-size: 20px;
}
.btn:not(:nth-of-type(3n)) {
  margin-right: 20px;
}
.btn:nth-of-type(n+4) {
  margin-top: 20px;
}
.btn a {
  height: 100%;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  border-radius: 8px;
  min-height: 60px;
  padding: 14px 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url('../img/btn_arrow.png');
  background-position: center right 20px;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0px 3px 6px rgba(0,0,0,.16);
  box-shadow: 0px 3px 6px rgba(0,0,0,.16);
}
@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_item {
  padding: 20px 2.5%;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
}
.header li {
  display: inline-block;
}
.header li a {
  margin-right: 20px;
  display: block;
  font-weight: 700;
}
.header a[href*="/job/-/info/list"] {
  background: #fff;
  color: #333;
  display: block;
  padding: 20px;
  border-radius: 8px;
  flex-shrink: 0;
  width: 204px;
  text-align: center;
  font-weight: 700;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.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: rgba(0,0,0,.3);
    width: 100%;
    height: 100%;
  }
  .header li {
    display: block;
    position: relative;
    border-bottom: 1px solid #fff;
  }
  .header li:last-of-type {
    border-bottom: none;
  }
  .header li a {
    margin-right: 0;
    padding: 20px 2.5%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .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: 0;
    text-align: left;
    padding: 20px 2.5%;
  }
  .sp_gnav_btn {
    width: 50px;
    height: 50px;
    margin-left: auto;
    margin-right: 0;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
  }
  .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;
  overflow: hidden;
}
.mv_bg {
  position: absolute;
  width: 100%;
  height: 70%;
  top: 0;
  left: 0;
}
.mv_img {
  width: 95%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.mv_img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(81,81,81,.16);
  top: 0;
  left: 0;
}
.mv_img img {
  width: 100%;
}
.mv_title {
  position: absolute;
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
}
.mv_title h1 {
  display: inline-block;
  background-color: rgba(81,81,81,.16);
  border: 2px solid #fff;
  padding: 2% 4%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 3vw;
  max-width: 95%;
  margin: 0 auto;
  font-weight: 700;
}
.mv_title h1　span {
  display: inline-block;
}
.mv_title h1 .company-name {
  display: block;
  font-size: 3.8vw;
}
@media screen and (max-width: 768px) {
  .mv_title h1 {
    font-size: 5vw;
  }
  .mv_title h1 .company-name {
    font-size: 6vw;
  }
}

/* 下のコンテンツ */
.bottom_content {
  background: #f4f4f4;
}
.bottom_content .textarea {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0,0,0,.16);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


/* 会社概要 */
.information_item {
  padding: 14px 34px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.information_item dt,
.information_item dd {
  padding: 16px 0;
}
.information_item dt:not(:last-of-type),
.information_item dd:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
}
.information_item dt {
  width: 142px;
  padding: 16px 20px;
  flex-shrink: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  font-weight: 700;
}
.information_item dd {
  flex-grow: 1;
  width: calc(100% - 142px);
}
@media screen and (max-width: 768px) {
  .information_item {
    padding: 20px;
    display: block;
  }
  .information_item dt,
  .information_item dd {
    width: 100%;
  }
  .information_item dt:not(:last-of-type),
  .information_item dd:not(:last-of-type) {
    border-bottom: none;
  }
  .information_item dt {
    padding: 0;
  }
  .information_item dt:not(:first-of-type) {
    border-top: 1px solid #ccc;
    padding-top: 20px;
  }
  .information_item dd {
    padding: 10px 0 20px;
  }
  .information_item dd:last-of-type {
    padding-bottom: 0;
  }
}

/* よくある質問 */
.qa_item dl {
  padding: 20px 36px;
  position: relative;
}
.qa_item dl:not(:last-of-type) {
  margin-bottom: 30px;
}
.qa_item dt {
  padding-bottom: 18px;
  border-bottom: 1px solid #ccc;
  font-size: 24px;
  font-weight: 700;
  padding-left: 42px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.qa_item dt .main-font-color {
  font-size: 36px;
  position: absolute;
  top: 3px;
  left: 36px;
}
.qa_item dd {
  padding-top: 18px;
}
@media screen and (max-width: 768px) {
  .qa_item dl {
    padding: 20px;
  }
  .qa_item dt {
    font-size: 20px;
  }
  .qa_item dt .main-font-color {
    font-size: 34px;
    left: 20px;
    top: 0;
  }
}


/* 働くメリット */
.merit_item {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
.merit_item li {
  padding: 48px 16px 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  flex: 1 1 0%;
}
.merit_item li:not(:last-child) {
  margin-right: 30px;
}
.merit_item .main-font-color {
  font-weight: 700;
  font-size: 60px;
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 0;
}
.merit_item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .merit_item {
    display: block;
  }
  .merit_item li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
/* メッセージ */
.message_item {
  text-align: center;
  padding: 50px 58px;
}
.message_item h3,
.message_item p {
  max-width: 750px;
  margin: 0 auto;
}
.message_item h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .message_item {
    padding: 20px;
    text-align: left;
  }
  .message_item h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

/* ページトップ */
.pagetop {
  height: 120px;
  position: relative;
}
.pagetop_btn {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  margin-left: auto;
  margin-right: 0;
  position: fixed;
  bottom: 30px;
  right: 30px;
  -webkit-box-shadow: 0px 3px 6px rgba(0,0,0,.16);
  box-shadow: 0px 3px 6px rgba(0,0,0,.16);
  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: 100px;
  }
  .pagetop_btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

/* footer */
.footer {
  padding: 36px 0;
  text-align: center;
}
.footer ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.footer li:not(:last-child) a {
  margin-right: 20px;
  padding-right: 20px;
  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 li {
    width: 50%;
  }
  .footer li a,
  .footer li:not(:last-child) a {
    margin-right: 0;
    padding: 0 10px;
  }
}
