@charset "utf-8";
/* CSS Document */

/*----------------------------------------------------
  COMMON PARTS
----------------------------------------------------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@media (max-width: 500px) {
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
  }
}

body {
  font-size: 16px;

  font-weight: 400;
  color: #333333;
  letter-spacing: 1.5px;
}

@media (max-width: 480px) {
  body {
    letter-spacing: 1px;
  }
}

img {
  /* PCの右クリック禁止 */
  pointer-events: none;
  /* SPの長押し禁止 */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}


#container {}

.breadcrumb {
  display: block;
}

.breadcrumb .breadcrumb-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em 0;
}


a:hover {
  opacity: 0.85;
  filter: alpha(opacity=85);
  -ms-filter: "alpha(opacity=85)";

}

a:hover img {
  opacity: .85;
  filter: alpha(opacity=85);
}


@media (max-width: 767px) {
  .breadcrumb .breadcrumb-inner {
    padding: 1.5em 0;
  }

  .breadcrumb ul li {
    font-size: 10px;
    white-space: nowrap;
  }

  .breadcrumb ul li:last-child {
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.section .content-box {
  background-color: unset;
  padding: 0;
  color: #333333;
}

.main-visual {
  box-shadow: unset;
  aspect-ratio: 16 / 9;
  min-height: 430px;
}

.main-visual.kasou {
  aspect-ratio: 24 / 5;
  min-height: 250px;
  position: relative;
  background-color: #333333;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.main-visual.kasou .main-visual-inner {
  width: 90%;
}

.kasou .page-title-inner {
  padding: 200px 0 40px;
}

.kasou .page-title-box {
  text-align: center;
  letter-spacing: 0.1em;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.kasou .page-title-box .page-title__main {
  display: block;
  font-size: 30px;
  line-height: 1.8;
  letter-spacing: 3px;
  color: #88BA00;
}

.kasou .page-title-box .page-title__sub {
  display: block;
  font-size: 10px;
  color: #909090;
}


@media (max-width: 767px) {
  .main-visual {
    aspect-ratio: 23 / 41;
    min-height: 550px;
  }

  .main-visual.kasou {
    aspect-ratio: 15 / 8;
    min-height: unset;
  }

  .kasou .page-title-inner {
    padding: 100px 0 0px;
  }

  .kasou .page-title-box .page-title__main {
    font-size: 20px;
  }

}

.section-ttl {
  font-weight: bold;
}

.section-ttl .en,
.sub_section-ttl .en,
h2 .en,
.en {
  font-family: 'Josefin Sans', sans-serif, 'Klee One', cursive;
  font-weight: bold;
}

.section-ttl .jp {}

.section .section-inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 70px 0;
}

.pc {
  display: block;
}

.sp {
  display: none;
}



@media (max-width: 1066px) {
  .br-tablet {
    display: inline-block;
  }

}

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

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .br-sp {
    display: inline-block;
  }

  .br-pc {
    display: none;
  }
}

.title {
  color: #465E76;
  margin-bottom: 20px;
  text-align: center;
}

.title .title__main {
  display: block;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.title .title__sub {
  display: block;
  color: #00A29A;
  font-size: 0.9em;
  letter-spacing: 0.1em;
}

.section .title.line {
  position: relative;
  margin-bottom: 30px;
}

.section .title.line::after {
  content: '';
  position: absolute;
  display: block;
  background: linear-gradient(90deg, rgba(0, 73, 132, 1) 0%, rgba(0, 172, 149, 1) 36%, rgba(145, 209, 219, 1) 100%);
  height: 3px;
  margin: 5px auto 0;
  left: 0;
  right: 0;
  width: 8em;
}

.btn {
  background-color: #88BA00;
  border: unset;
  border-radius: 0;
  color: #fff !important;
  display: block;
  line-height: 1;
  max-width: 200px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  font-size: 10px;
  font-weight: bold;
  padding: 15px 0;

  position: relative;
  transition: ease .2s;
}

.btn span {
  position: relative;
  z-index: 3;
  color: #fff;
}

.btn:hover span {
  color: #fff;
}

.btn:hover {
  opacity: 1;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #000;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.wid.bgleft:before {
  background: #00637F;
}


.btn a {
  display: block;
  background-color: unset;
  color: #333333;
  padding: 0;
}

.btn.wid {
  max-width: 800px;
  font-size: 36px;
  font-weight: 500;
  padding: 15px 0 0 15px;
  background-color: #88BA00;
  position: relative;
}

.btn.wid .ray {
  border-top: solid 1px #fff;
  border-left: solid 1px #fff;
  padding: 1.2em 15px 1.2em 0;
  position: relative;
  z-index: 5;
}

.btn.wid img {
  position: absolute;
  bottom: 0;
  left: 40px;
  width: 150px;
  opacity: 1;
  z-index: 7;
}

.btn.wid .ray.pad_l {
  padding: 0.4em 15px 1.0em 15%;
  font-size: 36px;
}

.btn.wid .ray.pad_l span {
  display: inline-block;
  font-size: 16px;
  padding-bottom: 14px;
  line-height: 1.4;
}

.btn.btn_gr {
  border: unset;
  color: #fff;
  background: -moz-linear-gradient(left, #024c89, #00a29a, #00ccbd);
  background: -webkit-linear-gradient(left, #024c89, #00a29a, #00ccbd);
  background: linear-gradient(to right, #024c89, #00a29a, #00ccbd);
}

.btn_gold_ver {
  margin: auto;
  display: block;
  max-width: 800px;
  width: 100%;

}

.btn_gold_ver:hover {}

.arrow.arrow_r:before {
  background: url(../img/common/arrow_r.png) center center no-repeat;
  background-size: contain;
  content: '';
  display: inline-block;
  position: absolute;
  border: unset;
  /* margin: 0 auto; */
  margin-right: 0;
  height: 2.8em;
  top: 50%;
  left: 0;
  width: 7%;
  height: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.arrow.arrow_r_g:before {
  background: url(../img/common/arrow_r_g.png) center center no-repeat;
  background-size: contain;
  content: '';
  display: inline-block;
  position: absolute;
  border: unset;
  margin-right: 0;
  height: 2.8em;
  top: 50%;
  left: 0;
  width: 7%;
  height: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#container.kasou .arrow.arrow_r:before {
  width: 10%;
  margin-right: 10px;
}

#container.kasou .btn {
  font-size: 10px;
  font-weight: bold;
  padding: 15px 0;
}

#container.kasou .btn.wid {
  max-width: 800px;
  font-size: 36px;
  font-weight: 500;
  padding: 15px 0 0 15px;
  background-color: #88BA00;

}

#container.kasou .btn.wid .ray {
  border-top: solid 1px #fff;
  border-left: solid 1px #fff;
  padding: 1.2em 15px 1.2em 0;
}

#container.kasou .arrow.arrow_r_g:before {
  top: 50%;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 18px;
}

#container.kasou .btn_view {
  font-size: 16px;
  font-weight: bold;
  color: #00a29a;
  padding-right: 30px;
}

@media (max-width: 850px) {
  .btn.wid .ray.pad_l {
    padding: 0.4em 15px 1em 20%;
  }
}

@media (max-width: 767px) {
  #container.kasou .btn {}

  .btn.wid,
  #container.kasou .btn.wid {
    font-size: 17.5px;
    padding: 7px 0 0 7px;
  }

  .btn.wid .ray,
  #container.kasou .btn.wid .ray {
    padding: 1.2em 7px 1.3em 0;
  }

  .btn.wid .ray.pad_l {
    padding: 0.8em 15px 1em 10%;
    font-size: 20px;
  }

  .btn.wid .ray.pad_l span {
    font-size: 15px;
    padding-bottom: 10px;
  }

  .btn.wid img {
    left: 8%;
    width: 100px;
  }

}

@media (max-width: 580px) {
  .btn.wid img {
    left: -1px;
    width: 85px;
  }

  .btn.wid .ray.pad_l {
    padding: 0.8em 0 1em 66px;
  }

}

/*CONTENT BOX -------------------------*/

/*----------------------------------------------------
  HEADER 
----------------------------------------------------*/
#header {
  box-shadow: unset;
  position: fixed;
  background-color: unset;
}

.page-template-default #header,
.error404 #header {
  border-bottom: solid 5px rgba(0, 142, 162, 0.2);
}

#header.open {
  background-color: #fff;
}

.page-template-default #header:not(.open),
.error404 #header:not(.open) {
  background-color: #fff;
}

#header:not(.open) {
  background-color: unset;
}

#header.fixed {
  position: fixed;
  background-color: #fff;
}

#header,
#header #header-inner {
  height: 140px;
}

#header #header__logo {
  max-width: 450px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#header #header__logo a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  font-weight: bold;
  font-size: 17px;
  line-height: 1.3;
}

#header #header__logo a span {
  font-size: 30px;
}

.page-template-default #header #header__logo a,
.error404 #header #header__logo a,
#header.fixed #header__logo a {
  color: #333;
}

.page-template-default #header.open #header__logo a,
.error404 #header.open #header__logo a {
  color: #fff;
}

#header #header__logo a img {
  width: 39px;
  margin-right: 8px;
}

#header .header-menu-container .gnav-container {
  padding-right: 0;
}

#header #gnav .menu-item {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

#header #gnav .menu-item:last-child {
  padding-right: 3em;
}

#header #gnav .menu-item a {
  color: #fff;
}

.page-template-default #header #gnav .menu-item a,
.error404 #header #gnav .menu-item a,
#header.fixed #gnav .menu-item a {
  color: #333333;
}


#header-menu-box .header-menu-btn a {
  color: #00a29a;
}

#header-menu-box .header-menu-btn a span {
  text-align: center;
}


#header-menu-box .header-req-btn.header-menu-btn {
  font-weight: 500;
  justify-content: center;
  width: auto;
  height: auto;
  margin: auto 0;
  margin-right: 10px;
}

#header-menu-box .header-req-btn.header-menu-btn .btn {
  background-color: #333333;
}

.header-req-btn .bgleft:before {
  background: #A8A8A8;
}

#header-menu-box .header-ent-btn.header-menu-btn {
  font-weight: 500;
  justify-content: center;
  width: auto;
  height: auto;
  margin: auto 0;
  margin-right: 40px;
}

#header-menu-box .header-ent-btn.header-menu-btn .btn {
  background-color: #88BA00;
}

.header-ent-btn .bgleft:before {
  background: #4A5961;
}

#header.fixed #header-menu-box .header-req-btn .btn_text,
#header.fixed #header-menu-box .header-ent-btn .btn_text {
  display: block;
}

#header-menu-box .header-req-btn.header-menu-btn a,
#header-menu-box .header-ent-btn.header-menu-btn a {
  color: #fff;
  display: block;
  font-size: 18px;
  width: 150px;
  height: 60px;
  padding-top: 11px;
  line-height: 1;
}

#header-menu-box .header-req-btn.header-menu-btn a .en {
  color: #909090;
}

#header-menu-box .header-req-btn.header-menu-btn a .en,
#header-menu-box .header-ent-btn.header-menu-btn a .en {
  font-size: 13px;
}

#header-menu-box .header-mail-btn a::before {
  content: none;
}


@media (max-width: 1500px) {
  #header #header__logo {
    max-width: 400px;
  }

  #header-menu-box .header-req-btn.header-menu-btn,
  #header-menu-box .header-ent-btn.header-menu-btn {
    min-width: 160px;
  }
}

@media (max-width: 1333px) {
  .header-menu-container .menu .menu-item a {
    padding: 10px 9px;
    white-space: nowrap;
  }

  #header #header__logo {
    max-width: 350px;
    margin-right: 5px;
  }

  #header-menu-box .header-req-btn.header-menu-btn,
  #header-menu-box .header-ent-btn.header-menu-btn {
    min-width: 130px;
  }

  #header,
  #header #header-inner {
    height: 100px;
  }
}

@media (max-width: 1024px) {

  .header-menu-container .menu .menu-item a {
    padding: 10px 7px;
  }

  #header-menu-box .header-req-btn.header-menu-btn {
    display: none;
  }

  #header-menu-box .header-ent-btn.header-menu-btn {
    display: none;
  }

}

@media (min-width: 768px) {
  #header #header__logo {
    margin: auto 20px auto 40px;
  }
}

@media (max-width: 767px) {
  .page-template-default #header {
    border-bottom: solid 3px rgba(0, 142, 162, 0.2);
  }

  #header:not(.open) {}

  #header,
  #header #header-inner {
    height: 90px;
  }

  #header #header__logo {
    margin: 0.5em 1em;
  }

}

@media (max-width: 500px) {

  #header,
  #header #header-inner {
    height: 80px;
  }

  #header #header__logo a {
    font-size: 10px;
  }

  #header #header__logo a img {
    width: 30px;
  }

  #header #header__logo a span {
    font-size: 17.5px;
  }
}

#slidenav {
  height: 100%;
}

#slidenav #slide-nav-ul .menu-item a::after {
  content: none;
}

#slidenav #slide-nav-ul {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 2em;
  max-width: 600px;
  list-style-type: none;
}

#slidenav .slide-nav-container {
  padding-top: 40px;
}

#slidenav #slide-nav-ul .menu-item {
  text-align: left;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 1em;
  border-bottom: solid 1px #fff;
}

#slidenav #slide-nav-ul .menu-item a {
  color: #fff;
  padding-bottom: 1em;
  display: block;
}

#slidenav .slidenav-inner {
  width: 70%;
  margin: 0 auto;
  max-width: 600px;
}


#slidenav .wrap_list {
  margin-top: 25px;
  margin-bottom: 25px;
  text-align: center;
}

#slidenav .wrap_list .btn_text {
  margin-left: 10px;
  font-size: 13px;
  color: #888888;
  border-bottom: solid 1px;
}

#slidenav .copyright {
  text-align: center;
  font-size: 10px;
  color: #333333;
  padding: 2em 0 10px;
}



@media (max-width: 600px) {
  #slidenav #slide-nav-ul {}

  #slidenav .slidenav-inner {
    width: 90%;
  }

  #slidenav #slide-nav-ul .menu-item {
    font-size: 15px;
  }
}

@media (max-width: 500px) {
  #slidenav {
    padding-top: 80px;
  }
}

@media (max-width: 1024px) {
  #header #header__logo {
    max-width: 360px;
    width: 75%;
    z-index: 10000;
  }

  #header .header-menu-container {

    max-width: 200px;
  }

  #nav-toggle .menu-line {
    background-color: #fff;
    display: block;
    height: 3px;
    position: absolute;
    transition: transform .3s;
    width: 40%;
    top: 37%;
    right: 0;
    left: 0;
    margin: auto;
  }

  #nav-toggle .menu-line.menu-line--center {
    top: 50%;
  }

  #nav-toggle .menu-line.menu-line--bottom {
    top: 63%;
  }

  #nav-toggle.active .menu-line.menu-line--top {
    background-color: #fff;
    transform: rotate(-45deg);
    top: 50%;
  }

  #nav-toggle.active .menu-line.menu-line--center {
    transform: scaleX(0);
  }

  #nav-toggle.active .menu-line.menu-line--bottom {
    background-color: #fff;
    transform: rotate(45deg);
    top: 50%;
  }

  #nav-toggle.active {}

  #header-menu-box .header-mob-btn.header-menu-btn {
    display: none;
  }


  #header-menu-box #nav-toggle {
    min-width: 100px;
    width: 100px;
    height: 100px;
    padding: 0;
  }

  #header-menu-box {
    flex-direction: row-reverse;
  }

  .page-template-default #nav-toggle .menu-line,
  #header.fixed #nav-toggle .menu-line {
    background-color: #88BA00;
  }

  .page-template-default #header #header__logo a,
  #header.fixed #header__logo a {}
}

@media (max-width: 767px) {
  #header-menu-box #nav-toggle {

    min-width: 90px;
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 500px) {

  #header-menu-box #nav-toggle {

    min-width: 79px;
    width: 79px;
    height: 79px;
  }
}




/*----------------------------------------------------
  FOOTER
----------------------------------------------------*/

#footer .inner {
  width: 90%;
  max-width: 1200px;
  padding: 20px 0 10px;
}

#footer .footer-info-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer .footer-logo {
  width: 50%;
  max-width: 570px;
  margin-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#footer .footer-logo a img {
  width: 76px;
  height: 106px;
}

#footer .footer-logo .txt_box {
  text-align: left;
  padding-left: 1em;
  line-height: 1.65;
}

#footer .footer-logo .txt_box .txt_logo {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  display: inline-block;
}

#footer .info {}

#footer #footer-menu-recruit {
  display: flex;
}

#footer .footer-nav-container .menu-item {
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 3em;
  white-space: nowrap;
}

#footer .footer-nav-container .menu-item a {
  color: #333333;
}

@media (max-width: 1200px) {
  #footer .footer-nav-container .menu-item {}
}

@media (max-width: 1024px) {
  #footer {
    margin-bottom: 3.8em;
  }

  footer .footer-info-area {
    flex-wrap: wrap;
  }

  #footer .footer-logo {}

  #footer .info {}

}

@media (max-width: 860px) {
  #footer .footer-logo {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  #footer .info {
    width: 90%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 20px;
  }

}

@media (max-width: 767px) {
  #footer .footer-logo {
    flex-direction: column;
    margin-bottom: 2.5em;
  }

  #footer .footer-logo .txt_box {
    width: 100%;
    padding-left: 0;
    font-size: 15px;
  }

  #footer .footer-logo .txt_box .txt_logo {
    display: none;
  }

  #footer .footer-info-area {
    display: block;
    width: 100%;
    margin-top: 1em;
  }

  #footer .footer-logo a img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }

  #footer .info {
    width: 100%;
  }

  #footer .footer-nav-container .menu-item {
    padding-left: 0;
  }

  #footer #footer-menu-recruit {
    flex-direction: column;
  }
}

#footer .copyright {
  padding-left: 3em;
  font-size: 14px;
  color: #333333;
  font-weight: normal;
  text-align: left;
}

@media (max-width: 767px) {
  #footer .copyright {
    padding-top: 2em;
    padding-left: 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  #footer {
    margin-bottom: 3.5em;
  }

  #footer .copyright {
    font-size: 10px;
  }
}

/*----------------------------------------------------
  TOP PAGE
----------------------------------------------------*/
.section-top .section-inner {
  max-width: 1200px;
  padding: 80px 0;
}

@media (max-width: 480px) {
  .section-top .section-inner {
    padding: 40px 0;
  }
}

/*MAIN BLOCK -------------------------*/
#main-visual__top {
  width: 100%;
  height: 100% !important;
  background-color: #F7F8F8;
}

#main-visual__top .main-visual-inner {
  max-width: 100%;
  position: relative;
}

.main-visual .main-visual-content {
  position: absolute;
  left: 50%;
  margin: auto;
  text-align: center;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
}

#main-visual__top .top-copy {
  color: #FFF;
  font-weight: bold;
  font-style: normal;
  font-size: 50px;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 3.6px;

  text-shadow: #888 2px 2px 10px, #888 -2px -2px 10px, #888 -2px 2px 10px;
}

#main-visual__top .top-copy .en2 {
  font-size: 30px;
  color: #88BA00;
  text-shadow: none;
  letter-spacing: 1.5px;
}

#main-visual__top .bg__slider {
  width: 100%;
  height: 100%;
  background-position: center center !important;
  background-size: cover;
}

#main-visual__top.full .main-visual-inner {
  max-width: none;
}

#main-visual__top .btn__search_box {
  display: none;
  position: fixed;
  bottom: 3%;
  left: 2%;
  background-color: #00A29A;
  color: #FFF;
  padding: 10px 20px;
  line-height: 1.4;
  text-align: center;
  border-radius: 50%;
}

#main-visual__top .btn__search_box::before {
  content: '';
  display: block;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  transform: rotate(-135deg);
}

/*TOP CATCH BOX*/
#main-visual__top .catch-box {
  position: absolute;
  top: 35%;
  left: 10%;
  width: auto;
  margin: auto;
  text-align: left;
  color: #465E76;
}

#main-visual__top .catch__text .text {
  display: inline-block;
  padding: 5px 20px;
  font-size: 30px;

  font-weight: bold;
  line-height: 1.4;
  background-color: #FFF;
}

.slick-slide img {
  margin: 0 auto;
  width: 100%;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  bottom: 4%;
}

.slick-dots li {
  margin: 0 10px;
}

.slick-dots li button:before {
  opacity: 1;
  color: unset;
  outline: none;
  border: unset;
  border-radius: 2em;
  width: 10px;
  height: 10px;
  display: block;
  background: #fff;
  cursor: pointer;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: unset;
  outline: none;
  border: unset;
  width: 16px;
  height: 16px;
  top: -12%;
  display: block;
  background: url("../img//common/recruit-dots.png") no-repeat;
  background-size: contain !important;
  cursor: pointer;
}


@media all and (-ms-high-contrast: none) {
  #main-visual__top .catch__text .text {
    display: inline;
  }
}

#main-visual__top .catch__text .text:not(:first-child) {
  margin-left: 1em;
}

/* TOPページ共用 */
.section-top .to-info {
  font-size: 16px;
  font-weight: bold;
  color: #00BAA1;
  display: block;
}

.section-title-box {
  text-align: center;
  margin-bottom: 4.5em;
}

.section-title-box2 {
  text-align: center;
  margin-top: 4.5em;
  margin-bottom: 0;
}

.section-title-box .section-title {
  font-size: 30px;
  line-height: 1.35;
  letter-spacing: 2px;
  color: #88BA00;
  font-weight: 600;
}

.section-title-box .section-title .en {
  display: block;
  font-size: 10px;
  color: #909090;
  padding-top: 1.5em;
  letter-spacing: 1px;
}

@media (max-width: 1024px) {
  #main-visual__top .top-copy {
    font-size: 35px;
  }

  #main-visual__top .top-copy .en2 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .section-title-box {
    margin-bottom: 0.5em;
  }

  .section-title-box .section-title {
    font-size: 20px;
  }

  .section-title-box .section-title .en {
    font-size: 12.5px;
    padding-top: 1em;
  }

  .section-top .to-info {
    font-size: 17px;
    text-align: center;
  }

  #main-visual__top .top-copy {
    font-size: 5.2vw;
  }


}

@media (max-width: 500px) {
  #main-visual__top .top-copy {
    font-size: 20px;
  }

  #main-visual__top .top-copy .en2 {
    margin-top: 1em;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: inline-block;
  }
}

/* TOP home-concept */

#home-concept .section-inner {
  padding-top: 50px;
}

#home-concept .main_img_area {
  margin: 2em auto 3em;
  max-width: ;
  width: 80%;
}

#home-concept .section_catch {
  font-size: 20px;
  line-height: 2.4;
}

@media (max-width: 767px) {
  #home-concept .section-inner {
    padding-top: 50px;
  }

  #home-concept .section_catch {
    text-align: left;
  }
}

@media (max-width: 480px) {
  #home-concept .main_img_area {
    width: 100%;
    margin-bottom: 2.5em;
  }

  #home-concept .section_catch {
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 1px;
  }
}

/* TOP home-concept2 */
#home-concept2 {
  background-color: #F2F7E8;
}

#home-concept2 .bg_ray {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 90%;
  height: -webkit-fill-available;
  height: 90%;

}

#home-concept2 .wrap_box {
  display: flex;
  justify-content: center;
  align-items: center;
}

#home-concept2 .wrap_box img {
  width: 130px;
  margin-left: 2%;
}

#home-concept2 .wrap_box h2 {
  margin-left: 5%;
  font-size: 30px;
  line-height: 1.7;
  letter-spacing: 2px;
  color: #008da1;
}

@media (max-width: 1500px) {
  #home-concept2 .bg_ray {
    left: 3%;
    width: 97%;
  }
}

@media (max-width: 1250px) {
  #home-concept2 .wrap_box img {
    width: 90px;
    margin-left: 0;
  }

  #home-concept2 .wrap_box h2 {
    font-size: 2.25vw;
    margin-left: 3%;
  }
}

@media (max-width: 767px) {
  #home-concept2 .bg_ray {
    left: 5%;
    width: 95%;
  }

  #home-concept2 .wrap_box {
    flex-direction: column;
    width: 90%;
    margin: 1em auto 0;
  }

  #home-concept2 .wrap_box img {
    width: 100px;
    margin-bottom: 1.5em;
  }

  #home-concept2 .wrap_box h2 {
    font-size: 17.5px;
    margin-left: 0;
    padding-left: 0.5em;
    text-indent: -0.5em;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 480px) {
  #home-concept2 .bg_ray {}

  #home-concept2 .wrap_box img {
    width: 80px;
    margin-bottom: 1.1em;
  }
}

/* TOP home-SERVICE */

#home-service {
  background-color: #FAF0F5;
  margin-top: 0em;
}

#home-service .wrap_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5em;
}

#home-service .wrap_box .img_area {
  width: 45%;
}

#home-service .wrap_box .txt_area {
  width: 50%;
}

#home-service .wrap_box .txt_area .text {
  line-height: 1.8;
  margin-bottom: 2em;
  font-size: 18px;
  max-width: 590px;
}

#home-service .to_exist_box {
  margin-bottom: 4.5em;
}

#home-service .img_box {
  max-width: 455px;
  margin: auto auto 4.5em;
}

#home-service .btn_dam {
  color: #fff;
  background-color: #008da1;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  margin-bottom: 1.5em;
  font-size: 30px;
  padding: 15px 0;
  line-height: 1;
  border-radius: 1em;
}


#home-service .list_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 4em;
}

#home-service .list_wrap li {
  width: 49%;
  background-color: #fff;
  padding: 1em 1em 0;
  margin-bottom: 1.5em;
  border: solid 1px #008da1;
}

#home-service .list_wrap li h2 {
  font-size: 30px;
  padding: 20px 0;
  margin-bottom: 20px;
  line-height: 1;
  text-align: center;
  color: #008da1;
  background-color: rgba(0, 142, 162, 0.1);
}

#home-service .list_wrap li .subsub_ttl {
  font-size: 18px;
  display: inline-block;
  padding: 10px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
  background-color: #008da1;
}

#home-service .list_wrap li .info {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

#home-service .list_wrap li .info.bdbm {
  position: relative;
  margin-bottom: 20px;
}

#home-service .list_wrap li .info.bdbm::after {
  content: '';
  width: 91%;
  height: 1px;
  background-color: #008da1;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}

#home-service .list_wrap li img {
  margin-bottom: 15px;
}

#home-service .sub_ttl {
  font-size: 30px;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
  color: #008da1;
  padding-bottom: 10px;
  margin-bottom: 2.5em;
  border-bottom: solid 1px;
}

#home-service .btn_wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

#home-service .btn_item {
  width: 48%;
  padding: 1.2em 1.5em;
  font-size: 20px;
  line-height: 1.8;
  font-weight: bold;
  color: #fff;
  background-color: #666666;
}

#home-service .btn_item span {
  margin-left: 17%;
}

#home-service .btn_item .ttl {
  display: flex;
  align-items: center;
}

#home-service .btn_item .ttl:before,
#home-service .btn_item .ttl:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #fff;
}

#home-service .btn_item .ttl:before {
  margin-right: 1rem;
}

#home-service .btn_item .ttl:after {
  margin-left: 1rem;
}

#home-service .btn_item.bg_left {
  background: url(../img/top/btn_service_left.webp) center no-repeat;
  background-size: cover;
  background-position: top center;
}

#home-service .btn_item.bg_right {
  background: url(../img/top/btn_service_right.webp) center 85% no-repeat;
  background-size: cover;
}

@media (max-width: 1333px) {

  #home-service .list_wrap li .info.bdbm::after {
    width: 310px;
  }
}

@media (max-width: 1024px) {
  #home-service .wrap_box .img_area {
    width: 40%;
  }

  #home-service .wrap_box .txt_area {
    width: 55%;
  }

  #home-service .list_wrap li h2 {
    font-size: 22px;
  }

  #home-service .btn_item span {
    font-size: 1.8vw;
  }
}

@media (max-width: 860px) {


  #home-service .list_wrap {
    flex-direction: column;
    margin-bottom: 2em;
  }

  #home-service .list_wrap li {
    width: 100%;
    padding: 1.1em 1.1em 2px;
  }
}

@media (max-width: 767px) {
  #home-service .wrap_box {
    flex-direction: column;
    margin-bottom: 3em;
  }

  #home-service .wrap_box .img_area {
    width: 100%;
    margin-bottom: 1em;
  }

  #home-service .wrap_box .txt_area {
    width: 100%;
  }

  #home-service .wrap_box .txt_area .text {
    font-size: 14px;
    letter-spacing: 0.9px;
  }

  #home-service .btn_dam {
    font-size: 20px;
    padding: 12px 0;
  }

  #home-service .sub_ttl {
    font-size: 24px;
  }

  #home-service .btn_wrap {
    flex-direction: column;
  }

  #home-service .btn_item {
    width: 100%;
  }

  #home-service .btn_item span {
    font-size: 14px;
  }

  #home-service .btn_item.bg_left {
    margin-bottom: 1.5em;
    background-size: 120%;
  }

  #home-service .btn_item.bg_right {
    background-position: center top;
    background-size: 120%;
  }

  #home-service .btn_item.bg_right span {
    margin-left: 5%;
  }
}

@media (max-width: 480px) {
  #home-service .list_wrap li h2 {
    font-size: 17.5px;
    padding: 15px 0;
    margin-bottom: 15px;
  }

  #home-service .list_wrap li .subsub_ttl {
    font-size: 15px;
    margin-top: 3px;
    margin-bottom: 12px;
    padding: 6px 10px;
  }

  #home-service .list_wrap li .info {
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 1px;
  }

  #home-service .list_wrap li .info.bdbm::after {
    width: 230px;
  }

  #home-service .sub_ttl {
    font-size: 17.5px;
  }

  #home-service .btn_item {
    font-size: 17.5px;
    line-height: 1.4;
  }


}

/* TOP #home-about */
#home-about {
  background-color: rgba(0, 142, 162, 0.1);
}

#home-about .content_box.bg-white {
  background-color: #fff;
  padding: 3em 3em;
}

#home-about .wrap_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#home-about .wrap_box .info_area {
  width: 49%;
}

#home-about .wrap_box .img_area {
  width: 46.5%;
}

#home-about .wrap_box .info_area .tbl__about {
  width: 100%;
}

#home-about .wrap_box .info_area .tbl__about tr {
  font-size: 18px;
  line-height: 1.6;
}

#home-about .wrap_box .info_area .tbl__about th {
  border-bottom: solid 1px;
  vertical-align: middle;
  width: 5em;
  font-weight: bold;
  text-align: justify;
  text-align-last: justify;
  white-space: nowrap;
}

#home-about .wrap_box .info_area .tbl__about td {
  border-bottom: solid 1px;
  padding: 14px 0 14px 3em;
}


#home-about .section-title-box.ver_access {
  margin-top: 5.5em;
  margin-bottom: 3em;
}

#home-about .map_area {
  height: 300px;
  margin-bottom: 1.5em;
}

#home-about .map_box {
  aspect-ratio: 10/ 3;
  width: 100%;
  margin-bottom: 3em;
  position: relative;
}

#home-about .map_box #map {
  width: 100%;
  height: 100%;
  background-color: grey;
  position: relative;
  z-index: 1;
}

#home-about .map_box iframe {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  #home-about .wrap_box .info_area .tbl__about tr {
    font-size: 16px;
  }

  #home-about .wrap_box .info_area {
    width: 60%;
  }

  #home-about .wrap_box .img_area {
    width: 36.5%;
  }
}

@media (max-width: 767px) {
  #home-about .content_box.bg-white {
    padding: 1.5em 1.2em 2.5em;
  }

  #home-about .wrap_box {
    flex-direction: column-reverse;
  }

  #home-about .wrap_box .img_area {
    width: 100%;
    margin-bottom: 1.5em;
  }

  #home-about .wrap_box .info_area {
    width: 100%;
  }

  #home-about .wrap_box .info_area .tbl__about tr {
    display: flex;
    flex-direction: column;
    font-size: 15px;
  }

  #home-about .wrap_box .info_area .tbl__about th {
    border-bottom: unset;
  }

  #home-about .wrap_box .info_area .tbl__about td {
    padding: 10px 0 17px 0;
    margin-bottom: 17px;
  }

  #home-about .section-title-box.ver_access {
    margin-top: 2.5em;
    margin-bottom: 1.5em;
  }

  #home-about .map_area {
    height: 240px;
  }

  #home-about .map_box {
    aspect-ratio: 14/ 11;
    margin-bottom: 2em;
  }

}

@media (max-width: 480px) {
  #home-about .map_area {
    height: 200px;
  }
}

/* content contact */

#to_contact {}


@media (max-width: 767px) {}

/*---------- FLOATING BANNER ----------*/

.floating-bnr-area {
  bottom: 13%;
  right: 1%;
  position: fixed;
  width: 14%;
  z-index: 10;
}

.floating-bnr {
  position: relative;
  transition: 0.5s;
  width: 100%;

}

.floating-bnr-thumb {
  background-color: #333;
  background: url(../img/common/bnr_fl_action.png) center no-repeat;
  background-size: cover;
}

.floating-bnr-ttl {}

.bnr-close-btn {
  color: #333;
  cursor: pointer;
  position: absolute;
  right: -1.5em;
  top: -1.5em;
  z-index: 2;
}

@media (min-width: 1025px) {
  .floating-bnr-area {
    max-width: 200px;

  }

  .floating-bnr-thumb {
    aspect-ratio: 1/1;
    padding-top: 73.3333%;
  }

  .floating-bnr-body {
    display: none;
  }
}


@media (max-width: 1500px) {
  .floating-bnr-area {
    bottom: 12%;
  }
}

.floating-bnr-thumb {
  display: none;
}

@media (max-width: 1024px) {
  .floating-bnr-area {

    bottom: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 100%;
  }

  .floating-bnr {
    border: none;
    padding: 0;
  }

  .floating-bnr-inner {
    display: flex;
  }


  .floating-bnr-body {
    display: flex;
    width: 100%;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    justify-content: space-between;
    align-items: center;
  }

  .floating-bnr-ttl {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 15px;
    line-height: 1.2;
    color: #fff;
    background-color: #333333;
  }

  .floating-bnr-ttl .en {
    font-size: 10px;
    font-weight: bold;
  }

  .floating-bnr-ttl.to_access {
    color: #fff;
  }

  .floating-bnr-ttl.to_access .en {
    color: #909090;
  }

  .floating-bnr-ttl.to_contact {
    background-color: #88BA00;
    color: #fff;
  }

  .bnr-close-btn {
    top: -1em;
  }
}

@media (max-width: 600px) {
  .floating-bnr-ttl {}
}

@media (max-width: 480px) {
  .floating-bnr-area {
    bottom: 0;
  }

  .floating-bnr-ttl {
    font-size: 13px;
  }
}


/*----------------------------------------------------
    ENTRY PAGE
----------------------------------------------------*/

#entry .form-box {
  background-color: rgba(0, 142, 162, 0.1);
  padding: 5em 2em;
}

#entry .form-box .form_inner {
  max-width: 800px;
  margin: 0 auto;
}

#entry .form-box .ent_information h2 {
  font-size: 20px;
  padding-bottom: 1em;
  margin-bottom: 2.5em;
  border-bottom: solid 1px;
}

#entry .form-box .ent_information .txt {
  line-height: 1.6;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 2em;
}

/*
#entry .form-box .step-bar {
  margin: 0 auto 30px;
  padding: 1em;
  display: flex;
  justify-content: center;
  background-color: #f2f2f2;
}

#entry .form-box .step-bar .step {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  text-align: center;
  padding: 0 1em;
}

#entry .form-box .step-bar .step .inf {
  color: #00a29a;
  position: relative;
}

#entry .form-box .step-bar .step .inf::before {
  content: '';
  position: absolute;
  top: 3px;
  bottom: 0;
  right: -30%;
  display: inline-block;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #00baa1;
  border-bottom: 2px solid #00baa1;
  transform: rotate(-45deg);
}

#entry .form-box .step-bar .step .inf.last::before {
  content: none;
}*/

#entry .form-box .mw_wp_form_input .step-bar .step-2 .inf,
#entry .form-box .mw_wp_form_input .step-bar .step-3 .inf {
  color: #333333;
}

#entry .form-box .mw_wp_form_input .step-bar .step-2 .inf::before {
  border-right: 2px solid #333333;
  border-bottom: 2px solid #333333;
}

#entry .form-box .mw_wp_form_confirm .step-bar .step-3 .inf {
  color: #333333;
}

#entry .form-box .tbl__entry.tbl {
  margin-bottom: 1.5em;
}

#entry .form-box .tbl__entry.tbl th,
#entry .form-box .tbl__entry.tbl td {
  background-color: transparent;
  border-top: none;
  border-bottom: none;
  padding: 1.3em 0;
  color: #000000;
}

#entry .form-box .tbl__entry.tbl th {
  vertical-align: middle;
  font-weight: bold;
  font-size: 17px;
  width: 17em;
}

#entry .form-box input[type='text'],
#entry .form-box input[type='password'],
#entry .form-box input[type='email'],
#entry .form-box input[type='tel'],
#entry .form-box select,
#entry .form-box textarea {
  max-width: unset;
  width: 100%;
  padding: 1.0em 1.5em;
  margin: 0;
  border: unset;
  background-color: #fff;
  font-size: 17px;
  font-weight: normal;
  color: #666666;
}


#entry .form-box input[type='tel'] {
  width: 50%;
  max-width: 240px;
}

.form-box .mw_wp_form_input .selectbox select,
.form-box .mw_wp_form_input .selectbox_2 select,
.form-box .mw_wp_form_input .selectbox-wrap select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

#entry .form-box .mw_wp_form_input .selectbox {
  position: relative;
  background: #fff;
}

#entry .form-box .mw_wp_form_input .selectbox::before {
  position: absolute;
  top: 1.3em;
  right: 1.7em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 0.6em solid transparent;
  border-right: 0.6em solid transparent;
  border-top: 0.9em solid #88BA00;
  pointer-events: none;
}

#entry .form-box .required {
  display: inline-block;
  margin-left: 0;
  margin-right: 3em;
  padding: 1px 10px 2px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: #e83854;
  vertical-align: bottom;
  float: right;
  border-radius: 0;
}

#entry .form-box .privacy_box.text__contact .normal {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.6;
}

#entry .form-box .agree-box {
  text-align: center;
}

#entry .form-box .agree-box .required {
  float: unset;
  margin-right: 1em;
}

#entry .form-box .btn-box {
  width: 100%;
  max-width: 600px;
  margin: 5em auto 0em;
  display: flex;
  text-align: center;
  justify-content: space-between;
}

#entry .form-box .btn-box .btn {
  border: unset;
  font-size: 15px;
}

#entry .form-box .btn-box .btn.send {
  color: #fff;
  border-radius: 0;
  background-color: #88BA00;
}

#entry .form-box .btn-box .btn.back {
  color: #333333;
  border-radius: 0;
  background-color: #696969;
}

#entry .content-box__telephone {
  line-height: 1.6;
}

.mw_wp_form .error {
  margin-top: 2px;
}

@media (max-width: 767px) {


  #entry .tab-list {
    justify-content: space-between;
  }

  #entry .tab-list-item,
  #entry .item {
    text-align: center;
    width: 47.5%;
    margin: 0;
  }

  #entry .item .tab-list-item {
    width: 100%;
  }


  #entry .form-box {
    padding: 2.5em 1.1em;
  }

  #entry .form-box .tbl__entry.tbl th {
    width: 100%;
    display: block;
    padding-top: 0;
    padding-bottom: 0;
  }

  #entry .form-box .tbl__entry.tbl td {
    width: 100%;
    display: block;
    padding-top: 1em;
    padding-bottom: 2em;
  }

  #entry .form-box .ent_information .txt {}

  /*
  #entry .form-box .step-bar .step {
    padding: 0 1.5em;
  }

  #entry .form-box .step-bar .step-1.step {
    padding-left: 0;
  }

  #entry .form-box .step-bar .step-3.step {
    padding-right: 0;
  }


  #entry .form-box .step-bar .step .inf::before {
    right: -70%;
  }*/

  #entry .form-box .required {
    margin-left: 2em;
    padding: 1px 10px 2px;
    font-size: 10px;
    float: unset;
  }

  #entry .form-box .tbl__entry.tbl {
    margin-bottom: 0;
  }

  #entry .form-box .agree-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #entry .form-box .agree-box .required {
    margin: 1em 0;
  }

  #entry .form-box .btn-box {
    margin: 3em auto 0em;
    flex-direction: column;
  }

  #entry .form-box .btn-box .btn.back {
    margin-bottom: 10px;
  }

  #entry .form-box .mw_wp_form_input .selectbox::before {
    top: 1.1em;
    right: 0.8em;
    border-left: 0.5em solid transparent;
    border-right: 0.5em solid transparent;
    border-top: 0.7em solid #88BA00;
  }
}

@media (max-width: 680px) {


  #entry .form-box .ent_information h2 {
    font-size: 17.5px;
    margin-bottom: 1.5em;
  }

  #entry .form-box .ent_information .txt {
    font-size: 15px;
  }

  #entry .form-box .step-bar .step {
    font-size: 15px;
  }


  #entry .form-box .tbl__entry.tbl th {
    font-size: 15px;
  }

  #entry .form-box .tbl__entry.tbl td {
    font-size: 15px;
  }

  #entry .form-box input[type='text'],
  #entry .form-box input[type='password'],
  #entry .form-box input[type='email'],
  #entry .form-box input[type='tel'],
  #entry .form-box select,
  #entry .form-box textarea {
    padding: 1em 0.9em;
    font-size: 14px;
    width: 100%;
  }

  #entry .form-box .privacy_box.text__contact {
    margin-bottom: 5px;
  }

  #entry .form-box .privacy_box.text__contact .normal {
    font-size: 14px;
    text-align: left;
  }

  #entry .form-box .btn-box .btn {
    font-size: 14px;
  }

  .mw_wp_form .error {
    margin-top: 4px;
  }
}

/*----------------------------------------------------
    privacy PAGE
----------------------------------------------------*/

#main-visual__privacy-policy {
  background: url(../img/recruit/main_visual_bg-privacy.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#privacy-policy .subttl {
  margin-top: 0;
  font-size: 17px;
}

#privacy-policy .box-list {
  margin: 50px 0 0;
}

#privacy-policy .box-list .box {
  margin-bottom: 35px;
  margin-left: 10px;
  font-size: 17px;
}

#privacy-policy .subsub {
  font-size: 20px;
  padding: 0.1em 0.4em;
  border-left: 5px solid #88BA00;
}

#privacy-policy .text-list li {
  padding-bottom: 5px;
  font-size: 17px;
  line-height: 1.8;
  padding-left: 1em;
  text-indent: -1em;
}

#privacy-policy .text-list.ind2 li {
  padding-left: 2em;
}

#privacy-policy .text>p {
  line-height: 2;
}


.non_dec {
  text-decoration: none;
}

.non_dec a {
  text-decoration: none;
}

@media (min-width: 768px) {
  #privacy-policy.section .content-box {
    margin-bottom: 3em;
  }
}

@media (max-width: 767px) {
  #main-visual__privacy-policy {
    background: url(../img/recruit/main_visual_bg-privacy_sp.jpg);
    background-size: contain;
  }

  #privacy-policy .subttl {
    margin-top: 1em;
    font-size: 15px;
  }

  #privacy-policy .text>p {
    line-height: 1.6;
  }

  #privacy-policy .subsub {
    font-size: 15px;
  }

  #privacy-policy .box-list .box {
    font-size: 15px;
    margin-bottom: 40px;
  }

  #privacy-policy .text-list li {
    font-size: 15px;
  }

  #privacy-policy .text-list.ind2 li {}
}

/*----------------------------------------------------
    sample PAGE
----------------------------------------------------*/

#main-visual__sample {
  background: url(../img/recruit/main_visual_bg-company.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 767px) {
  #main-visual__sample {
    background: url(../img/recruit/main_visual_bg-company_sp.jpg);
    background-size: contain;
  }

}