@charset "utf-8";


/************************************************************************************************
* MV
************************************************************************************************/

/**************************************************************
* mv
**************************************************************/
.mv {
  position: relative;
	width: 100%;
  height: 100vh;
}
@media all and (min-width: 768px) {}
@media all and (max-width: 767px) {}


/* mv-list item__contents
**************************************************************/
.mv-list .item__contents {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: var(--base-bg-color);
}


/* mv-list item__photo
**************************************************************/
.mv-list .item__photo {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
@media all and (min-width: 768px) {
  .mv-list .item__photo {
    top: 0;
    right: 0;
    width: 69.791%;
    height: calc(100vh - 13rem);
    margin-top: 13rem;
  }
}
@media all and (min-width: 1921px) {}
@media all and (max-width: 767px) {
  .mv-list .item__photo {
    top: 0;
    right: 0;
    width: 64.333%;
    height: calc(100vh - 5rem);
    margin-top: 5rem;
  }
}

/* item__photo-bg
********************************/
.mv-list .item__photo-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mv-list .--01 .item__photo-bg {
	background-image: url(../img/top/mv/main_01.jpg);
}
.mv-list .--02 .item__photo-bg {
	background-image: url(../img/top/mv/main_02.jpg);
}
.mv-list .--03 .item__photo-bg {
  background-image: url(../img/top/mv/main_03.jpg);
}
.mv-list .item__photo-bg::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media all and (min-width: 768px) {}
@media all and (max-width: 767px) {}


/* mv-cp-container
**************************************************************/
.mv-cp-container {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}
@media all and (min-width: 768px) {
  .mv-cp-container {
    width: 100%;
    padding: 0 12rem;
    margin-top: 7.4rem;
  }
}
@media all and (min-width: 1921px) {
  .mv-cp-container {
    margin: 0 auto -130px;
  }
}
@media all and (max-width: 767px) {
  .mv-cp-container {
    width: 88%;
    margin: 0 auto -16vw;
  }
}


/* mv-cp-main
********************************/
.mv-cp-main .mv-cp__inner {
  display: block;
  font-family: var(--main-ttl-font-family);
  color: var(--accent-color-04);
}
@media all and (min-width: 768px) {
  .mv-cp-main {
    font-size: 12.058vw;
  }
  .mv-cp-main .mv-cp__inner {
    line-height: 1;
  }
}
@media all and (min-width: 1360px) {
  .mv-cp-main {
    font-size: 16.4rem;
  }
}
@media all and (max-width: 767px) {
  .mv-cp-main {
    font-size: 12.266vw;
  }
  .mv-cp-main .mv-cp__inner {
    line-height: 1.5;
  }
}


/* mv-cp-sub
**************************************************************/
@media all and (min-width: 768px) {
  .mv-cp-sub {
    margin-top: 2rem;
  }
}
@media all and (max-width: 767px) {
  .mv-cp-sub {
    margin-top: 1.6rem;
  }
}

/* mv-cp-sub__ttl
********************************/
.mv-cp-sub__ttl {
  color: var(--base-font-color);
  line-height: 2;
  font-weight: bold;
}
@media all and (min-width: 768px) {
  .mv-cp-sub__ttl {
    font-size: 2.058vw;
  }
}
@media all and (min-width: 1360px) {
  .mv-cp-sub__ttl {
    font-size: 2.8rem;
  }
}
@media all and (max-width: 767px) {
  .mv-cp-sub__ttl {
    font-size: 4.8vw;
  }
}

/* mv-cp-sub__des
********************************/
.mv-cp-sub__des {
  color: var(--base-font-color);
  line-height: 2;
  font-weight: bold;
}
@media all and (min-width: 768px) {
  .mv-cp-sub__des {
    margin-top: .6rem;
    font-size: 1.47vw;
  }
}
@media all and (min-width: 1360px) {
  .mv-cp-sub__des {
    font-size: 2rem;
  }
}
@media all and (max-width: 767px) {
  .mv-cp-sub__des {
    margin-top: .4rem;
    font-size: 4vw;
  }
}


/* mv-subImg-container
**************************************************************/

/* list__item
********************************/
.mv-subImg-list .list__item {
  height: 0;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mv-subImg-list .list__item.--01 {
  background-image: url(../img/top/mv/sub_01.jpg);
}
@media all and (min-width: 768px) {
  .mv-subImg-list .list__item {
    z-index: 1;
  }
  .mv-subImg-list .list__item.--01 {
    top: 0;
    left: 0;
    width: 14.895%;
    padding-top: 44.27%;
  }
}
@media all and (min-width: 1921px) {
  .mv-subImg-list .list__item.--01 {
    width: 28.6rem;
    padding-top: 85rem;
  }
}
@media all and (max-width: 767px) {
  .mv-subImg-list .list__item {
    z-index: 1;
  }
  .mv-subImg-list .list__item.--01 {
    top: 0;
    left: 0;
    width: 30.133%;
    padding-top: 113.333%;
  }
}


/************************************************************************************************
* WORKS
************************************************************************************************/

/**************************************************************
* works
**************************************************************/
.works.c-section {
  background-color: var(--accent-color-01);
}


/**************************************************************
* works-contents
**************************************************************/
@media all and (min-width: 768px) {
  .works-contents.c-contents {
    position: relative;
  }
}


/**************************************************************
* works-outer
**************************************************************/
@media all and (min-width: 768px) {
  .works-outer {
    padding-right: 0;
  }
}


/**************************************************************
* works-wrapper
**************************************************************/
@media all and (min-width: 768px) {
  .c-column-2 .works-wrapper {
    width: 40rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1366px) {
  .c-column-2 .works-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}

/**************************************************************
* works-head-container
**************************************************************/
@media all and (min-width: 768px) {
  .works-head-container {
    text-align: initial;
  }
}
@media all and (max-width: 767px) {}


/* c-head-vl-2__inner
**************************************************************/
@media all and (min-width: 768px) {
  .works-head-container .c-head-vl-2__inner {
    text-align: initial;
  }
}


/**************************************************************
* works-btn-container
**************************************************************/
@media all and (min-width: 1366px) {
  .works-btn-container {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 45rem;      
  }
}
@media all and (max-width: 767px) {}


/* c-btn
**************************************************************/
@media all and (min-width: 768px) and (max-width: 1366px) {}
@media all and (min-width: 1366px) {
  .works-btn-container .c-btn {
    margin-left: 0;
    margin-right: 0;
  }
}


/**************************************************************
* works-lead-container
**************************************************************/
@media all and (min-width: 768px) {
  .works-lead-container {
    margin-top: 5rem;
  }
}
@media all and (max-width: 767px) {
  .works-lead-container {
    margin-top: 4rem;
  }
}


/**************************************************************
* works-list-container
**************************************************************/
.works-list-container {
  position: relative;
  max-width: 122.2rem;
}
@media all and (min-width: 768px) {
  .c-column-2 .works-list-container {
    overflow: hidden;
    height: 81.2rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1366px) {
  .c-column-2 .works-list-container {
    width: 100%;
  }
}
@media all and (min-width: 1367px) {
  .c-column-2 .works-list-container {
    width: 67.777%;
    margin-left: 0;
  }
}


/* works-list
**************************************************************/
.works-list {
  display: grid;
}
@media all and (min-width: 768px) {
  .works-list {
    grid-template-areas:
      "areaA areaB areaC"
      "areaD areaE .";
    height: 100%;
  }
}
@media all and (max-width: 767px) {
  .works-list {
    grid-template-areas:
      "areaA"
      "areaB"
      "areaC"
      "areaD"
      "areaE";
    row-gap: 8rem;
  }
}


/* list__item
**************************************************************/
.works-list .list__item.--01 {
  grid-area: areaA;
}
.works-list .list__item.--02 {
  grid-area: areaB;
}
.works-list .list__item.--03 {
  grid-area: areaC;
}
.works-list .list__item.--04 {
  grid-area: areaD;
}
.works-list .list__item.--05 {
  grid-area: areaE;
}
@media all and (min-width: 768px) {
  .works-list .list__item {
  }
}


/* item__contents-container
**************************************************************/
.works-list .item__contents-container {
  position: relative;
  z-index: 2;
}
.works-list .item__contents-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 0;
  height: 100%;
  margin: auto;
  background-color: rgb(255 255 255 / .4);
  transition: width var(--transition-speed);
}
@media all and (min-width: 768px) {
  .works-list .item__contents-container {
    width: 100%;
    height: 100%;
    border-right: .1rem solid #fff;
    border-bottom: .1rem solid #fff;
  }
}
@media (hover: hover) {
  .works-list .list__item:hover .item__contents-container::before {
    left: 0;
    right: auto;
    width: 100%;
  }
}


/* item__contents
**************************************************************/
@media all and (min-width: 768px) {
  .works-list .item__contents {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 4rem);
    transform: translate(-50%, -50%);
  }
}


/* item__header
**************************************************************/
.works-list .item__header::after {
  content: "";
  display: block;
  height: .1rem;
  margin: 2rem auto 0;
}
@media all and (min-width: 768px) {
  .works-list .item__header::after {
    width: 14rem;
    background-color: var(--base-bg-color);
  }
}
@media all and (max-width: 767px) {
  .works-list .item__header::after {
    width: 10rem;
    background-color: var(--base-font-color);
  }
}


/* item__img
**************************************************************/
.works-list .item__img::before {
  opacity: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / .6);
}
@media all and (min-width: 768px) {
  .works-list .item__img {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
  }
  .works-list .--current .item__img::before {
    opacity: 1;
  }
  .works-list .item__img img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .works-list .--current .item__img img {
    animation-name: works-bgImageChange;
    animation-duration: 1s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
    animation-iteration-count: 1;
  }
}
@media all and (max-width: 767px) {
  .works-list .item__img {
    margin-bottom: 2rem;
  }
}


/* item__ttl-container
**************************************************************/
@media all and (min-width: 768px) {}


/* item__ttl
********************************/
.works-list .item__ttl {
  text-align: center;
  line-height: 1.5;
}
.works-list .item__ttl-txt {
  display: block;
  font-size: 1.8rem;
}
@media all and (min-width: 768px) {
  .works-list .item__ttl {
    color: #fff;
  }
  .works-list .item__ttl-txt + .item__ttl-txt {
    margin-top: 1.2rem;
  }
  .works-list .item__ttl-txt.--sm {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 767px) {
  .works-list .item__ttl-txt + .item__ttl-txt {
    margin-top: 1rem;
  }
  .works-list .item__ttl-txt.--sm {
    font-size: 1.2rem;
  }
}


/* works-bg
**************************************************************/
.works-bg::before,
.works-bg::after
{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.works-bg::before {
  z-index: 1;
  background-color: rgb(0 0 0 / .6);
}
.works-bg::after {
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all var(--transition-speed);
}
.works-bg[data-num="1"]::after {
  background-image: url(../img/top/works/01.jpg);
}
.works-bg[data-num="2"]::after {
  background-image: url(../img/top/works/02.jpg);
}
.works-bg[data-num="3"]::after {
  background-image: url(../img/top/works/03.jpg);
}
.works-bg[data-num="4"]::after {
  background-image: url(../img/top/works/04.jpg);
}
.works-bg[data-num="5"]::after {
  background-image: url(../img/top/works/05.jpg);
}
@media all and (min-width: 768px) {
  .works-bg {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
}


/* item__body
**************************************************************/
@media all and (min-width: 768px) {
  .works-list .item__body {
    margin-top: 2rem;
  }
}
@media all and (max-width: 767px) {
  .works-list .item__body {
    margin-top: 1rem;
  }
}


/* item__des-container
**************************************************************/
@media all and (min-width: 768px) {
  .works-list .item__des-container {}
}


/* item__des
********************************/
.works-list .item__des {
  text-align: center;
  line-height: 2;
}
@media all and (min-width: 768px) {
  .works-list .item__des {
    color: #fff;
    font-size: 1.6rem;
  }
  .works-list .item__titem__des + .item__des {
    margin-top: 1.4rem;
  }
}
@media all and (max-width: 767px) {
  .works-list .item__des {
    font-size: 1.4rem;
  }
  .works-list .item__titem__des + .item__des {
    margin-top: 1rem;
  }
}


/************************************************************************************************
* NEWS
************************************************************************************************/

/**************************************************************
* news
**************************************************************/
.news {
  background-color: var(--accent-color-02);
}
@media all and (min-width: 768px) {
  .news {
    padding: 12rem 0;
  }
}
@media all and (max-width: 767px) {
  .news {
    padding: 4rem 0;
  }
}


/**************************************************************
* news-contents
**************************************************************/
@media all and (min-width: 768px) {
  .news-contents.c-contents {
    position: relative;
  }
}


/**************************************************************
* news-btn-container
**************************************************************/
@media all and (min-width: 1366px) {
  .news-btn-container {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 18rem;
  }
}
@media all and (max-width: 767px) {}


/* c-btn
**************************************************************/
@media all and (min-width: 768px) and (max-width: 1366px) {}
@media all and (min-width: 1366px) {
  .news-btn-container .c-btn {
    margin-left: 0;
    margin-right: 0;
  }
}



/************************************************************************************************
* ABOUT
************************************************************************************************/


/**************************************************************
* about-diagonal-shape
**************************************************************/
.about-diagonal-shape {
  /* padding-top: 38.6rem; */
  padding-top: 0;
  transform: rotate(10deg);
}
@media all and (min-width: 768px) {
  .about-diagonal-shape {
    margin: 68rem 0 0 -10rem;
  }
}
@media all and (max-width: 767px) {
  .about-diagonal-shape {
    margin: 31.5rem 0 0 -10rem;
  }
}


/**************************************************************
* c-section
**************************************************************/
.about.c-section {
  background-color: var(--base-bg-color);
}


/**************************************************************
* about-inner
**************************************************************/
.about-inner {
  position: relative;
}
.about-inner::before {
  content: "";
  display: block;
  width: .1rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #000;
}
@media all and (min-width: 768px) {
  .about-inner {
    width: 59.523%;
    min-width: 64rem;
    margin: 0 auto;
  }
  .about-inner {
    width: 80.952%;
    margin: 0 auto;
  }
  .about-inner::before {
    height: 14rem;
    margin-top: -6rem;
    margin-bottom: 10rem;
  }
}
@media all and (max-width: 767px) {
  .about-inner::before {
    height: 10rem;
    margin-bottom: 6rem;
  }
}


/**************************************************************
* about-contents
**************************************************************/
.about-contents.c-contents {
  padding: 0;
}


/**************************************************************
* about-head-container
**************************************************************/
@media all and (min-width: 768px) {
  .about-head-container {
    text-align: initial;
  }
}
@media all and (max-width: 767px) {}


/* c-head-vl-2__inner
**************************************************************/
@media all and (min-width: 768px) {
  .about-head-container .c-head-vl-2__inner {
    text-align: initial;
  }
}


/**************************************************************
* about-lead-container
**************************************************************/
@media all and (min-width: 768px) {
  .about-lead-container {
    margin-top: 4rem;
  }
}
@media all and (max-width: 767px) {
  .about-lead-container {
    margin-top: 4rem;
  }
}


/**************************************************************
* about-txt-container
**************************************************************/
@media all and (min-width: 768px) {
  .about-txt-container {
    margin-top: 2rem;
  }
}
@media all and (max-width: 767px) {
  .about-txt-container {
    margin-top: 2rem;
  }
}


/**************************************************************
* about-main
**************************************************************/
.about-main::before {
  content: "";
  display: block;
  width: .1rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #000;
}
@media all and (min-width: 768px) {
  .about-main {
    width: 80.952%;
    margin: 0 auto;
  }
  .about-main::before {
    height: 14rem;
    margin-top: 10rem;
    margin-bottom: 10rem;
  }
}

@media all and (max-width: 767px) {
  .about-main {
    margin: 0 auto;
  }
  .about-main::before {
    height: 10rem;
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}



/************************************************************************************************
* CASE
************************************************************************************************/


/**************************************************************
* case.c-section
**************************************************************/
.case.c-section {
  background-color: var(--accent-color-01);
}


/**************************************************************
* case-list-wrapper
**************************************************************/
@media all and (min-width: 768px) {
  .case-list-wrapper {
    width: 293.5rem;
  }
}


/**************************************************************
* case-outer
**************************************************************/
@media all and (min-width: 768px) {
  .case-outer {
    padding-left: 12rem;
    padding-right: 0;
  }
}
@media all and (max-width: 767px) {
  .case-outer {
    padding-left: 0;
    padding-right: 0;
  }
}


/**************************************************************
* case-inner
**************************************************************/
@media all and (min-width: 768px) {}
@media all and (max-width: 767px) {
  .case-inner {
    padding-left: 0;
    padding-right: 0;
  }
}


/**************************************************************
* case-contents
**************************************************************/
@media all and (min-width: 768px) {
  .case-contents.c-contents {
    position: relative;
  }
}


/**************************************************************
* c-column-2
**************************************************************/
@media all and (min-width: 768px) and (max-width: 1680px) {
  .case .c-column-2 {
    display: block;
  }
}


/**************************************************************
* case-head-wrapper
**************************************************************/
@media all and (min-width: 768px) {}
@media all and (max-width: 767px) {
  .case-head-wrapper {
    padding: 0 4%;
  }
}


/**************************************************************
* case-head-container
**************************************************************/
@media all and (min-width: 768px) {
  .case-head-container {
    text-align: initial;
  }
}
@media all and (max-width: 767px) {}


/* c-head-vl-2__inner
**************************************************************/
@media all and (min-width: 768px) {
  .case-head-container .c-head-vl-2__inner {
    text-align: initial;
  }
}


/**************************************************************
* case-btn-container
**************************************************************/
@media all and (min-width: 1681px) {
  .case-btn-container {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 18rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1680px) {
  .case-btn-container {
    margin: 8rem auto 0;
  }
}
@media all and (max-width: 767px) {}


/* c-btn
**************************************************************/
@media all and (min-width: 768px) and (max-width: 1680px) {
  .case-btn-container .c-btn {
    margin-left: 0;
    margin-right: 0;
  }
}
@media all and (min-width: 1681px) {}


/**************************************************************
* case-list-container
**************************************************************/
.case-list-container {
  position: relative;
}
@media all and (min-width: 768px) {
  .c-column-2 .case-list-container {
    overflow: hidden;
    width: auto;
    padding: 24rem 11.7rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1680px) {
  .c-column-2 .case-list-container {
    margin-top: 10rem;
    margin-left: 0;
    padding: 4rem 11.7rem;
  }
}
@media all and (min-width: 1681px) {
  .c-column-2 .case-list-container {
    margin-left: 56rem;
  }
}
@media all and (max-width: 767px) {
  .c-column-2 .case-list-container {
    padding: 12% 4%;
  }
}


/* c-case-list
**************************************************************/
@media all and (min-width: 768px) {
  .c-case-list {
    /* width: 223.5rem; */
  }
}

/************************************************************************************************
* COMPANY
************************************************************************************************/

/**************************************************************
* company
**************************************************************/
.company.c-section {
  z-index: 0;
}

/* c-tbl-list-container
**************************************************************/
@media all and (max-width: 767px) {
  .c-company-grid-container .c-tbl-list-container {
    margin-top: 4.6rem;
  }
}


/**************************************************************
* company-diagonal-shape
**************************************************************/
.company-diagonal-shape {
  padding-top: 0;
}


/************************************************************************************************
* RECRUIT
************************************************************************************************/

/**************************************************************
* recruit
**************************************************************/
@media all and (min-width: 768px) {
  .recruit.c-section {}
}
@media all and (max-width: 767px) {}


/* recruit-contents
**************************************************************/
@media all and (min-width: 768px) {
  .recruit-contents.c-contents {
    padding: 10rem 0;
  }
}
@media all and (max-width: 767px) {}

/* .c-btn-container
**************************************************************/
@media all and (min-width: 768px) {
  .recruit .c-btn-container {
    margin-top: 6rem;
  }
}
@media all and (max-width: 767px) {
  .recruit .c-btn-container {
    margin-top: 3rem;
  }
}


/**************************************************************
* recruit-outer
**************************************************************/
@media all and (max-width: 767px) {
  .recruit-outer {
    padding-left: 0;
    padding-right: 0;
  }
}


/**************************************************************
* recruit-inner
**************************************************************/
@media all and (max-width: 767px) {
  .recruit-inner {
    padding-left: 0;
    padding-right: 0;
  }
}


/**************************************************************
* recruit-main
**************************************************************/
.recruit-main {
  position: relative;
}
.recruit-main::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% - 12rem);
  background-color: var(--accent-color-01);
}
@media all and (min-width: 768px) and (max-width: 1366px) {
  .recruit-main {
    margin: 0 0 10rem;
    padding-bottom: 12rem;
  }
}
@media all and (min-width: 1367px) {
  .recruit-main {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 10rem;
    padding-bottom: 12rem;
  }
}
@media all and (max-width: 767px) {
  .recruit-main {
    margin: 0 0 10rem;
    padding-bottom: 2rem;
  }
}


/**************************************************************
* recruit-info
**************************************************************/
.recruit-info {
  position: relative;
}
@media all and (min-width: 1367px) {
  .recruit-info {
    width: 70.4rem;
    padding: 24rem 0 12rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1366px) {}
@media all and (max-width: 767px) {
  .recruit-info {
    padding: 4rem 4%;
  }
}


/**************************************************************
* recruit-lead-container
**************************************************************/
@media all and (min-width: 768px) {
  .recruit-lead-container {
    padding: 0 12rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1366px) {
  .recruit-lead-container {
    margin-top: 10rem;
  }
}
@media all and (max-width: 767px) {}


/* recruit-lead
**************************************************************/
.recruit-lead {
  font-weight: bold;
  line-height: 2;
}
@media all and (min-width: 768px) {
  .recruit-lead {
    font-size: 1.8rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1366px) {
  .recruit-lead {
    text-align: center;
  }
}
@media all and (max-width: 767px) {
  .recruit-lead {
    font-size: 1.5rem;
  }
}


/**************************************************************
* recruit-ttl-container
**************************************************************/
@media all and (min-width: 1367px) {
  .recruit-ttl-container {
    margin: 8.1rem 0 0 -6.4rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1366px) {
  .recruit-ttl-container {
    margin: 8rem 0 0;
  }
}
@media all and (max-width: 767px) {
  .recruit-ttl-container {
    margin: 6rem 0 0;
  }
}


/* recruit-ttl
**************************************************************/
.recruit-ttl {
  font-weight: bold;
  line-height: 1.5;
}
.recruit-ttl::first-letter {
  color: var(--accent-color-03);
}
@media all and (min-width: 768px) {
  .recruit-ttl {
    font-size: 4rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1366px) {
  .recruit-ttl {
    text-align: center;
  }
}
@media all and (max-width: 767px) {
  .recruit-ttl {
    font-size: 2.6rem;
  }
}


/**************************************************************
* recruit-copy-container
**************************************************************/
@media all and (min-width: 1367px) {
  .recruit-copy-container {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    margin: 0 6.25% 2rem 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1366px) {
  .recruit-copy-container {
    margin: -10rem 0 0;
  }
}
@media all and (max-width: 767px) {
  .recruit-copy-container {
    margin: -5rem 0 0;
  }
}


/* recruit-copy
**************************************************************/
.recruit-copy {
  font-weight: bold;
  line-height: 1.5;
}
.recruit-copy__txt {
  display: inline-block;
}
.recruit-copy__txt::first-letter {
  color: var(--accent-color-03);
}
@media all and (min-width: 768px) {
  .recruit-copy__txt + .recruit-copy__txt {
    margin-left: 4rem;
  }
}
@media all and (min-width: 1367px) {
  .recruit-copy__txt {
    font-size: 14rem;
  }
  .recruit-copy__txt + .recruit-copy__txt {
    margin-left: 4rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1366px) {
  .recruit-copy {
    font-size: 10rem;
    text-align: center;
  }
}
@media all and (max-width: 767px) {
  .recruit-copy {
    text-align: center;
  }
  .recruit-copy__txt {
    font-size: 6rem;
  }
  .recruit-copy__txt:not(:last-child) {
    margin-right: 2rem;
  }
}


/**************************************************************
* recruitImg-container
**************************************************************/
@media all and (min-width: 1367px) {
  .recruitImg-container {
    width: calc(100% - 70.4rem);
  }
}
@media all and (min-width: 768px) and (max-width: 1366px) {}
@media all and (max-width: 767px) {}


/**************************************************************
* recruit-tbl-list-container
**************************************************************/
@media all and (min-width: 768px) {
  .recruit-tbl-list-container {
    max-width: 128rem;
    margin-top: 6rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (max-width: 767px) {
  .recruit-tbl-list-container {
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 4%;
    padding-right: 4%;
  }
}