@charset "UTF-8";
/* normal */
/* pink */
/* purple */
/* brown */
/* kusumi */
/* green */
/* aqua */
/* blue */
/* orange */
/* red */
/* gold */
/* yellow */
/*---------------------------------------------------------------
　　　common
---------------------------------------------------------------*/
/* normal
$mainColor: #333;
$nukiColor: #fff; */
/* pink
$mainColor: #FF6185;/*

/* purple
$mainColor: #643D8A;*/
/* brown
$mainColor: #694d0c;*/
/* kusumi
$mainColor: #9C9583;*/
/* green
$mainColor: #00A82E;*/
/* aqua
$mainColor: #38BAA9;*/
/* blue
$mainColor: #296696;*/
/* orange
$mainColor: #F78102;*/
/* red
$mainColor: #DE2F1D;*/
/* gold
$mainColor: #bea327;*/
/* yellow
$mainColor: #FFC900;
$nukiColor: #333333;*/
html {
  font-size: 62.5%;
}

.forSP {
  display: none;
}

@media all and (max-width: calc(960px - 1px)) {
  .forSP {
    display: block;
  }
}

.forPC {
  display: block;
}

@media all and (max-width: calc(960px - 1px)) {
  .forPC {
    display: none;
  }
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: #241b04;
}

a:hover {
  text-decoration: none;
}

body {
  background: white;
  margin: 0;
  padding: 0;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  color: #3c3c3c;
}

/*---------------------------------------------------------------
　　　header
---------------------------------------------------------------*/
nav {
  display: block;
  width: 90px;
  height: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}

@media all and (max-width: calc(560px - 1px)) {
  nav {
    width: 70px;
  }
}

nav a {
  width: 100%;
  text-align: center;
  display: block;
  padding: 10px 0;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background: rgba(105, 77, 12, 0.8);
  border-radius: 0 0 0 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media all and (max-width: calc(560px - 1px)) {
  nav a {
    padding: 7px 0;
    height: 80px;
  }
}

nav a:hover {
  color: #fff;
  background: rgba(105, 77, 12, 0.5);
}

nav a span {
  font-size: 5rem;
  display: block;
  margin: 0 auto 5px;
}

@media all and (max-width: calc(560px - 1px)) {
  nav a span {
    font-size: 4rem;
  }
}

header {
  height: 800px;
  display: block;
  position: relative;
  overflow: hidden;
}

@media all and (max-width: calc(560px - 1px)) {
  header {
    height: calc(100vh - 70px);
  }
}

header:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 90px;
  left: 0;
}

@media all and (max-width: calc(560px - 1px)) {
  header:before {
    top: 80px;
  }
}

header.h-none:before {
  top: 0;
}

header.bk25:before {
  background: rgba(0, 0, 0, 0.25);
}

header.bk50:before {
  background: rgba(0, 0, 0, 0.5);
}

header.bk60:before {
  background: rgba(0, 0, 0, 0.6);
}

header.bkdotted:before {
  background: image-url("bg_dotted.png") repeat top left;
}

header h1.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  height: 90px;
  background: #fff;
  text-align: left;
}

@media all and (max-width: calc(560px - 1px)) {
  header h1.logo {
    height: 80px;
  }
}

header h1.logo img {
  display: block;
  max-width: 200px;
  max-height: 90px;
  margin: 0 30%;
}

@media all and (max-width: calc(560px - 1px)) {
  header h1.logo img {
    width: 100%;
    max-width: 120px;
    max-height: 80px;
    margin: auto 0 auto 10%;
  }
}

header > img {
  width: 100%;
  height: calc(800px - 90px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media all and (max-width: calc(560px - 1px)) {
  header > img {
    height: 100vh;
  }
}

header .head_text {
  width: 100%;
  height: calc(800px - 90px);
  position: absolute;
  top: 90px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
}

@media all and (max-width: calc(560px - 1px)) {
  header .head_text {
    height: 100vh;
  }
}

header .head_text > div {
  display: inline-block;
  text-align: center;
}

header .head_text > div p.catch {
  font-size: 7rem;
  text-align: center;
  color: #fff;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  width: 100%;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media all and (max-width: calc(960px - 1px)) and (min-width: 560px) {
  header .head_text > div p.catch {
    font-size: 5rem;
  }
}

@media all and (max-width: calc(560px - 1px)) {
  header .head_text > div p.catch {
    font-size: 3rem;
  }
}

header.h-none .head_text {
  top: 0;
}

/*---------------------------------------------------------------
    footer
---------------------------------------------------------------*/
footer {
  clear: both;
  text-align: center;
  background: #694d0c;
  color: #fff;
  padding: 30px 0;
  position: relative;
}

footer a.pagetop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 40px;
  width: 60px;
  height: 60px;
  position: fixed;
  background: rgba(60, 60, 60, 0.6);
  border-radius: 50px;
  position: absolute;
  right: 3%;
  bottom: -100px;
  z-index: 1000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

footer a.pagetop.fixed {
  position: fixed;
  right: 3%;
  bottom: 0;
  z-index: 1000;
}

footer a.pagetop:hover {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}

footer copyright {
  text-align: center;
}

/*---------------------------------------------------------------
    common
---------------------------------------------------------------*/
/*---------------------------------------------------------------
    コンテンツ
---------------------------------------------------------------*/
/*---------------------------------------------------------------
    contents
---------------------------------------------------------------*/
#contents {
  width: 100%;
  margin: auto;
  text-align: center;
}

.inner {
  width: 90%;
  max-width: 960px;
  padding: 60px 0;
  margin: auto;
}

/*--------  mokuji  ---------------*/
#mokuji {
  width: 90%;
  margin: auto;
  padding: 60px 0;
  position: relative;
}

@media all and (max-width: calc(560px - 1px)) {
  #mokuji {
    width: 100%;
  }
}

#mokuji .inner {
  /*border-top: 4px $fontColor double;
      border-bottom: 4px $fontColor double;*/
  position: relative;
  padding: 0 0;
  max-width: 600px;
}

#mokuji h2 {
  font-size: 2.4rem;
  line-height: 2em;
  background: #fff;
  text-align: center;
  font-weight: bold;
  padding-right: 1.5em;
  /*position: absolute;
      top: -1.2em;
      left: calc(50% - 70px);*/
}

#mokuji h2:before {
  content: "\e91a";
  font-family: "icomoon";
  font-size: 4rem;
  color: #3b2b07;
  vertical-align: middle;
}

#mokuji ul {
  margin: 15px auto 15px;
  padding: 20px 0;
  text-align: center;
  position: relative;
  width: 90%;
  max-width: 500px;
}

#mokuji ul:before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: -1;
  border-left: 2px solid #694d0c;
  border-top: 2px solid #694d0c;
}

#mokuji ul:after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: -2px;
  right: -2px;
  z-index: -1;
  border-right: 2px solid #694d0c;
  border-bottom: 2px solid #694d0c;
}

#mokuji ul li {
  position: relative;
}

@media all and (max-width: calc(560px - 1px)) {
  #mokuji ul li {
    font-size: 1.2rem;
  }
}

#mokuji ul li a {
  color: #3c3c3c;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#mokuji ul li a:hover {
  color: #694d0c;
}

.contents_box {
  /*slick setting*/
}

.contents_box:nth-child(even) {
  background: rgba(105, 77, 12, 0.15);
}

.contents_box h2 {
  font-size: 4rem;
  color: #3c3c3c;
  text-align: center;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 35px;
}

@media all and (max-width: calc(560px - 1px)) {
  .contents_box h2 {
    font-size: 2.6rem;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}

.contents_box h2 span {
  display: block;
  font-size: 5.5rem;
  margin-bottom: 10px;
}

.contents_box h2:after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  border-top: 2px solid #694d0c;
  position: absolute;
  bottom: 0;
  left: calc(50% - 50px);
}

.contents_box h3 {
  font-size: 3rem;
  color: #3b2b07;
  text-align: center;
  margin-bottom: 35px;
}

@media all and (max-width: calc(560px - 1px)) {
  .contents_box h3 {
    font-size: 2rem;
  }
}

.contents_box p {
  font-size: 1.6rem;
  text-align: left;
  line-height: 2em;
  margin-bottom: 35px;
}

@media all and (max-width: calc(560px - 1px)) {
  .contents_box p {
    font-size: 1.4rem;
  }
}

.contents_box .slider {
  margin: 50px auto;
  width: 90%;
}

.contents_box .slick-prev:before {
  content: "\e916";
  font-family: "icomoon";
  color: #694d0c;
  width: 35px;
  height: 66px;
  display: block;
  position: absolute;
  top: calc(50% - 33px);
  left: -25px;
  font-size: 6rem;
  line-height: 66px;
  text-align: center;
}

@media all and (max-width: calc(560px - 1px)) {
  .contents_box .slick-prev:before {
    width: 18px;
    height: 33px;
    top: calc(50% - 16px);
    left: -2px;
    font-size: 3rem;
    line-height: 33px;
  }
}

.contents_box .slick-next:before {
  content: "\e917";
  font-family: "icomoon";
  color: #694d0c;
  width: 35px;
  height: 66px;
  display: block;
  position: absolute;
  top: calc(50% - 33px);
  right: -25px;
  font-size: 6rem;
  line-height: 66px;
}

@media all and (max-width: calc(560px - 1px)) {
  .contents_box .slick-next:before {
    width: 18px;
    height: 33px;
    top: calc(50% - 16px);
    right: -2px;
    font-size: 3rem;
    line-height: 33px;
  }
}

.contents_box ul.slick-dots li button:before {
  color: #694d0c !important;
}

.contents_box ul.slick-dots li.slick-active button:before {
  color: #694d0c !important;
}

.contents_box.textbase .slider {
  margin: 50px auto;
  width: 100%;
}

@media all and (max-width: calc(560px - 1px)) {
  .contents_box.textbase .slider {
    width: 90%;
  }
}

.contents_box.textbase .slider li {
  margin: 0 0.2%;
}

.contents_box.basic02 .basic02_slider {
  margin: 50px auto;
  width: 100%;
}

@media all and (max-width: calc(560px - 1px)) {
  .contents_box.basic02 .basic02_slider {
    width: 90%;
  }
}

.contents_box.basic02 .basic02_slider li {
  margin: 0 0.2%;
}

@media all and (max-width: calc(560px - 1px)) {
  .contents_box.basic02 h2 {
    text-align: left;
  }
}

.contents_box.movie p {
  text-align: center;
}

@media all and (max-width: calc(560px - 1px)) {
  .contents_box.movie p {
    text-align: left;
  }
}

.contents_box.movie .movie_box {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  margin-bottom: 50px;
}

.contents_box.movie .movie_box iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.contents_box.photo .photo_slider {
  margin: 50px auto;
  width: 90%;
}

.contents_box.photo .photo_slider p {
  text-align: center;
  font-size: 1.6rem;
  padding: 10px 0 0;
  margin-bottom: 10px;
}

@media all and (max-width: calc(560px - 1px)) {
  .contents_box.photo .photo_slider p {
    font-size: 1.4rem;
  }
}

.contents_box.staff .profile_slider {
  margin: 50px auto;
  width: 90%;
}

.contents_box.staff ul.profile .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contents_box.staff ul.profile .slick-slide {
  height: auto !important;
}

.contents_box.staff ul.profile li {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 10px 0.3%;
  overflow: hidden;
  background: #fff;
}

.contents_box.staff ul.profile li .p_img {
  position: relative;
}

.contents_box.staff ul.profile li .p_img:after {
  content: "";
  display: block;
  border-left: 50vw solid transparent;
  border-bottom: 80px solid #fff;
  position: absolute;
  bottom: 0;
  z-index: 10;
}

@media all and (max-width: calc(560px - 1px)) {
  .contents_box.staff ul.profile li .p_img:after {
    border-left: 100vw solid transparent;
    border-bottom: 80px solid #fff;
  }
}

.contents_box.staff ul.profile li .p_name {
  background: #3b2b07;
  text-align: center;
  color: #fff;
  width: 80%;
  margin: -3em auto 1em;
  position: relative;
  z-index: 20;
  font-size: 1.4rem;
  padding: 10px 0 12px;
}

.contents_box.staff ul.profile li .p_name p {
  text-align: center;
  font-size: 2rem;
  padding: 0;
  margin: 0;
  line-height: 1.1;
}

.contents_box.staff ul.profile li .p_txt {
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 0 20px;
}

.contents_box.flow .inner > ol > li {
  position: relative;
  padding: 70px 0 70px 120px;
  border-bottom: 1px #694d0c dotted;
}

@media all and (max-width: calc(560px - 1px)) {
  .contents_box.flow .inner > ol > li {
    padding: 30px 0 30px 60px;
  }
}

.contents_box.flow .inner > ol > li:after {
  content: "";
  display: block;
  background: #694d0c;
  width: 1px;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 45px;
  z-index: -1;
}

@media all and (max-width: calc(560px - 1px)) {
  .contents_box.flow .inner > ol > li:after {
    left: 20px;
  }
}

.contents_box.flow .inner > ol > li:first-child:after {
  height: calc(100% - 85px);
}

@media all and (max-width: calc(560px - 1px)) {
  .contents_box.flow .inner > ol > li:first-child:after {
    height: calc(100% - 50px);
  }
}

.contents_box.flow .inner > ol > li:last-child:after {
  height: 100px;
  bottom: auto;
  top: 0;
}

@media all and (max-width: calc(560px - 1px)) {
  .contents_box.flow .inner > ol > li:last-child:after {
    height: 50px;
  }
}

.contents_box.flow .inner > ol > li:before {
  content: "1";
  display: block;
  background: #694d0c;
  color: #fff;
  width: 90px;
  height: 90px;
  border-radius: 90px;
  line-height: 90px;
  position: absolute;
  top: 50px;
  left: 0;
  font-size: 3rem;
  font-family: arial;
  font-weight: bold;
}

@media all and (max-width: calc(560px - 1px)) {
  .contents_box.flow .inner > ol > li:before {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    line-height: 40px;
    font-size: 2rem;
    top: 30px;
  }
}

.contents_box.flow .inner > ol > li:nth-child(2):before {
  content: "2";
}

.contents_box.flow .inner > ol > li:nth-child(3):before {
  content: "3";
}

.contents_box.flow .inner > ol > li:nth-child(4):before {
  content: "4";
}

.contents_box.flow .inner > ol > li:nth-child(5):before {
  content: "5";
}

.contents_box.flow .inner > ol > li:nth-child(6):before {
  content: "6";
}

.contents_box.flow .inner > ol > li:nth-child(7):before {
  content: "7";
}

.contents_box.flow .inner > ol > li:nth-child(8):before {
  content: "8";
}

.contents_box.flow .inner > ol > li:nth-child(9):before {
  content: "9";
}

.contents_box.flow .inner > ol > li:nth-child(10):before {
  content: "10";
}

.contents_box.flow .inner > ol > li:nth-child(11):before {
  content: "11";
}

.contents_box.flow .inner > ol > li:nth-child(12):before {
  content: "12";
}

.contents_box.flow .inner > ol > li h3 {
  text-align: left;
  font-size: 3rem;
  margin: 0 0 10px;
}

@media all and (max-width: calc(560px - 1px)) {
  .contents_box.flow .inner > ol > li h3 {
    font-size: 2.2rem;
  }
}

.contents_box.flow .inner > ol > li p {
  margin: 0;
}

.contents_box.entry .inner table {
  width: 100%;
  max-width: 500px;
  margin: auto;
}

.contents_box.entry .inner table th, .contents_box.entry .inner table td {
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contents_box.entry .inner table th {
  width: 7em;
}

.contents_box.entry .inner table td {
  width: calc(100% - 7em);
  text-align: left;
}

.contents_box.entry .inner table td label {
  width: 100%;
}

.contents_box.entry .inner table td.gender label {
  width: auto;
}

.contents_box.entry .inner table td input,
.contents_box.entry .inner table td select {
  padding: 10px;
  font-size: 1.6rem;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contents_box.entry .inner table td input.w100,
.contents_box.entry .inner table td select.w100 {
  width: 100%;
}

.contents_box.entry .inner table td input:focus,
.contents_box.entry .inner table td select:focus {
  outline: none;
}

.contents_box.entry .inner table td select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contents_box.entry .inner table td select:after {
  content: "\e903";
  font-family: "icomoon";
  color: #3c3c3c;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  position: absolute;
  right: 30px;
  top: 0;
  padding: 0 0 2px;
  pointer-events: none;
}

.contents_box.entry .inner table td.btn_entry {
  text-align: center;
  padding: 30px 0;
  width: 100%;
}

.contents_box.entry .inner table td.btn_entry input {
  background: #694d0c;
  color: #fff;
  width: 50% !important;
  border-radius: 4em;
  margin: auto;
  font-size: 1.8rem;
}

/*---------------------------------------------------------------
    求人
---------------------------------------------------------------*/
/*---------------------------------------------------------------
    求人
---------------------------------------------------------------*/
#other_jobs_block {
  margin: auto;
  background: #eee;
  border: none;
}

#other_jobs_block.card {
  margin-top: 70px !important;
}

@media all and (max-width: calc(560px - 1px)) {
  #other_jobs_block.card {
    margin-top: 0px !important;
  }
}

#recruit #other_jobs_block.card {
  margin-top: 0 !important;
}

#other_jobs_block .card-header {
  color: white;
  background: #3c3c3c;
  padding: 15px;
  text-align: center;
  border: none;
  font-size: 2rem;
}

#other_jobs_block .card-header:before {
  content: "\e908";
  font-family: "icomoon";
  color: #fff;
  font-size: 1.2em;
  vertical-align: middle;
}

#other_jobs_block .inner {
  width: 90%;
  max-width: 960px;
  padding: 60px 0;
  margin: auto;
}

#other_jobs_block .selectdiv {
  position: relative;
  min-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: white;
}

@media all and (max-width: calc(560px - 1px)) {
  #other_jobs_block .selectdiv {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

#other_jobs_block .selectdiv dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 27%;
  border-right: 3px solid #eee;
  margin-bottom: 0;
}

@media all and (max-width: calc(560px - 1px)) {
  #other_jobs_block .selectdiv dl {
    width: 100%;
    border-right: none;
    border-bottom: 3px solid #eee;
  }
}

#other_jobs_block .selectdiv dl dt, #other_jobs_block .selectdiv dl dd {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #694d0c;
  line-height: 50px;
}

#other_jobs_block .selectdiv dl dt {
  width: 6em;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
}

@media all and (max-width: calc(560px - 1px)) {
  #other_jobs_block .selectdiv dl dt {
    width: 8em;
  }
}

#other_jobs_block .selectdiv dl dt span {
  font-weight: bold;
}

#other_jobs_block .selectdiv dl dd {
  width: calc(100% - 6em);
  background: white;
  position: relative;
}

@media all and (max-width: calc(560px - 1px)) {
  #other_jobs_block .selectdiv dl dd {
    width: calc(100% - 8em);
  }
}

#other_jobs_block .selectdiv dl dd:after {
  content: "\e917";
  font-family: "icomoon";
  color: #3c3c3c;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  position: absolute;
  right: 30px;
  top: 0;
  padding: 0 0 2px;
  pointer-events: none;
}

@media all and (max-width: calc(560px - 1px)) {
  #other_jobs_block .selectdiv dl dd:after {
    right: 15px;
  }
}

#other_jobs_block .selectdiv dl dd label {
  margin: 0;
  width: 100%;
}

#other_jobs_block .selectdiv_box {
  width: 19%;
  text-align: right;
  line-height: 50px;
  padding-right: 1em;
}

@media all and (max-width: calc(560px - 1px)) {
  #other_jobs_block .selectdiv_box {
    width: 100%;
  }
}

#other_jobs_block .selectdiv_box span {
  font-size: 2rem;
}

#other_jobs_block .selectdiv select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100% !important;
  height: 50px;
  padding: 0px 24px;
  font-size: 16px;
  color: #3c3c3c;
  background: white;
  border: none;
  -ms-word-break: normal;
  word-break: normal;
  position: relative;
  /* IE11 hide native button (thanks Matt!) */
}

#other_jobs_block .selectdiv select:focus {
  outline: none;
}

#other_jobs_block .selectdiv select::-ms-expand {
  display: none;
}

#other_jobs_block ul#other_jobs_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  margin: 50px auto;
  max-width: 1024px;
}

@media all and (max-width: calc(560px - 1px)) {
  #other_jobs_block ul#other_jobs_list {
    margin: 25px auto 50px;
  }
}

#other_jobs_block ul#other_jobs_list li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc((100% - 60px)/3);
  margin: 10px 0;
  border: none;
  border-left: #694d0c 3px solid;
  position: relative;
}

#other_jobs_block ul#other_jobs_list li:not(:nth-of-type(3n)) {
  margin-right: 30px;
}

@media all and (max-width: calc(560px - 1px)) {
  #other_jobs_block ul#other_jobs_list li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  #other_jobs_block ul#other_jobs_list li:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
}

#other_jobs_block ul#other_jobs_list li.w100 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#other_jobs_block ul#other_jobs_list li.w100:not(:nth-of-type(3n)) {
  margin-right: 0;
}

#other_jobs_block ul#other_jobs_list li a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#other_jobs_block ul#other_jobs_list li a:hover {
  background: rgba(238, 238, 238, 0.2);
}

#other_jobs_block ul#other_jobs_list li .jobs_location_img {
  padding: 5px 0 10px;
}

#other_jobs_block ul#other_jobs_list li .jobs_location_img img {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media all and (max-width: calc(560px - 1px)) {
  #other_jobs_block ul#other_jobs_list li .jobs_location_img {
    width: 40%;
  }
}

@media all and (max-width: calc(560px - 1px)) {
  #other_jobs_block ul#other_jobs_list li .jobs_location_textbox {
    width: 55%;
    margin-left: 5%;
  }
}

#other_jobs_block ul#other_jobs_list li.w100 .jobs_location_img {
  width: 42%;
}

#other_jobs_block ul#other_jobs_list li.w100 .jobs_location_img img {
  height: 120px;
}

#other_jobs_block ul#other_jobs_list li.w100 .jobs_location_textbox {
  width: 55%;
  margin-left: 3%;
}

#other_jobs_block ul#other_jobs_list li .jobs_location_text {
  font-size: 14px;
  text-align: left;
}

#other_jobs_block ul#other_jobs_list li .jobs_title {
  color: #3c3c3c;
  font-weight: bold;
  font-size: 1.1em;
  text-align: left;
}

@media all and (max-width: calc(560px - 1px)) {
  #other_jobs_block ul#other_jobs_list li .jobs_title {
    font-size: 1em;
  }
}

#other_jobs_block ul#other_jobs_list li .jobs_address_text {
  font-size: 14px;
  text-align: left;
}

#other_jobs_block ul#other_jobs_list li .jobs_address_text:before {
  content: "\e915";
  font-family: "icomoon";
  color: #3c3c3c;
  padding: 0 0 2px;
  pointer-events: none;
  font-size: 1.2em;
  font-weight: bold;
}
/*# sourceMappingURL=styles_brown.css.map */