@charset "UTF-8";
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: ローディング*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
.loadingBar {
  width: 0;
  height: 2px;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.2s linear 0s;
  z-index: 300001; }

#loadbg {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999999999; }
  @media print {
    #loadbg {
      display: none; } }

#loadbg-logo {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/logo.svg);
  background-size: 800px auto;
  background-repeat: no-repeat;
  background-position: center; }
  @media screen and (max-width: 768px) {
    #loadbg-logo {
      background-size: 70% auto; } }

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: カラー */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: ボタン */
.btn_box .btn_lead_text {
  margin: 5px auto;
  text-align: center;
  font-size: 20px;
  font-weight: bold; }
  @media screen and (max-width: 768px) {
    .btn_box .btn_lead_text {
      font-size: 4vw; } }
.btn_box .btn {
  background: #D01518;
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  max-width: 385px;
  width: 90%;
  height: 80px;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  overflow: hidden;
  margin: auto; }
  @media screen and (max-width: 768px) {
    .btn_box .btn {
      font-size: 3.8vw;
      height: auto;
      padding: 4vw 2vw; } }
  .btn_box .btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 120%;
    height: 100%;
    background-color: #fff;
    -webkit-transform-origin: right top;
    -moz-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: skewX(-30deg) scale(0, 1);
    -moz-transform: skewX(-30deg) scale(0, 1);
    -ms-transform: skewX(-30deg) scale(0, 1);
    transform: skewX(-30deg) scale(0, 1);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -moz-transition: transform 0.3s, -moz-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s; }
  .btn_box .btn:hover {
    color: #D01518; }
    .btn_box .btn:hover:after {
      -webkit-transform-origin: left top;
      -moz-transform-origin: left top;
      -ms-transform-origin: left top;
      transform-origin: left top;
      -webkit-transform: skewX(-30deg) scale(1, 1);
      -moz-transform: skewX(-30deg) scale(1, 1);
      -ms-transform: skewX(-30deg) scale(1, 1);
      transform: skewX(-30deg) scale(1, 1); }

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: PC/SP共通 */
.mincho {
  font-family: '游明朝体', 'Yu Mincho', YuMincho, 'ヒラギノ明朝 Pro', 'Hiragino Mincho Pro', 'MS P明朝', 'MS PMincho', serif; }

.Roboto {
  font-family: 'Roboto', sans-serif; }

sub {
  bottom: 0;
  font-size: 0.5em; }

.container {
  max-width: 1000px;
  width: 90%;
  margin: auto;
  padding: 80px 0; }
  @media screen and (max-width: 768px) {
    .container {
      padding: 14vw 0; } }

.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex; }

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: PC */
@media screen and (min-width: 769px), print {
  .nosp {
    display: block; }

  .nopc {
    display: none; }

  html {
    font-size: 10px; }

  #contents {
    width: 100%; }
    #contents b {
      color: #000; }

  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: パンくず */
  .breadcrumb {
    max-width: 1140px;
    margin: auto;
    padding: 10px 0;
    width: 90%;
    font-size: 1.2rem; }
    .breadcrumb span + span {
      margin-left: 3px; }

  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: メインビジュアル */
  .mainVisual .mainVisual_inner {
    background-image: url(../images/kv_img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0 35px; }
    .mainVisual .mainVisual_inner .title {
      text-align: center;
      font-size: 42px;
      font-weight: 700;
      color: #fff;
      position: relative; }
      .mainVisual .mainVisual_inner .title::after {
        content: "";
        display: block;
        width: 290px;
        height: 2px;
        background-color: #fff;
        left: 0;
        right: 0;
        margin: 20px auto 0; }
    .mainVisual .mainVisual_inner .sub {
      color: #fff;
      font-size: 30px;
      font-weight: bold;
      line-height: 1.4;
      margin-top: 30px;
      text-align: center; }

  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: コンテンツリスト */
  #land-recruitment {
    color: #444; }
    #land-recruitment img {
      width: 100%;
      height: auto; }
    #land-recruitment .section-title {
      font-size: 30px;
      font-weight: bold;
      text-align: center;
      line-height: 1.4;
      display: inline-block;
      margin: 0 auto 30px; }
      #land-recruitment .section-title:after {
        content: '';
        display: block;
        max-width: 290px;
        width: 80%;
        height: 2px;
        background-color: #D01518;
        margin: 10px auto; }
    #land-recruitment .text {
      font-size: 20px; }
    #land-recruitment .sec1 {
      text-align: center; }
      #land-recruitment .sec1 .image {
        margin-top: -12vw; }
    #land-recruitment .sec2 {
      text-align: center; }
      #land-recruitment .sec2 .container {
        width: 100%; }
      #land-recruitment .sec2 i {
        text-align: center; }
        #land-recruitment .sec2 i img {
          width: 76px;
          height: 60px; }
      #land-recruitment .sec2 .title {
        color: #D01518;
        font-size: 26px;
        margin: 15px auto; }
      #land-recruitment .sec2 .image {
        width: 65%;
        margin: 0;
        position: absolute;
        top: 0;
        z-index: -1; }
      #land-recruitment .sec2 .caption {
        background-color: rgba(255, 255, 255, 0.8);
        width: 45%;
        margin-top: 100px;
        padding: 20px 40px; }
      #land-recruitment .sec2 .text {
        font-size: 18px;
        line-height: 2;
        text-align: left;
        font-weight: lighter;
        margin-bottom: 0; }
      #land-recruitment .sec2 .box {
        position: relative;
        overflow: hidden;
        padding: 30px 0 60px; }
        #land-recruitment .sec2 .box.image-left .image {
          left: 0; }
        #land-recruitment .sec2 .box.image-left .caption {
          float: right; }
        #land-recruitment .sec2 .box.image-right {
          padding-bottom: 0; }
          #land-recruitment .sec2 .box.image-right .image {
            right: 0; }
          #land-recruitment .sec2 .box.image-right .caption {
            left: 0; }
    #land-recruitment .sec3 {
      text-align: center; }
      #land-recruitment .sec3 .container {
        width: 100%; }
      #land-recruitment .sec3 .list {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
        border-top: 1px solid #444; }
        #land-recruitment .sec3 .list + .list {
          border-bottom: 1px solid #444; }
        #land-recruitment .sec3 .list dt {
          width: 30%;
          font-size: 20px;
          font-weight: bold;
          line-height: 165px;
          background-color: #F2ECEC; }
        #land-recruitment .sec3 .list dd {
          width: 70%;
          text-align: left;
          background-color: #FFF;
          font-size: 16px;
          font-weight: lighter;
          padding: 0 1em;
          line-height: 1.8; }
        #land-recruitment .sec3 .list li {
          text-indent: -1em;
          padding-left: 1em; }
    #land-recruitment .sec4 {
      text-align: center;
      position: relative; }
      #land-recruitment .sec4:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 430px;
        background-color: #f2ecec;
        display: block;
        bottom: 0;
        z-index: -2; }
      #land-recruitment .sec4 .container {
        width: 100%; }
      #land-recruitment .sec4 .box {
        width: 45%;
        position: relative;
        margin: 40px auto 40px; }
      #land-recruitment .sec4 .caption {
        background-color: rgba(255, 255, 255, 0.8);
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 15px;
        text-align: left;
        box-sizing: border-box; }
      #land-recruitment .sec4 .title {
        font-size: 24px;
        font-weight: bold; }
      #land-recruitment .sec4 .tel {
        font-size: 26px;
        font-weight: bold;
        padding-left: 40px;
        background-image: url(../images/icon03.svg);
        background-size: 28px;
        background-position: left center;
        background-repeat: no-repeat;
        line-height: 2; }
      #land-recruitment .sec4 .date {
        font-size: 15px; }
    #land-recruitment .sec5 {
      background-image: url(../images/06.jpg);
      background-size: cover;
      background-position: top center;
      text-align: center; }
      #land-recruitment .sec5 .container {
        width: 100%;
        max-width: 100%;
        padding: 160px 0; }
      #land-recruitment .sec5 .btn_box {
        justify-content: center; }
        #land-recruitment .sec5 .btn_box .btn {
          margin: 35px; }

  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: バナーエリア */
  .bnr_area {
    margin-top: 0; }

  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: アニメーション */ }
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: SP */
@media screen and (max-width: 768px) {
  * {
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .nosp {
    display: none; }

  .nopc {
    display: block; }

  #container header {
    top: 0; }
  #container #contents {
    padding-top: 9.375vw; }

  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: SP メインビジュアル */
  .mainVisual .mainVisual_inner {
    background-image: url(../images/kv_img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20vw 0 8vw; }
    .mainVisual .mainVisual_inner .title {
      text-align: center;
      font-size: 6vw;
      font-weight: 700;
      color: #fff;
      position: relative; }
      .mainVisual .mainVisual_inner .title::after {
        content: "";
        display: block;
        width: 20vw;
        height: 2px;
        background-color: #fff;
        left: 0;
        right: 0;
        margin: 10px auto 0; }
    .mainVisual .mainVisual_inner .sub {
      color: #fff;
      font-size: 4vw;
      text-align: center;
      line-height: 1.6;
      margin-top: 5vw; }

  /*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
  /*index: SP コンテンツリスト */
  #land-recruitment {
    color: #444; }
    #land-recruitment img {
      width: 100%;
      height: auto; }
    #land-recruitment .section-title {
      font-size: 5vw;
      font-weight: bold;
      text-align: center;
      line-height: 1.4;
      display: inline-block;
      margin: 0 auto 30px; }
      #land-recruitment .section-title:after {
        content: '';
        display: block;
        max-width: 290px;
        width: 70%;
        height: 2px;
        background-color: #D01518;
        margin: 10px auto; }
    #land-recruitment .text {
      font-size: 4vw;
      text-align: left; }
    #land-recruitment .sec1 {
      text-align: center; }
      #land-recruitment .sec1 .image {
        margin-top: -10vw; }
    #land-recruitment .sec2 {
      text-align: center; }
      #land-recruitment .sec2 .container {
        padding-bottom: 0; }
      #land-recruitment .sec2 i {
        text-align: center; }
        #land-recruitment .sec2 i img {
          width: 50px;
          height: 40px; }
      #land-recruitment .sec2 .title {
        color: #D01518;
        font-size: 4.5vw;
        margin: 15px auto; }
      #land-recruitment .sec2 .image {
        margin: 0; }
      #land-recruitment .sec2 .caption {
        background-color: rgba(255, 255, 255, 0.8);
        width: 90%;
        padding: 3vw;
        margin: -15vw auto 0;
        position: relative;
        z-index: 1; }
      #land-recruitment .sec2 .text {
        font-size: 4vw;
        line-height: 2;
        text-align: left;
        font-weight: lighter;
        margin-bottom: 0; }
      #land-recruitment .sec2 .box {
        margin-bottom: 30px; }
        #land-recruitment .sec2 .box + .box {
          margin-bottom: 0; }
    #land-recruitment .sec3 {
      text-align: center; }
      #land-recruitment .sec3 .container {
        padding-bottom: 0; }
      #land-recruitment .sec3 .list {
        border-top: 1px solid #444; }
        #land-recruitment .sec3 .list + .list {
          border-bottom: 1px solid #444; }
        #land-recruitment .sec3 .list dt {
          background-color: #F2ECEC;
          font-size: 4vw;
          font-weight: bold; }
        #land-recruitment .sec3 .list dd {
          text-align: left;
          background-color: #FFF;
          font-size: 3.5vw;
          font-weight: lighter;
          padding: 3vw;
          line-height: 1.8;
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flex;
          display: -o-flex;
          display: flex;
          align-items: center; }
        #land-recruitment .sec3 .list li {
          text-indent: -1em;
          padding-left: 1em; }
    #land-recruitment .sec4 {
      text-align: center;
      position: relative; }
      #land-recruitment .sec4:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 430px;
        background-color: #f2ecec;
        display: block;
        bottom: 0;
        z-index: -2; }
      #land-recruitment .sec4 .flex {
        display: block; }
      #land-recruitment .sec4 .box {
        width: 100%;
        position: relative;
        margin: 0 auto 25px; }
      #land-recruitment .sec4 .caption {
        background-color: rgba(255, 255, 255, 0.8);
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 15px;
        text-align: left;
        box-sizing: border-box; }
      #land-recruitment .sec4 .title {
        font-size: 4vw;
        font-weight: bold; }
      #land-recruitment .sec4 .tel {
        font-size: 4vw;
        font-weight: bold;
        padding-left: 40px;
        background-image: url(../images/icon03.svg);
        background-size: 28px;
        background-position: left center;
        background-repeat: no-repeat;
        line-height: 2; }
      #land-recruitment .sec4 .date {
        font-size: 3vw; }
      #land-recruitment .sec4 .btn {
        width: 100%; }
    #land-recruitment .sec5 {
      background-image: url(../images/06.jpg);
      background-size: cover;
      background-position: top center;
      text-align: center; }
      #land-recruitment .sec5 .container {
        width: 100%;
        max-width: 100%; }
      #land-recruitment .sec5 .btn_box {
        display: block; }
        #land-recruitment .sec5 .btn_box .btn {
          margin: 0 auto 30px; }
          #land-recruitment .sec5 .btn_box .btn + .btn {
            margin-bottom: 0; } }

/*# sourceMappingURL=style.css.map */
