@charset "UTF-8";
/* config.scss 
-------------------------------------------------------*/
@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes arrowAnime {
  from {
    opacity: 0;
    width: 0;
  }
  to {
    opacity: 1;
    width: 16.4rem;
  }
}

@keyframes arrowAnime {
  from {
    opacity: 0;
    width: 0;
  }
  to {
    opacity: 1;
    width: 16.4rem;
  }
}

@-webkit-keyframes arrowAnimeSp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes arrowAnimeSp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes arrowMove {
  0% {
    -webkit-transform: rotate(90deg) translate(0, 0);
            transform: rotate(90deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(90deg) translate(10px, 0);
            transform: rotate(90deg) translate(10px, 0);
  }
  40% {
    -webkit-transform: rotate(90deg) translate(0, 0);
            transform: rotate(90deg) translate(0, 0);
  }
}

@keyframes arrowMove {
  0% {
    -webkit-transform: rotate(90deg) translate(0, 0);
            transform: rotate(90deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(90deg) translate(10px, 0);
            transform: rotate(90deg) translate(10px, 0);
  }
  40% {
    -webkit-transform: rotate(90deg) translate(0, 0);
            transform: rotate(90deg) translate(0, 0);
  }
}

/* /_config.scss
-------------------------------------------------------*/
/* _font.scss 
-------------------------------------------------------*/
/* /_font.scss
-------------------------------------------------------*/
/* _media.scss 
-------------------------------------------------------*/
.brSp,
.spOnly,
.imgSp,
.brTab,
.tabOnly,
.imgTab {
  display: none !important;
}

@media screen and (max-width: 1420px) and (min-width: 1000px), print {
  .brTab {
    display: none !important;
  }
  .brTab {
    display: inline !important;
  }
  .tabOnly {
    display: block !important;
  }
  .tabNone {
    display: none !important;
  }
  .imgTab {
    display: none !important;
  }
  .imgTab {
    display: inline !important;
  }
}

@media screen and (max-width: 1000px) {
  .brPc {
    display: none !important;
  }
  .brSp {
    display: inline !important;
  }
  .pcOnly {
    display: none !important;
  }
  .spOnly {
    display: block !important;
  }
  .spNone {
    display: none !important;
  }
  .imgPc {
    display: none !important;
  }
  .imgSp {
    display: inline !important;
  }
}

/* /_media.scss
-------------------------------------------------------*/
/* _reset.scss 
-------------------------------------------------------*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form,
fieldset, input, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
}

html {
  overflow-y: scroll;
}

body {
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

fieldset, img {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

*, *::after, *::before {
  max-height: 999999px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

figure {
  line-height: 0;
}

.img_inherit {
  max-width: inherit;
  max-height: inherit;
}

main {
  display: block;
}

a {
  text-decoration: none;
}

a:focus {
  outline: none;
}

table {
  font-size: inherit;
}

/* /_reset.scss
-------------------------------------------------------*/
/* _base.scss 
-------------------------------------------------------*/
html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow-y: scroll;
}

@media screen and (max-width: 1420px) and (min-width: 1000px), print {
  html {
    font-size: 52%;
  }
}

@media screen and (max-width: 360px) {
  html {
    font-size: 52%;
  }
}

html.tabOn {
  font-size: 50%;
}

@media screen and (max-width: 1000px) {
  html.tabOn {
    font-size: 62.5%;
  }
}

body {
  /* min-width: 1240px; */
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #464646;
  width: 100%;
  font-size: 1.6rem;
}

@media screen and (max-width: 1000px) {
  body {
    min-width: 0;
  }
}

/* /_base.scss
-------------------------------------------------------*/
/* _unique.scss
-------------------------------------------------------*/
/* header */
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  width: 50%;
  padding: 1rem 2rem 2.7rem 3rem;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.header_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.header_top_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header_top_item {
  margin-left: 1.7rem;
}

.header_top_item a {
  font-size: 1rem;
  color: #FFF;
  display: block;
  padding: .7rem 1.4rem .8rem 1.4rem;
  background: rgba(255, 255, 255, 0.38);
  text-align: center;
  position: relative;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.header_top_item a::before {
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 100% 50%);
  width: 1.5rem;
  height: 100%;
  background: inherit;
  position: absolute;
  left: -1.47rem;
  top: 0;
}

.header_top_item a::after {
  content: "";
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 1.5rem;
  height: 100%;
  background: inherit;
  position: absolute;
  right: -1.48rem;
  top: 0;
}

.header_top_item a:hover {
  background: none;
}

.header_top_item:nth-child(1) {
  margin-left: 0;
}

.header_top_item:nth-child(1) a::before {
  display: none;
}

.header_top_item:last-child {
  margin-right: 2rem;
}

.header_top_item:last-child a::after {
  -webkit-clip-path: none;
          clip-path: none;
}

.header_top_item:last-child a::before {
  left: -1.48rem;
}

.header_top_btn {
  margin: .5rem 0;
}

.header_top_btn a {
  display: block;
  border: #FFF solid 0.1rem;
  font-size: 1.3rem;
  color: #FFF;
  padding: .4rem 1.2rem .5rem;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.header_top_btn a:hover {
  background: #00A1B6;
}

.header_top_btn span {
  display: inline-block;
}

.header_top_btn span::before {
  content: "";
  width: 1.2rem;
  height: 1.1rem;
  background: url("/recruit/company/office/process/assets/img/icon_home.svg") center/cover;
  display: inline-block;
  margin-right: .5rem;
}

@media screen and (max-width: 1800px) and (min-width: 1421px), print {
  .header_top_item {
    margin-left: 1.4rem;
  }
  .header_top_item a {
    padding: .5rem .8rem .6rem;
  }
  .header_top_item a::before {
    content: "";
    width: 1.2rem;
    left: -1.17rem;
  }
  .header_top_item a::after {
    width: 1.2rem;
    right: -1.18rem;
  }
  .header_top_item:last-child {
    margin-right: 1.5rem;
  }
  .header_top_item:last-child a::before {
    left: -1.18rem;
  }
  .header_top_btn a {
    font-size: 1rem;
    padding: .4rem .8rem .5rem;
  }
  .header_top_btn span {
    display: inline-block;
  }
  .header_top_btn span::before {
    content: "";
    width: 1.1rem;
    height: 1rem;
  }
}

@media only screen and (max-width: 1550px) {
  .header_top_list {
    display: none;
  }
}

.header_bottom {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.2rem;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 1000px), print {
  .header_bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.header_bottom_sub {
  color: #FFF;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 1000px), print {
  .header_bottom_sub {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.header_bottom_sub_ja {
  font-size: 1rem;
  margin: 0 2rem 0 0;
  letter-spacing: .1rem;
}

.header_bottom_sub_en {
  font-size: 3.6rem;
  font-family: "Josefin Sans", sans-serif;
  margin-bottom: -1rem;
}

.header_bottom_sub_arrow {
  display: block;
  width: 7.3rem;
  height: 1px;
  background: #FFF;
  margin: 0 2rem 0 2rem;
  position: relative;
}

.header_bottom_sub_arrow::after {
  content: "";
  display: block;
  border-top: 1.5px solid transparent;
  border-bottom: 1.5px solid transparent;
  border-left: 4px solid #FFF;
  position: absolute;
  right: 0;
  top: -1px;
}

.header_bottom_tit {
  text-align: center;
  width: 29.7rem;
}

@media screen and (max-width: 1420px) and (min-width: 1000px), print {
  .header_bottom_tit {
    width: 40%;
  }
}

@media screen and (max-width: 1000px) {
  .header {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: .9rem .9rem .9rem 2.3rem;
    background: rgba(0, 0, 0, 0.76);
  }
  .header_top_btn {
    margin: 0;
  }
  .header_top_btn a {
    padding: 0;
    border: none;
    width: 6.3rem;
  }
  .header_top_btn a span::before {
    display: none;
  }
  .header_bottom {
    margin-top: -.6rem;
    width: calc(100% - 10.3rem);
    opacity: 1;
    pointer-events: all;
  }
}

/* section1 */
.sectFirst {
  background: url("/recruit/company/office/process/assets/img/bg_first_pc.jpg") center right/cover;
}

.sectFirst_inner {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 4rem;
  margin-top: 2rem;
}

@media screen and (min-width: 1000px), print {
  .sectFirst_inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.sectFirst_sub {
  color: #FFF;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 1000px), print {
  .sectFirst_sub {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.sectFirst_sub_ja {
  font-size: 2rem;
  margin: 0 5rem 0 0;
  letter-spacing: .2rem;
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.sectFirst_sub_en {
  font-size: 8rem;
  font-family: "Josefin Sans", sans-serif;
  margin-bottom: -2rem;
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  opacity: 0;
}

.sectFirst_sub_arrow {
  display: block;
  width: 0;
  height: 1px;
  background: #FFF;
  margin: 0 2.5rem 0 5rem;
  position: relative;
  -webkit-animation-name: arrowAnime;
          animation-name: arrowAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  opacity: 0;
}

.sectFirst_sub_arrow::after {
  content: "";
  display: block;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 10px solid #FFF;
  position: absolute;
  right: 0;
  top: -2.5px;
}

.sectFirst_sub_tit {
  text-align: center;
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  opacity: 0;
}

@media screen and (max-width: 1420px) and (min-width: 1000px), print {
  .sectFirst_sub_tit {
    width: 40%;
  }
}

@media screen and (max-width: 1000px) {
  .sectFirst {
    background: url("/recruit/company/office/process/assets/img/bg_first_sp.jpg") bottom center/cover;
    padding: 12rem 3rem 12rem;
    position: relative;
  }
  .sectFirst_inner {
    padding: 0;
    margin: 0;
  }
  .sectFirst_sub {
    text-align: center;
  }
  .sectFirst_sub_ja {
    font-size: 1.6rem;
    margin: 0 0 2rem 0;
  }
  .sectFirst_sub_en {
    font-size: 5rem;
    margin-bottom: 0;
  }
  .sectFirst_sub_arrow {
    width: .1rem;
    height: 5.2rem;
    margin: 0 auto 2rem;
    -webkit-animation-name: arrowAnimeSp;
            animation-name: arrowAnimeSp;
  }
  .sectFirst_sub_arrow::after {
    content: "";
    border-right: 3.5px solid transparent;
    border-left: 3.5px solid transparent;
    border-top: 10px solid #FFF;
    border-bottom: none;
    width: 7px;
    height: 10px;
    top: auto;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    -webkit-transform: translateX(-3px);
            transform: translateX(-3px);
  }
  .sectFirst_btn a {
    position: absolute;
    right: 1.3rem;
    top: 1.3rem;
    display: block;
    border: #FFF solid 0.1rem;
    font-size: 1.3rem;
    color: #FFF;
    padding: 0.4rem 1.2rem 0.5rem;
  }
  .sectFirst_btn span {
    display: inline-block;
  }
  .sectFirst_btn span::before {
    content: "";
    width: 1.2rem;
    height: 1.1rem;
    background: url("/recruit/company/office/process/assets/img/icon_home.svg") center/cover;
    display: inline-block;
    margin-right: 0.5rem;
  }
}

/* section_cmn */
.cmn_contentsHalf {
  height: 100%;
}

@media screen and (min-width: 1000px), print {
  .cmn_contentsHalf {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.cmn_contentsHalf_left {
  width: 50%;
}

.cmn_contentsHalf_left_inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4rem;
  height: 100%;
  margin-top: 4rem;
}

@media screen and (min-width: 1000px), print {
  .cmn_contentsHalf_left_inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.cmn_contentsHalf_left_box {
  background: rgba(255, 255, 255, 0.8);
  max-width: 83.4rem;
  margin: 0 auto;
  padding: 4rem 7rem;
}

.cmn_contentsHalf_left_txt {
  line-height: 2;
}

.cmn_contentsHalf_left_titBox {
  text-align: center;
  color: #FFF;
  margin-bottom: 6rem;
}

.cmn_contentsHalf_left_titBox_sub {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .1rem;
}

.cmn_contentsHalf_left_titBox_num {
  font-size: 4.6rem;
  letter-spacing: .2rem;
  margin: -1rem 0 1rem;
}

.cmn_contentsHalf_left_titBox_main {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: .4rem;
}

.cmn_contentsHalf_right {
  width: 50%;
  min-width: 62rem;
  background: #ECECEC;
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.cmn_contentsHalf_right_inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4rem;
  height: 100%;
}

@media screen and (min-width: 1000px), print {
  .cmn_contentsHalf_right_inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.cmn_contentsHalf_right_img {
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  opacity: 0;
  /* visibility: none;
            height: 0; */
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  padding: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cmn_contentsHalf_main {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.cmn_contentsHalf_main_img {
  max-width: 437px;
  width: 54.62%;
  position: relative;
}

.cmn_contentsHalf_main .cmn_contentsHalf_left_box {
  max-width: 560px;
  width: 70%;
  position: relative;
  z-index: 2;
  margin: -12rem 0 0 0;
}

@media screen and (max-width: 1000px) {
  .cmn_contentsHalf_left {
    width: 100%;
  }
  .cmn_contentsHalf_left_inner {
    padding: 0;
    margin-top: 0;
  }
  .cmn_contentsHalf_left_box {
    background: #00A1B6;
    max-width: 100%;
    padding: 2rem 2.3rem;
    color: #FFF;
  }
  .cmn_contentsHalf_left_titBox {
    text-align: left;
    color: #00A1B6;
    margin-bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    background: #FFF;
    z-index: 10;
  }
  .cmn_contentsHalf_left_titBox_box {
    text-align: center;
    padding: 1rem 2.3rem;
  }
  .cmn_contentsHalf_left_titBox_sub {
    font-size: 1rem;
    letter-spacing: 0;
  }
  .cmn_contentsHalf_left_titBox_num {
    font-size: 3.4rem;
    letter-spacing: .1rem;
    margin: -1rem 0 0;
  }
  .cmn_contentsHalf_left_titBox_main {
    font-size: 2.4rem;
    letter-spacing: .1rem;
  }
  .cmn_contentsHalf_right {
    width: 100%;
    opacity: 1;
  }
  .cmn_contentsHalf_right_img {
    background: #ECECEC;
    padding: 2.3rem 3rem;
    opacity: 1;
    height: auto;
    visibility: inherit;
    position: static;
  }
  .cmn_contentsHalf_main {
    max-width: 100%;
  }
  .cmn_contentsHalf_main_img {
    max-width: 100%;
    width: 100%;
  }
  .cmn_contentsHalf_main .cmn_contentsHalf_left_box {
    max-width: 100%;
    width: 100%;
    margin-top: 0;
  }
}

/* sectMain_01 */
.sectMain_01 .cmn_contentsHalf_left {
  background: url("/recruit/company/office/process/assets/img/bg_sect_01.jpg") center/cover;
}

.sectMain_01 .cmn_contentsHalf_left_box {
  background: rgba(255, 255, 255, 0.8);
}

.sectMain_01_tit {
  color: #00A1B6;
  font-size: 2.1rem;
  text-align: center;
  font-weight: 500;
  margin-bottom: 3rem;
}

.sectMain_01_tit::before {
  content: "";
  display: inline-block;
  vertical-align: -.3rem;
  width: 2.226rem;
  height: 2.226rem;
  background: url("/recruit/company/office/process/assets/img/icon_help.svg") center/cover;
  margin-right: .8rem;
}

@media screen and (max-width: 1000px) {
  .sectMain_01 {
    background: #F9F9F9;
  }
  .sectMain_01 .cmn_contentsHalf_left {
    background: none;
    padding: 4rem 2.3rem;
  }
  .sectMain_01 .cmn_contentsHalf_left_box {
    -webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.16);
    margin-top: 3rem;
    padding: 4.8rem 2rem;
    color: #464646;
  }
  .sectMain_01_tit {
    margin-bottom: 2rem;
  }
}

/* sectMain_02 */
.sectMain_02 .cmn_contentsHalf_left {
  background: url("/recruit/company/office/process/assets/img/bg_sect_02.jpg") center/cover;
}

.sectMain_02 .cmn_contentsHalf_left_box {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

@media screen and (max-width: 1000px) {
  .sectMain_02 .cmn_contentsHalf_left {
    background: none;
  }
  .sectMain_02 .cmn_contentsHalf_left_box {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

/* sectMain_03 */
.sectMain_03 .cmn_contentsHalf_left {
  background: url("/recruit/company/office/process/assets/img/bg_sect_03.jpg") center/cover;
}

.sectMain_03 .cmn_contentsHalf_left_box {
  margin-left: auto;
}

@media screen and (max-width: 1000px) {
  .sectMain_03 .cmn_contentsHalf_left {
    background: none;
  }
}

/* sectMain_04 */
.sectMain_04 .cmn_contentsHalf_left {
  background: url("/recruit/company/office/process/assets/img/bg_sect_04.jpg") center/cover;
}

.sectMain_04 .cmn_contentsHalf_main_img {
  margin-left: auto;
}

@media screen and (max-width: 1000px) {
  .sectMain_04 .cmn_contentsHalf_left {
    background: none;
  }
}

/* sectMain_05 */
.sectMain_05 .cmn_contentsHalf_left {
  background: url("/recruit/company/office/process/assets/img/bg_sect_05.jpg") center/cover;
}

.sectMain_05 .cmn_contentsHalf_left_box {
  margin-left: auto;
  margin-top: -10rem;
}

@media screen and (max-width: 1000px) {
  .sectMain_05 .cmn_contentsHalf_left {
    background: none;
  }
  .sectMain_05 .cmn_contentsHalf_left_box {
    margin-top: 0;
  }
}

/* sectMain_06 */
.sectMain_06 .cmn_contentsHalf_left {
  background: url("/recruit/company/office/process/assets/img/bg_sect_06.jpg") center/cover;
}

.sectMain_06 .cmn_contentsHalf_main_img {
  margin-left: auto;
}

.sectMain_06 .cmn_contentsHalf_left_box {
  margin-top: -7rem;
}

@media screen and (max-width: 1000px) {
  .sectMain_06 .cmn_contentsHalf_left {
    background: none;
  }
  .sectMain_06 .cmn_contentsHalf_left_box {
    margin-top: 0;
  }
}

/* sectEnd */
.sectEnd {
  background: url("/recruit/company/office/process/assets/img/bg_end.jpg") center/cover;
  position: relative;
  z-index: 2;
}

.sectEnd_inner {
  background: rgba(26, 27, 79, 0.8);
  color: #FFF;
  text-align: center;
  max-width: 1252px;
  width: calc(100% - 8rem);
  margin: 0 auto;
  padding: 7rem 4rem 2.5rem;
  position: relative;
  z-index: 2;
}

.sectEnd_tit {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: .2rem;
}

.sectEnd_txt {
  font-size: 2rem;
  margin-top: 4rem;
  line-height: 2.1;
  letter-spacing: .2rem;
  font-weight: 500;
}

.sectEnd_txt sup {
  font-size: 1.2rem;
}

.sectEnd_txtSub {
  font-size: 1.2rem;
  padding-left: 1.2em;
  position: relative;
  display: inline-block;
  margin-top: 12rem;
  line-height: 1.6;
  letter-spacing: .1rem;
}

.sectEnd_txtSub::before {
  position: absolute;
  content: "※";
  left: 0;
  top: 0;
  font-weight: 400;
}

@media screen and (max-width: 1000px) {
  .sectEnd {
    padding: 5.5rem 2.3rem;
  }
  .sectEnd_inner {
    text-align: left;
    width: 100%;
    padding: 3rem 2.3rem 4rem;
  }
  .sectEnd_tit {
    letter-spacing: .5rem;
    text-align: center;
  }
  .sectEnd_txt {
    font-size: 1.6rem;
    margin-top: 2rem;
  }
  .sectEnd_txt sup {
    font-size: 1rem;
  }
  .sectEnd_txtSub {
    font-size: 1rem;
    margin-top: 2rem;
  }
}

/* navigation */
#fp-nav.right {
  right: .5rem;
}

#fp-nav ul li a span, .fp-slidesNav ul li a span {
  background: #01448C;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.fp-viewing-section0 #fp-nav ul li a span, .fp-viewing-section0 .fp-slidesNav ul li a span,
.fp-viewing-section7 #fp-nav ul li a span,
.fp-viewing-section7 .fp-slidesNav ul li a span {
  background: #FFF;
}

/* fixedArrow */
.fixedArrow {
  position: fixed;
  bottom: 5rem;
  left: 4rem;
  right: 0;
  margin: auto;
  z-index: 12;
  width: 8.6rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  pointer-events: none;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
  -webkit-animation: arrowMove 2s infinite;
          animation: arrowMove 2s infinite;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.fixedArrow_inner {
  color: #00A1B6;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.2rem;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.fixedArrow span {
  display: block;
  position: relative;
  margin: .5rem 0 0;
}

.fixedArrow span::before {
  content: "";
  width: 100%;
  height: .2rem;
  background: #00A1B6;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

.fixedArrow span::after {
  content: "";
  width: 1.9rem;
  height: .2rem;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transform-origin: 1.9rem 0;
          transform-origin: 1.9rem 0;
  background: #00A1B6;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all .4s ease-out;
  transition: all .4s ease-out;
}

/* アニメーションなど */
main {
  position: relative;
  z-index: 10;
}

.fp-viewing-section0 .fixedArrow_inner {
  color: #FFF;
}

.fp-viewing-section0 .fixedArrow span::before, .fp-viewing-section0 .fixedArrow span::after {
  background: #FFF;
}

.fp-viewing-section1 .cmn_contentsHalf_right_img__01 {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.fp-viewing-section1 .cmn_contentsHalf_right {
  opacity: 1;
}

.fp-viewing-section1 .header_top_item__01 a {
  background: #00A1B6;
}

.fp-viewing-section2 .cmn_contentsHalf_right_img__02 {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.fp-viewing-section2 .cmn_contentsHalf_right {
  opacity: 1;
}

.fp-viewing-section2 .header_top_item__02 a {
  background: #00A1B6;
}

.fp-viewing-section3 .cmn_contentsHalf_right_img__03 {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.fp-viewing-section3 .cmn_contentsHalf_right {
  opacity: 1;
}

.fp-viewing-section3 .header_top_item__03 a {
  background: #00A1B6;
}

.fp-viewing-section4 .cmn_contentsHalf_right_img__04 {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.fp-viewing-section4 .cmn_contentsHalf_right {
  opacity: 1;
}

.fp-viewing-section4 .header_top_item__04 a {
  background: #00A1B6;
}

.fp-viewing-section5 .cmn_contentsHalf_right_img__05 {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.fp-viewing-section5 .cmn_contentsHalf_right {
  opacity: 1;
}

.fp-viewing-section5 .header_top_item__05 a {
  background: #00A1B6;
}

.fp-viewing-section6 .cmn_contentsHalf_right_img__06 {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.fp-viewing-section6 .cmn_contentsHalf_right {
  opacity: 1;
}

.fp-viewing-section6 .header_top_item__06 a {
  background: #00A1B6;
}

.fp-viewing-section7 .header_top_item__07 a {
  background: #00A1B6;
}

.fp-viewing-section7 .fixedArrow {
  opacity: 0;
}

.fp-viewing-section1 .header,
.fp-viewing-section2 .header,
.fp-viewing-section3 .header,
.fp-viewing-section4 .header,
.fp-viewing-section5 .header,
.fp-viewing-section6 .header {
  background: rgba(0, 0, 0, 0.76);
}

.fp-viewing-section1 .header_bottom,
.fp-viewing-section2 .header_bottom,
.fp-viewing-section3 .header_bottom,
.fp-viewing-section4 .header_bottom,
.fp-viewing-section5 .header_bottom,
.fp-viewing-section6 .header_bottom {
  opacity: 1;
  pointer-events: all;
}

@media screen and (max-width: 1000px) {
  .header {
    -webkit-transform: translateY(-2rem);
            transform: translateY(-2rem);
    opacity: 0;
    pointer-events: none;
  }
  .header.on {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
}

/* タブレット調整 */
.tabOn .header_bottom_sub_en {
  font-size: 3.4rem;
}

.tabOn .header_bottom_sub_arrow {
  width: 5.5rem;
  margin: 0 1.5rem;
}

.tabOn .sectFirst_sub_ja {
  font-size: 1.8rem;
  margin-right: 3rem;
  white-space: nowrap;
}

.tabOn .sectFirst_sub_en {
  font-size: 6.8rem;
}

.tabOn .sectFirst_sub_arrow {
  margin-left: 3rem;
}

.tabOn .cmn_contentsHalf_left_box {
  padding: 4rem 5rem;
}

.tabOn .cmn_contentsHalf_right_img img {
  max-width: 90%;
}

@media screen and (max-width: 1000px) {
  .tabOn .fp-tableCell {
    height: auto !important;
  }
  .tabOn .fp-section {
    height: auto !important;
  }
  .tabOn .cmn_contentsHalf_right_img {
    padding: 7rem 10rem;
  }
  .tabOn .sectMain_01 .cmn_contentsHalf_left_box {
    padding: 7rem 10rem;
  }
  .tabOn .cmn_contentsHalf_left_box {
    padding: 3rem 10rem;
  }
  .tabOn .cmn_contentsHalf_left_titBox_box {
    padding: 2rem 2.3rem 2rem 10rem;
  }
  .tabOn .cmn_contentsHalf_main_img {
    padding: 7rem 10rem;
  }
  .tabOn .sectEnd {
    padding: 20rem 10rem;
  }
  .tabOn .sectEnd_inner {
    padding: 5rem 8rem 6rem;
  }
  .tabOn .sectFirst_sub_ja {
    margin-right: auto;
  }
  .tabOn .sectFirst_sub_arrow {
    margin-left: auto;
  }
  .tabOn .cmn_contentsHalf_right_img img {
    max-width: 100%;
  }
}

/* /_unique.scss
-------------------------------------------------------*/
/*# sourceMappingURL=process.css.map */