@charset "UTF-8";
/*****************************************
  module.css
  top, lp用共通CSS
******************************************/
/*******************************
 global-nav
*******************************/
.global-nav-head {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1001;
}

.global-nav-toggle {
  position: absolute;
  width: 58px;
  height: 58px;
  cursor: pointer;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .global-nav-toggle {
    width: 80px;
    height: 80px;
  }
}

.global-nav-toggle span,
.global-nav-toggle span::before,
.global-nav-toggle span::after {
  display: block;
  position: absolute;
  width: 21px;
  height: 1px;
  background-color: #51b792;
  transition: 300ms;
}

@media screen and (min-width: 768px) {
  .global-nav-toggle span,
  .global-nav-toggle span::before,
  .global-nav-toggle span::after {
    height: 2px;
  }
}

.global-nav-toggle span {
  top: 30px;
  left: auto;
  right: 20px;
}

@media screen and (min-width: 768px) {
  .global-nav-toggle span {
    top: 40px;
    left: auto;
    right: 30px;
  }
}

.global-nav-toggle span::before {
  content: "";
  top: -8px;
  left: 0;
}

.global-nav-toggle span::after {
  content: "";
  top: 8px;
  left: 0;
}

.navOpened .global-nav-toggle {
  opacity: 1;
}

.navOpened .global-nav-toggle span {
  background-color: transparent;
}

.navOpened .global-nav-toggle span::before {
  transform: translateY(8px) rotate(45deg);
}

.navOpened .global-nav-toggle span::after {
  transform: translateY(-8px) rotate(-45deg);
}

.global-nav-body {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 767px) {
  .global-nav-body {
    overflow: scroll;
  }
}

.global-nav-list {
  background: #51b792  no-repeat left top;
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .global-nav-list-item {
    margin: 0 auto;
    max-width: 1000px;
    padding-left: 120px;
  }
}

.global-nav-list-item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
  width: 100%;
  height: 70px;
  padding: 0 30px;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .global-nav-list-item a {
    padding: 0;
  }
}

.global-nav[data-gnav-type="drawerTop"] .global-nav-toggle {
  top: 0;
  right: 0;
}

.global-nav[data-gnav-type="drawerTop"] .global-nav-list {
  margin-top: 58px;
}

@media screen and (min-width: 768px) {
  .global-nav[data-gnav-type="drawerTop"] .global-nav-list {
    margin-top: 80px;
  }
}

.global-nav[data-gnav-type="drawerTop"][data-gnav-fixed="true"] .global-nav-body {
  height: 100%;
}

.global-nav[data-gnav-type="drawerTop"][data-gnav-fixed="false"] .global-nav-body {
  height: auto;
}

/*******************************
 accordion
*******************************/
[data-js-view="accordion"] [data-js-accordion="button"] {
  position: relative;
  cursor: pointer;
}

[data-js-view="accordion"] [data-js-accordion="button"]::after {
  content: "\E820";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  width: 30px;
  height: 30px;
  font-size: 30px;
  text-align: center;
  line-height: 30px;
  font-family: recop-iconfonts;
}

@media screen and (max-width: 767px) {
  [data-js-view="accordion"] [data-js-accordion="button"]::after {
    right: 15px;
    width: 15px;
    height: 15px;
    font-size: 15px;
    line-height: 15px;
  }
}

[data-js-view="accordion"] [data-js-accordion="button"].is-open::after {
  content: "\E826";
}

[data-js-view="accordion"] [data-js-accordion="body"] {
  display: none;
}

@media screen and (min-width: 768px) {
  [data-js-view="accordion"][data-pc="false"] [data-js-accordion="body"] {
    display: block !important;
  }
  [data-js-view="accordion"][data-pc="false"] [data-js-accordion="button"]::after {
    display: none;
  }
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #000;
  color: #fff;
  transition: opacity .3s;
  height: 40px;
}

.button:hover {
  opacity: 0.7;
}

.s-d-ib {
  display: inline-block;
}

/*******************************
 card
*******************************/
[class^="cards-"] {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  [class^="cards-"].is-column3 .card {
    margin-right: 20px;
    width: calc((100% - 40px) / 3);
  }
  [class^="cards-"].is-column3 .card:nth-child(3n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  [class^="cards-"].is-column3 .card {
    width: 100%;
  }
}

[class^="cards-"] .card .card-title {
  font-size: 20px;
  line-height: 1.5;
}

[class^="cards-"] .card .card-text {
  font-size: 14px;
  line-height: 1.5;
}

[class^="cards-"] .card .card-btn .button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #000;
  color: #fff;
  transition: opacity .3s;
  height: 40px;
}

[class^="cards-"] .card .card-btn .button:hover {
  opacity: 0.7;
}

/*******************************
 slider
*******************************/
/*---------------------------------
 slick setting
 ---------------------------------*/
@media screen and (max-width: 767px) {
  [data-js-view="slick"] .slick-slide img.pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  [data-js-view="slick"] .slick-slide img.sp {
    display: none;
  }
}

[data-js-view="slick"] .slick-dots {
  position: absolute;
  bottom: -20px;
  width: 100%;
  height: 8px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  [data-js-view="slick"] .slick-dots {
    bottom: -13px;
    height: 6px;
  }
}

[data-js-view="slick"] .slick-dots li {
  display: inline-block;
  margin: 0 10px;
  vertical-align: top;
  line-height: 1;
}

[data-js-view="slick"] .slick-dots li button {
  overflow: hidden;
  border: none;
  width: 8px;
  height: 8px;
  text-indent: 100%;
  white-space: nowrap;
  background: #dcdcdc;
  outline: none;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  [data-js-view="slick"] .slick-dots li button {
    width: 6px;
    height: 6px;
  }
}

[data-js-view="slick"] .slick-dots li.slick-active button {
  background: #000;
}

/*******************************
 Common
*******************************/
.section {
  overflow-y: hidden;
}

.section .section-wrapper {
  margin: 0 auto;
  padding: 80px 150px;
  background-color: #fff;
}

.section .section-wrapper.is-green {
  background-color: #f4fbf4;
}

@media (max-width: 1200px) {
  .section .section-wrapper {
    padding: 80px 50px;
  }
}

@media (max-width: 1100px) {
  .section .section-wrapper {
    padding: 80px 30px;
  }
}

@media (max-width: 767px) {
  .section .section-wrapper {
    padding: 40px 30px;
  }
}

@media (max-width: 374px) {
  .section .section-wrapper {
    padding: 40px 20px;
  }
}

.top-cmn-title-01 {
  position: relative;
  padding-bottom: 22px;
  font-size: 30px;
  line-height: 36px;
  font-weight: bold;
  color: #0f2f00;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .top-cmn-title-01 {
    padding-bottom: 9px;
    font-size: 20px;
    line-height: 1.2;
  }
}

.top-cmn-title-01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  margin-left: -100px;
  width: 200px;
  height: 5px;
  background: linear-gradient(to right, #336666 50%, #abce5b 50%);
}

@media screen and (max-width: 767px) {
  .top-cmn-title-01::after {
    margin-left: -50px;
    width: 100px;
    height: 4px;
  }
}

.top-cmn-title-02 {
  font-size: 30px;
  line-height: 44px;
  text-align: center;
  font-weight: bold;
  color: #336666;
}

@media screen and (max-width: 767px) {
  .top-cmn-title-02 {
    font-size: 20px;
    line-height: 1.33;
  }
}

.top-cmn-title-03 {
  display: flex;
  align-items: center;
  border-radius: 25px 25px 0 0;
  padding-left: 30px;
  height: 70px;
  background: linear-gradient(122deg, #368282 42%, #3ea7a7 42%);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .top-cmn-title-03 {
    border-radius: 12.5px 12.5px 0 0;
    padding-left: 15px;
    height: 45px;
    background: linear-gradient(122deg, #368282 80%, #3ea7a7 80%);
    font-size: 16px;
    line-height: 1.33;
  }
}

.button-close.button {
  margin-top: 25px;
  position: relative;
  display: flex;
  height: 40px;
  background-color: #368282;
  border-radius: 0 0 12.5px 12.5px;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .button-close.button {
    display: none;
  }
}

.button-close.button::after {
  position: absolute;
  content: "\E809";
  right: 15px;
  font-family: recop-iconfont;
  font-size: 16px;
  top: 50%;
  line-height: 1;
  margin-top: -8px;
  color: #fefeed;
}

.button-close.button .button-in {
  color: #fefeed;
}

/*******************************
 .link-joblocation
*******************************/
/* link-joblocation */
.link-joblocation {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 330px;
  line-height: 1;
  border-radius: 33px;
  height: 66px;
  background-color: #51b792;
}

@media screen and (min-width: 768px) {
  .link-joblocation {
    margin-bottom: -66px;
    position: relative;
    z-index: 100;
  }
}

@media screen and (max-width: 767px) {
  .link-joblocation {
    margin: 0 auto 25px;
    width: 275px;
    height: 55px;
  }
}

.link-joblocation span {
  font-weight: bold;
  font-size: 24px;
  color: #fff !important;
}

@media screen and (max-width: 767px) {
  .link-joblocation span {
    font-size: 16px;
  }
}

.link-joblocation:hover {
  opacity: 0.7;
  text-decoration: none !important;
}

.link-joblocation::before {
  content: "\E900";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 9px;
  color: #336666;
  font-family: recop-iconfont;
  font-size: 24px;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .link-joblocation::before {
    margin-right: 18px;
    width: 39px;
    height: 39px;
    font-size: 20px;
  }
}

/*******************************
 KV
*******************************/
.section.kv .slider-kv {
  position: relative;
  margin: 0 auto;
}

.section.kv .slider-kv .slide-body {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  text-align: center;
}

@media (max-width: 1250px) {
  .section.kv .slider-kv .slide-body {
    bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .section.kv .slider-kv .slide-body {
    bottom: 7px;
  }
}

.section.kv .slider-kv .slide-body .slide-lead {
  width: 100%;
  font-size: 72px;
  line-height: 1.11;
  font-weight: bold;
}

@media (max-width: 1150px) {
  .section.kv .slider-kv .slide-body .slide-lead {
    font-size: 60px;
  }
}

@media (max-width: 960px) {
  .section.kv .slider-kv .slide-body .slide-lead {
    font-size: 45px;
  }
}

@media screen and (max-width: 767px) {
  .section.kv .slider-kv .slide-body .slide-lead {
    font-size: 25px;
  }
}

.section.kv .slider-kv .slide-body .slide-lead .text-green {
  color: #fff;
  text-shadow: 1px 1px 0 #000, 1px 1px 0 #000, 1px 1px 0 #000, 1px 1px 0 #000;
}

.section.kv .slider-kv .slide-body .slide-lead .text-yellow {
  color: #fff;
  text-shadow: 1px 1px 0 #000, 1px 1px 0 #000, 1px 1px 0 #000, 1px 1px 0 #000;
}

.section.kv .slider-kv .slide-body .slide-lead .text-blue {
  display: block;
  color: #fff;
  text-shadow: 1px 1px 0 #000, 1px 1px 0 #000, 1px 1px 0 #000, 1px 1px 0 #000;
}

/*******************************
 leadsec
*******************************/
.section.leadsec .section-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  background-color: #f9ffeb
}

@media screen and (max-width: 767px) {
  .section.leadsec .section-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.section.leadsec .text {
  font-size: 20px;
  line-height: 1.8;
  background-color: #f9ffeb;
  padding: 10px 15px;
}

@media screen and (max-width: 767px) {
  .section.leadsec .text {
    font-size: 16px;
  }
}

/*******************************
 mapsec
*******************************/
.section.mapsec .section-wrapper {
  padding-top: 0;
  padding-bottom: 0;
}

.section.mapsec .top-cmn-title-01 {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .section.mapsec .top-cmn-title-01 {
    margin-bottom: 25px;
  }
}

.section.mapsec .top-cmn-title-02 {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .section.mapsec .top-cmn-title-02 {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

.section.mapsec .top-cmn-title-03 {
  margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
  .section.mapsec .top-cmn-title-03 {
    display: none;
  }
}

.section.mapsec .section-body {
  margin: 0 auto;
  max-width: 680px;
}

@media screen and (min-width: 768px) {
  .section.mapsec .map-body {
    display: flex !important;
    justify-content: flex-end;
  }
  .section.mapsec .map-body #mapObj {
    width: 524px;
  }
}

/*******************************
 bannersec
*******************************/
.section.bannersec .banner {
  margin: 0 auto;
  max-width: 773px;
}

.section.bannersec .banner:hover {
  opacity: 0.7;
}

/*******************************
 about
*******************************/
.section.about .top-cmn-title-02 {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .section.about [class^="cards-"].is-column3 .card {
    width: calc(100% / 3);
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .section.about [class^="cards-"].is-column3 .card {
    width: 100%;
  }
}

.section.about [class^="cards-"] .card {
  margin: 0;
  padding: 0;
  border-top: 2px solid #aaaaaa;
  border-left: 2px solid #aaaaaa;
  border-bottom: 2px solid #aaaaaa;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .section.about [class^="cards-"] .card {
    border-right: 2px solid #aaaaaa;
    border-bottom: none;
  }
}

.section.about [class^="cards-"] .card:last-child {
  border-right: 2px solid #aaaaaa;
}

@media screen and (max-width: 767px) {
  .section.about [class^="cards-"] .card:last-child {
    border-bottom: 2px solid #aaaaaa;
  }
}

.section.about [class^="cards-"] .card .card-title {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #aaaaaa;
  height: 86px;
  background-color: #368282;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
  color: #fefeed;
  text-align: center;
}

.section.about [class^="cards-"] .card .card-title2 {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #aaaaaa;
  height: 86px;
  background-color: #5b9696;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
  color: #fefeed;
  text-align: center;
}

.section.about [class^="cards-"] .card .card-title3 {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #aaaaaa;
  height: 86px;
  background-color: #7caaaa;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
  color: #fefeed;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section.about [class^="cards-"] .card .card-title {
    font-size: 15px;
    height: 40px;
  }
  .section.about [class^="cards-"] .card .card-title2 {
    font-size: 15px;
    height: 40px;
  }
  .section.about [class^="cards-"] .card .card-title3 {
    font-size: 15px;
    height: 40px;
  }
}

.section.about [class^="cards-"] .card .card-text {
  padding: 28px 38px;
  font-size: 14px;
  line-height: 1.5;
  color: #336666;
}

@media screen and (max-width: 767px) {
  .section.about [class^="cards-"] .card .card-text {
    padding: 14px;
  }
}

/*******************************
 work
*******************************/
.section.work .top-cmn-title-03 {
  margin-bottom: 20px;
}

.section.work [class^="cards-"] {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .section.work [class^="cards-"].is-column3 .card {
    margin-right: 14px;
    width: calc((100% - 28px) / 3);
  }
  .section.work [class^="cards-"].is-column3 .card:nth-child(3n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .section.work [class^="cards-"].is-column3 .card {
    width: 100%;
  }
}

.section.work [class^="cards-"] .card {
  position: relative;
  margin-bottom: 40px;
  padding: 0 0 100px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .section.work [class^="cards-"] .card {
    padding: 0;
  }
}

.section.work [class^="cards-"] .card .card-img {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .section.work [class^="cards-"] .card .card-img {
    margin-bottom: 15px;
  }
}

.section.work [class^="cards-"] .card .card-title {
  border-left: 10px solid #abce5b;
  border-bottom: 2px solid #abce5b;
  padding: 10px 0 0 9px;
  height: 74px;
  font-size: 22px;
  line-height: 1.36;
  color: #336666;
  font-weight: bold;
}

@media (max-width: 960px) {
  .section.work [class^="cards-"] .card .card-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .section.work [class^="cards-"] .card .card-title {
    height: 38px;
    font-size: 16px;
  }
}

.section.work [class^="cards-"] .card .card-text {
  font-size: 15px;
  line-height: 2;
  color: #336666;
}

@media screen and (max-width: 767px) {
  .section.work [class^="cards-"] .card .card-text {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.875;
  }
}

@media screen and (min-width: 768px) {
  .section.work [class^="cards-"] .card .card-btn {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
  }
}

.section.work [class^="cards-"] .card .card-btn .button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #e1f5b4;
  transition: opacity .3s;
  height: 80px;
  padding: 0 30px;
}

@media screen and (max-width: 767px) {
  .section.work [class^="cards-"] .card .card-btn .button {
    height: 60px;
  }
}

.section.work [class^="cards-"] .card .card-btn .button:after {
  position: absolute;
  content: "\E845";
  right: 20px;
  font-family: recop-iconfont;
  font-size: 14px;
  top: 50%;
  margin-top: -10px;
  color: #336666;
}

.section.work [class^="cards-"] .card .card-btn .button:hover {
  opacity: 0.7;
}

.section.work [class^="cards-"] .card .card-btn .button .button-in {
  font-size: 18px;
  line-height: 1.33;
  text-align: center;
  color: #336666;
}

@media screen and (max-width: 767px) {
  .section.work [class^="cards-"] .card .card-btn .button .button-in {
    font-size: 15px;
  }
}

/*******************************
 interview
*******************************/
.section.interview {
  /*.slick-arrow */
}

@media (max-width: 1200px) {
  .section.interview .section-wrapper {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media (max-width: 767px) {
  .section.interview .section-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.section.interview .top-cmn-title-01 {
  margin-bottom: 45px;
}

@media (max-width: 767px) {
  .section.interview .top-cmn-title-01 {
    margin-bottom: 25px;
  }
}

.section.interview .slide {
  padding: 0 5px;
  outline: none;
}

.section.interview .slide-in {
  display: flex;
  border: 4px solid #66cc99;
  padding: 7px;
  background-color: #fff;
}

@media (max-width: 767px) {
  .section.interview .slide-in {
    border: 2px solid #66cc99;
    padding: 3px;
  }
}

.section.interview .slide .image {
  margin-right: 7px;
}

@media (max-width: 767px) {
  .section.interview .slide .image {
    width: 116px;
    margin-right: 3px;
  }
}

.section.interview .slide .text {
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.section.interview .slide .text .name {
  width: 100%;
  font-size: 20px;
  padding: 20px 0px 0px 30px;
}

.section.interview .slide .button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #3ea7a7;
  transition: opacity .3s;
  height: 63px;
}

@media (max-width: 767px) {
  .section.interview .slide .button {
    height: 45px;
  }
}

.section.interview .slide .button:after {
  position: absolute;
  content: "\E885";
  right: 13px;
  font-family: recop-iconfont;
  font-size: 18px;
  top: 50%;
  margin-top: -10px;
  color: #fff;
  line-height: 1;
}

@media (max-width: 767px) {
  .section.interview .slide .button:after {
    font-size: 15px;
    margin-top: -7px;
    right: 10px;
  }
}

.section.interview .slide .button:hover {
  opacity: 0.7;
}

.section.interview .slide .button .button-in {
  padding-right: 30px;
  font-size: 18px;
  line-height: 1.33;
  color: #fff;
}

@media (max-width: 960px) {
  .section.interview .slide .button .button-in {
    padding: 0 15px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .section.interview .slide .button .button-in {
    font-size: 15px;
  }
}

.section.interview .slick-arrow {
  display: block;
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border: none;
  border-radius: 50%;
  background: #368282;
  color: transparent;
}

@media (max-width: 767px) {
  .section.interview .slick-arrow {
    margin-top: -12px;
    width: 24px;
    height: 24px;
  }
}

.section.interview .slick-prev {
  left: -66px;
}

@media (max-width: 767px) {
  .section.interview .slick-prev {
    left: -25px;
  }
}

.section.interview .slick-next {
  right: -66px;
}

@media (max-width: 767px) {
  .section.interview .slick-next {
    right: -25px;
  }
}

.section.interview .slick-arrow:hover {
  opacity: 0.7;
  cursor: pointer;
}

.section.interview .slick-arrow:focus {
  outline: none !important;
}

.section.interview .slick-arrow:before {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 48px;
  color: #fff;
  font-size: 22px;
  line-height: 48px;
  font-family: "recop-iconfont";
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .section.interview .slick-arrow:before {
    width: 25px;
    font-size: 11px;
    line-height: 25px;
  }
}

.section.interview .slick-prev:before {
  content: "\E851";
  padding-right: 2px;
}

.section.interview .slick-next:before {
  content: "\E849";
  padding-left: 2px;
}

/*******************************
 infographic
*******************************/
.section.infographic .top-cmn-title-01 {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .section.infographic .top-cmn-title-01 {
    margin-bottom: 25px;
  }
}

.section.infographic .top-cmn-title-03 {
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .section.infographic .top-cmn-title-03 {
    margin-bottom: 30px;
  }
}

.section.infographic .figures_infographic .image01,
.section.infographic .figures_infographic .image02,
.section.infographic .figures_infographic .image03,
.section.infographic .figures_infographic .image04 {
  margin: 0 auto 80px;
}

@media (max-width: 767px) {
  .section.infographic .figures_infographic .image01,
  .section.infographic .figures_infographic .image02,
  .section.infographic .figures_infographic .image03,
  .section.infographic .figures_infographic .image04 {
    margin-bottom: 40px;
  }
}

.section.infographic .figures_infographic .image01 {
  max-width: 810px;
}

.section.infographic .figures_infographic .image02 {
  max-width: 799px;
}

.section.infographic .figures_infographic .image03 {
  max-width: 726px;
}

.section.infographic .figures_infographic .image04 {
  max-width: 756px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .section.infographic .figures_infographic .image04 {
    margin-bottom: 15px;
  }
}

.section.infographic .figures_list {
  margin: 0 auto;
  max-width: 826px;
}

.section.infographic .figures_list .row {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .section.infographic .figures_list .row {
    flex-wrap: wrap;
  }
}

.section.infographic .figures_list .col {
  width: calc((100% - 40px)/2);
}

@media screen and (max-width: 767px) {
  .section.infographic .figures_list .col {
    width: 100%;
  }
}

.section.infographic .figures_list .col:nth-child(2) {
  margin-left: 40px;
}

@media screen and (max-width: 767px) {
  .section.infographic .figures_list .col:nth-child(2) {
    margin-left: 0;
  }
}

.section.infographic .figures_list .list li {
  border-bottom: 4px dotted #4c90c7;
  padding: 4px 0;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .section.infographic .figures_list .list li {
    border-bottom: 3px dotted #4c90c7;
    font-size: 14px;
  }
}

/*******************************
 convSec
*******************************/
.section.convSec .banner {
  position: relative;
  margin: 0 auto;
  max-width: 910px;
}

.section.convSec .banner .button {
  position: absolute;
  top: 167px;
  left: 63px;
  width: 290px;
  height: 60px;
  color: #fff;
  background-color: #68c07e;
}

@media screen and (max-width: 767px) {
  .section.convSec .banner .button {
    width: 209px;
    height: 40px;
    top: auto;
    bottom: 12px;
    left: 50%;
    margin-left: -104px;
  }
}

.btnPagetop {
  right: 0;
}

.btnPagetop a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: block;
  background: linear-gradient(135deg, transparent 50%, #5b8581 50%);
  width: 110px;
  height: 110px;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: all 0.3s;
}

@media screen and (max-width: 767px) {
  .btnPagetop a {
    width: 71px;
    height: 71px;
  }
}

.btnPagetop a:after {
  content: "\E844";
  position: absolute;
  display: inline-block;
  bottom: 13px;
  right: 17px;
  color: #fff !important;
  font-size: 26px;
  font-family: recop-iconfont;
}

@media screen and (max-width: 767px) {
  .btnPagetop a:after {
    bottom: 3px;
    right: 10px;
    font-size: 20px;
  }
}

.btnPagetop a:hover {
  background: linear-gradient(135deg, transparent 50%, #359b7a 50%);
}

a.btn--green {
  color: #336666;
  border-bottom: 5px solid #368282;
}
a.btn--green:hover {
  margin-top: 3px;
  color: #336666;
  border-bottom: 2px solid #368282;
}
a.btn--shadow {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}

@media screen and (max-width: 767px) {
.section.interview .slide .text .name {
    width: 100%;
    font-size: 14px;
    padding: 0px 0px 0px 10px;
}
}

/* 大栄環境グループの仕事内容 ボタン非表示 */
.section.work [class^="cards-"] .card .card-btn {
  display: none;
}
.section.work [class^="cards-"] .card {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .section.work [class^="cards-"] .card {
    padding: 0;
    margin-bottom: 0;
  }
}