@charset "UTF-8";
@import url(../fonts/Noto/load.css);
@media screen and (min-width: 320px) and (max-width: 767px) {
  	/*全体共通
      --------------------------------------------*/
  .hf-inner .h-right {
    display: none;
  }

  .txt-blc {
    text-align: left;
  }
  .txt-blc p {
    margin-bottom: 20px;
  }
  .txt-blc p:last-child {
    margin-bottom: 0;
  }

  	/*header
      --------------------------------------------*/
  #header {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    background: #fff;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
    top: 0;
    z-index: 1000;
    padding: 10px 0;
  }
  #header h1 {
    display: none;
  }
  #header .logo {
    width: 60%;
    margin: 0 auto;
  }

  /*メインビジュアル
  --------------------------------------------*/
  #main-visual {
    height: 100vw;
    position: relative;
  }
  #main-visual h2 {
    width: 95%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
    z-index: 100;
    top: 58%;
  }
  #main-visual #top-slider {
    height: 100vw;
    position: relative;
  }
  #main-visual #top-slider li {
    height: 100vw;
  }
  #main-visual #top-slider li:nth-child(1) {
    background: url(../img/top/slide01.jpg) center no-repeat;
    background-size: cover;
  }
  #main-visual #top-slider li:nth-child(2) {
    background: url(../img/top/slide02.jpg) center no-repeat;
    background-size: cover;
  }
  #main-visual #top-slider li:nth-child(3) {
    background: url(../img/top/slide03.jpg) center no-repeat;
    background-size: cover;
  }
  #main-visual .bx-wrapper {
    width: 100%;
    height: 100vw;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  #main-visual .bx-viewport {
    overflow: visible !important;
    margin: auto;
    text-align: center;
  }
  #main-visual .bx-pager {
    display: none;
  }
  #main-visual #fixed-btn {
    display: none;
  }

  /*トップページ
  --------------------------------------------*/
  #top01 {
    padding: 45px 0;
    background: url(../img/top/sec01_bgimg01.png) no-repeat, url(../img/top/sec01_bgimg02.png) no-repeat;
    background-position: calc(50% + 450px) 20%, calc(50% - 500px) 70%;
  }
  #top01 .txt-blc {
    background: #fff;
    padding: 15px 10px 20px 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 5px 5px rgba(250, 160, 44, 0.7);
            box-shadow: 5px 5px rgba(250, 160, 44, 0.7);
  }
  #top01 h3 {
    font-size: 6.5vw;
    border-bottom: 5px solid #fa8a12;
    margin-bottom: 15px;
    font-weight: bold;
  }
  #top01 h3 span {
    font-size: 7vw;
    color: #fa8a12;
  }

  #top02 .cont-wrap {
    height: 70vw;
    position: relative;
  }
  #top02 .cont-wrap:first-child {
    background: url(../img/top/sec02_01bg.jpg) center no-repeat;
    background-size: cover;
  }
  #top02 .cont-wrap:last-child {
    background: url(../img/top/sec02_02bg.jpg) center no-repeat;
    background-size: cover;
  }
  #top02 .cont-inner {
    width: 95%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
    background: rgba(250, 160, 44, 0.3);
    padding: 25px 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #top02 h3 {
    font-size: 7vw;
    font-weight: bold;
    color: #fff;
    border-bottom: 1px solid #fff;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  #top02 p {
    color: #fff;
    margin-bottom: 20px;
  }
  #top02 .more-btn {
    width: 75%;
    margin: 0 auto;
    font-weight: bold;
  }
  #top02 .more-btn a {
    color: #fa8a12;
    border: 1px solid #fff;
    padding: 10px 0;
    display: block;
    background: #fff;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-box-shadow: 0 0 1px transparent;
            box-shadow: 0 0 1px transparent;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  #top02 .more-btn a:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fa8a12;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  #top02 .more-btn a:hover, #top02 .more-btn a:focus, #top02 .more-btn a:active {
    color: #fff;
    filter: alpha(opacity=100);
    opacity: 1;
  }
  #top02 .more-btn a:hover:before, #top02 .more-btn a:focus:before, #top02 .more-btn a:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  #top02 .more-btn a span {
    position: relative;
  }
  #top02 .more-btn a span:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent #ffcb40;
    position: absolute;
    left: -25px;
    top: 5px;
    content: '';
  }

  #top03 {
    padding: 45px 0;
    background: url(../img/top/sec03_bg.jpg) center no-repeat, url(../img/top/sec03_bg02.jpg) top center no-repeat;
  }
  #top03 .txt-blc {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
  }
  #top03 h3 {
    width: 65%;
    margin: 0 auto;
    margin-bottom: 20px;
    text-align: center;
  }
  #top03 .more-btn {
    font-size: 4vw;
    font-weight: bold;
    text-align: center;
  }
  #top03 .more-btn a {
    color: #fff;
    padding: 15px 0;
    display: block;
    background: #ffcb40;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(#ffcb40), to(#faa02c));
    background: linear-gradient(to right, #ffcb40 0%, #faa02c 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffcb40', endColorstr='#faa02c',GradientType=1 );
    /* IE6-9 */
  }
  #top03 .more-btn a span {
    position: relative;
  }
  #top03 .more-btn a span:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    left: -25px;
    top: 10px;
    content: '';
  }

  #top04 {
    padding: 45px 0;
    background: url(../img/top/sec04_bg.jpg) center bottom no-repeat;
    background-size: cover;
  }
  #top04 .inbox {
    position: relative;
  }
  #top04 h3 {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  #top04 li {
    position: relative;
    margin-bottom: 30px;
    text-align: left;
  }
  #top04 li:last-child {
    margin-bottom: 0;
  }
  #top04 li a {
    padding: 10px;
    display: block;
    background: #e6e6e6;
  }
  #top04 time {
    width: 35%;
    margin-bottom: 10px;
    display: block;
    background: url(../img/top/time_bg.png);
    text-align: center;
    color: #fff;
    font-size: 3.2vw;
    font-weight: bold;
    padding: 5px 0;
  }
  #top04 time span {
    position: relative;
  }
  #top04 time span:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15px;
    right: auto;
    margin: auto;
    content: '';
    vertical-align: middle;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #top04 .more-btn {
    width: 75%;
    margin: 0 auto;
    margin-top: 20px;
    font-weight: bold;
  }
  #top04 .more-btn a {
    color: #fff;
    padding: 15px 0;
    display: block;
    background: #fbbe3a;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, from(#fbbe3a), color-stop(40%, #faa02c), to(#faa02c));
    background: linear-gradient(to bottom, #fbbe3a 0%, #faa02c 40%, #faa02c 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbbe3a', endColorstr='#faa02c',GradientType=0 );
    /* IE6-9 */
    position: relative;
    z-index: 1;
    -webkit-box-shadow: -5px 5px rgba(255, 203, 64, 0.5);
            box-shadow: -5px 5px rgba(255, 203, 64, 0.5);
  }
  #top04 .more-btn a span {
    position: relative;
  }
  #top04 .more-btn a span:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 30px;
    margin: 0 auto;
    content: '';
  }

  #bnr {
    padding: 45px 0;
    background: url(../img/top/sec05_bg.jpg) center no-repeat;
    background-size: cover;
  }
  #bnr .line {
    padding: 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: url(../img/top/bnr_bgimg.png) left center no-repeat, #fff;
    margin-bottom: 15px;
  }
  #bnr .line-inner {
    border: 1px solid #fa8a12;
    padding: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #bnr h3 {
    font-size: 6vw;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
    text-shadow: #fff 2px 0px,  #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px , #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px,  #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px,  #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
    margin-bottom: 15px;
  }
  #bnr h3 span {
    color: #00b900;
  }
  #bnr p {
    background: url(../img/top/bnr_txtbox.png);
    padding: 15px 10px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  #bnr p span {
    color: #fa8a12;
  }
  #bnr dl {
    width: 50%;
    margin: 0 auto;
  }
  #bnr dl dt {
    background: url(../img/top/time_bg.png);
    font-weight: bold;
    color: #fff;
    padding: 3px 0;
    margin-bottom: 10px;
  }
  #bnr .facebook a {
    border: 5px solid #fff;
    padding: 30px 0;
    display: block;
    background: url(../img/top/fb_bg.png) center no-repeat;
    background-size: cover;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  	/*下層共通
      --------------------------------------------*/
  #sub-visual {
    height: 70vw;
    position: relative;
    background: url(../img/common/sub_visual.png) center no-repeat;
    background-size: cover;
  }
  #sub-visual h2 {
    width: 95%;
    height: 35vw;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
    background: url(../img/common/ttl_box.png) center no-repeat;
    margin: 0 auto;
    padding: 0 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: 63%;
  }
  #sub-visual h2 span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 45%;
  }

  .mv-exterior span,
  .mv-privacy span {
    width: 65% !important;
  }

  .cmn-pd {
    padding: 55px 0;
  }

  .cmn-mb {
    margin-bottom: 45px;
  }

  .cmn-pb {
    padding-bottom: 55px;
  }

  .sub-ttl {
    font-size: 5.5vw;
    color: #fff;
    padding: 5px;
    background: url(../img/common/sub_ttlbg.png);
    margin-bottom: 15px;
    text-align: left;
    font-weight: bold;
  }
  .sub-ttl span {
    border-left: 2px solid #ffcb40;
    padding-left: 10px;
  }

  	/*外構・エクステリア & 公共事業
      --------------------------------------------*/
  .cmn-blc01 .inbox {
    position: relative;
    z-index: 1;
  }
  .cmn-blc01 h3 {
    font-size: 6vw;
    color: #fa8a12;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #faa02c;
    letter-spacing: 2px;
    text-shadow: #fff 2px 0px 0px, #fff -2px 0px 0px, #fff 0px -2px 0px, #fff 0px 2px 0px, #fff 2px 2px 0px, #fff -2px 2px 0px, #fff 2px -2px 0px, #fff -2px -2px 0px, #fff 1px 2px 0px, #fff -1px 2px 0px, #fff 1px -2px 0px, #fff -1px -2px 0px, #fff 2px 1px 0px, #fff -2px 1px 0px, #fff 2px -1px 0px, #fff -2px -1px 0px, #fff 1px 1px 0px, #fff -1px 1px 0px, #fff 1px -1px 0px, #fff -1px -1px 0px;
  }
  .cmn-blc01 h3 span {
    color: #fb7126;
    font-size: 7vw;
    position: relative;
  }
  .cmn-blc01 p {
    margin-bottom: 15px;
    text-align: left;
  }

  .cmn-blc02 h3 {
    font-size: 6.5vw;
    font-weight: bold;
    color: #fb7126;
    margin-bottom: 20px;
    letter-spacing: 2px;
  }
  .cmn-blc02 h3 span {
    border-bottom: 2px solid #fa8a12;
    padding: 0 15px;
  }
  .cmn-blc02 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .cmn-blc02 li {
    width: 48%;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 5vw;
  }
  .cmn-blc02 li:nth-child(2n+1):nth-last-child(-n+2), .cmn-blc02 li:nth-child(2n+1):nth-last-child(-n+2) ~ li {
    margin-bottom: 0;
  }
  .cmn-blc02 .txt-blc {
    background: #fff;
    padding: 15px;
    margin-top: 30px;
  }

  	/*外構・エクステリア
      --------------------------------------------*/
  #exterior01 h3 span:before {
    position: absolute;
    content: '';
    background: url('../img/exterior/exterior_ttl-illust.png?1584503206');
    width: 117px;
    height: 31px;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: -1;
  }

  #exterior02 {
    background: url(../img/exterior/exterior_bg.png) center no-repeat;
    background-size: cover;
  }

  	/*公共工事
      --------------------------------------------*/
  #public01 .inbox:before {
    position: absolute;
    content: '';
    background: url('../img/public/public_bgimg01.png?1584503385');
    width: 305px;
    height: 310px;
    top: 45px;
    right: auto;
    bottom: auto;
    left: calc(50% - 700px);
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: -1;
  }
  #public01 .inbox:after {
    position: absolute;
    content: '';
    background: url('../img/public/public_bgimg02.png?1584503386');
    width: 480px;
    height: 420px;
    top: 150px;
    right: calc(50% - 750px);
    bottom: -180px;
    left: auto;
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: -1;
  }
  #public01 h3 span:before {
    position: absolute;
    content: '';
    background: url('../img/public/public_ttl-border.png?1584503385');
    width: 265px;
    height: 36px;
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: -1;
  }

  #public02 {
    background: url(../img/public/public_bg.png) center no-repeat;
    background-size: cover;
  }

  /*求人情報
  --------------------------------------------*/
  #recruit01 .inbox {
    position: relative;
  }
  #recruit01 .txt-blc {
    margin-bottom: 25px;
  }
  #recruit01 h3 {
    font-size: 5.6vw;
    font-weight: bold;
    position: relative;
    margin-bottom: 20px;
    letter-spacing: 1px;
    border-bottom: 2px dotted #ffcb40;
  }
  #recruit01 h3 span {
    color: #fa8a12;
    font-size: 6.2vw;
  }

  #recruit02 {
    margin-bottom: 185px;
  }
  #recruit02 h3 {
    font-size: 6vw;
    font-weight: bold;
    color: #fb7126;
    margin-bottom: 20px;
  }
  #recruit02 h3 em {
    color: #faa02c;
    font-size: 7vw;
  }
  #recruit02 .horizon {
    overflow: hidden;
    text-align: center;
  }
  #recruit02 .horizon span {
    display: inline-block;
    padding: 0 0.5em;
    position: relative;
  }
  #recruit02 .horizon span:before, #recruit02 .horizon span:after {
    border-top: 2px solid #faa02c;
    content: '';
    position: absolute;
    top: 50%;
    width: 99em;
  }
  #recruit02 .horizon span:before {
    right: 105%;
  }
  #recruit02 .horizon span:after {
    left: 105%;
  }
  #recruit02 li {
    position: relative;
    margin-bottom: 120px;
  }
  #recruit02 li:last-child {
    margin-bottom: 0;
  }
  #recruit02 li dl {
    width: 95%;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -80px;
    background: #fff;
    padding: 15px 15px 20px 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-shadow: 4px 4px rgba(230, 230, 230, 0.8);
            box-shadow: 4px 4px rgba(230, 230, 230, 0.8);
  }
  #recruit02 li dt {
    font-size: 6vw;
    font-weight: bold;
    color: #fb7126;
    border-bottom: 2px solid #fa8a12;
    margin-bottom: 15px;
    position: relative;
  }
  #recruit02 li:nth-child(1) dt:before {
    position: absolute;
    content: '';
    background: url('../img/recruit/point01.png?1584503608');
    width: 120px;
    height: 40px;
    top: -40px;
    right: 0;
    bottom: 0;
    left: -25px;
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  #recruit02 li:nth-child(2) dt:before {
    position: absolute;
    content: '';
    background: url('../img/recruit/point02.png?1584503608');
    width: 120px;
    height: 40px;
    top: -40px;
    right: 0;
    bottom: 0;
    left: -25px;
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  #recruit02 li:nth-child(3) dt:before {
    position: absolute;
    content: '';
    background: url('../img/recruit/point03.png?1584503608');
    width: 120px;
    height: 40px;
    top: -40px;
    right: 0;
    bottom: 0;
    left: -25px;
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  #recruit02 li:nth-child(4) dt:before {
    position: absolute;
    content: '';
    background: url('../img/recruit/point04.png?1584503608');
    width: 120px;
    height: 40px;
    top: -40px;
    right: 0;
    bottom: 0;
    left: -25px;
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
  }

  #recruit03 .recruit-tbl {
    margin-bottom: 40px;
  }
  #recruit03 .recruit-tbl li:before {
    content: '・';
  }
  #recruit03 .bnr {
    background: url(../img/recruit/bnr_bg.png) no-repeat;
    background-size: cover;
    border: 5px solid #fa8a12;
    padding: 10px 20px 15px 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #recruit03 .bnr .bnr-ttl {
    font-size: 5.5vw;
    font-weight: bold;
    border-bottom: 3px double #fb7126;
    text-shadow: #fff 1px 1px 0, #fff -1px -1px 0, #fff -1px 1px 0, #fff 1px -1px 0, #fff 0px 1px 0, #fff -1px 0, #fff -1px 0 0, #fff 1px 0 0;
    /*上、下*/
    position: relative;
    margin-bottom: 25px;
    text-align: center;
  }
  #recruit03 .bnr .bnr-ttl span {
    font-size: 7vw;
    color: #fa8a12;
    position: relative;
    z-index: 1;
    display: block;
  }
  #recruit03 .bnr .bnr-ttl span:before {
    position: absolute;
    content: '';
    background: url('../img/recruit/bnr_illust.png?1584502944');
    width: 423px;
    height: 63px;
    top: auto;
    right: 0;
    bottom: -30px;
    left: 0;
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: -1;
    width: 100%;
    background-size: 100%;
  }
  #recruit03 .bnr .bnr-ttl:before {
    position: absolute;
    content: '';
    background: url('../img/recruit/bnr_markup.png?1584502944');
    width: 141px;
    height: 124px;
    top: -5%;
    right: auto;
    bottom: 0;
    left: -10%;
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
    width: 25%;
    background-size: 100%;
  }
  #recruit03 .bnr p {
    text-align: left;
    margin-bottom: 15px;
  }
  #recruit03 .bnr .tel {
    font-weight: bold;
    font-size: 6vw;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  #recruit03 .bnr .tel a {
    position: relative;
    color: #fa8a12;
    padding-left: 25px;
  }
  #recruit03 .bnr .tel a:before {
    position: absolute;
    content: '';
    background: url('../img/common/tel.png?1584426188');
    width: 17px;
    height: 28px;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    /* Safari用 */
    transform: translateY(-50%);
    z-index: 10;
  }
  #recruit03 .bnr .mail {
    font-size: 4vw;
    font-weight: bold;
  }
  #recruit03 .bnr .mail a {
    color: #fff;
    padding: 10px 5px 10px 25px;
    display: block;
    background: #fa8a12;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(#fa8a12), to(#ffcb40));
    background: linear-gradient(to right, #fa8a12 0%, #ffcb40 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fa8a12', endColorstr='#ffcb40',GradientType=1 );
    /* IE6-9 */
    border-radius: 4px;
  }
  #recruit03 .bnr .mail a span {
    position: relative;
  }
  #recruit03 .bnr .mail a span:before {
    position: absolute;
    content: '';
    background: url('../img/common/mail01.png?1584426188');
    width: 22px;
    height: 16px;
    top: 0;
    right: auto;
    bottom: 0;
    left: -11%;
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    /* Safari用 */
    transform: translateY(-50%);
    z-index: 10;
  }

  	/*会社概要
      --------------------------------------------*/
  #company01 .txt-blc {
    margin-bottom: 15px;
  }
  #company01 .txt-blc .orner {
    font-weight: bold;
  }

  #company02 .company-tbl {
    margin-bottom: 35px;
  }
  #company02 .map h4 {
    font-weight: bold;
    color: #fa8a12;
    font-size: 4vw;
    text-align: left;
    border-bottom: 3px solid #fa8a12;
    margin-bottom: 10px;
    padding-bottom: 5px;
  }
  #company02 .map h4 span {
    position: relative;
    padding-left: 25px;
  }
  #company02 .map h4 span:before {
    position: absolute;
    content: '';
    background: url('../img/company/pin.png?1584503431');
    width: 16px;
    height: 23px;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    transition: all .3s;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    /* Safari用 */
    transform: translateY(-50%);
    z-index: 10;
  }
  #company02 .map iframe {
    height: 250px;
  }

  /*footer
  --------------------------------------------*/
  #footer .ft-nav {
    background: #f2f2f2;
    padding: 5px 0;
  }
  #footer .ft-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #footer .ft-nav li {
    font-size: 3.1vw;
    padding: 0 5px;
    position: relative;
  }
  #footer .ft-nav li:after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    /* Safari用 */
    transform: translateY(-50%);
    z-index: 10;
    right: 0;
    content: '|';
  }
  #footer .ft-nav li:nth-last-child(n+5) {
    display: none;
  }
  #footer .ft-nav li:last-child:after {
    content: '';
  }
  #footer .logo {
    display: none;
  }
  #footer #copyright {
    background: #fa8a12;
    color: #fff;
    font-size: 10px;
    padding: 3px 0;
  }
  #footer #copyright a {
    color: #fff;
  }
}
