
  
  
  /*タブメニューサンプルのcss*/
  .cplititle{
    text-align: center;
    font-size: 28px;
    color: #222;
    margin: 80px auto;
    border-bottom: solid 3px black;
    width: 350px;
  }
  
  .cplititle2{
    text-align: center;
    font-size: 28px;
    color: #222;
    margin: 30px auto;
    border-bottom: solid 3px black;
    width: 350px;
  }

  .cplititle3{
    text-align: center;
    font-size: 28px;
    color: #222;
    margin: 10px auto;
    border-bottom: solid 3px black;
    width: 350px;
  }

  /*全体のボタンcss*/
  .readbtn {
      cursor: pointer;
      display: block;
      width: 60%;
      max-width: 300px;
      margin: 15px auto;
      margin-bottom: 70px;
      padding: 5px;
      border: 0;
      border-radius: 30px;
      color: ghostwhite;
      font-size: 20px;
      background: #00afcc;
      box-shadow: 0 4px 0 hsl(200deg 35% 50%), 0 6px 0 rgba(0,0,0,.2);
      transition: color .3s, background .3s, box-shadow .3s, transform 0.3s;
      font-weight: bold;
  }
  
  
  .readbtn:hover {
      color: white;
      background: hsl(200deg 62% 75%);
      box-shadow: 0 3px 0 hsl(200deg 47% 60%), 0 6px 0 rgba(0,0,0,.2);
      transform: translateY(3px);
  }
  .readbtn:active {
      color: gainsboro;
      background: hsl(200deg 47% 60%);
      box-shadow: 0 0 0 hsl(200deg 37% 50%), 0 0 0 rgba(0,0,0,.2);
      transform: translateY(6px);
      transition-duration: .1s;
      
  }
  
  .tabimagebox{
    width: 60%;
    margin: 0 auto;
  }
  
  .tabimg1{
    width: 100%;
    margin: 0 auto;
    display: block;
  }

.titleimg2{
    width: 12%;
}

.titleimg3{
    width: 20%;
}

  .tabtitle{
    margin-top: 80px;
  }

  .titleimg{
    width: 15%;
  }


  @media screen and (max-width: 1080px) {
    .tabimagebox{
        width: 80%;
        margin: 0 auto;
      }
  }

  @media screen and (max-width: 751px) {
  .tabimg1{
    width: 100%;
    margin: 0 auto;
    display: block;
  }

  .titleimg{
    width: 20%;
  }

  .tabtitle{
    margin-top: 30px;
}

  .cplititle {
    text-align: center;
    font-size: 18px;
    color: #222;
    margin: 40px auto;
    border-bottom: solid 3px black;
    width: 200px;
}
.cplititle3{
text-align: center;
    font-size: 18px;
    color: #222;
    margin: 10px auto;
    border-bottom: solid 3px black;
    width: 200px;
}
.tabimagebox{
    width: 90%;
    margin: 0 auto;
  }
}


.couponsyu{
  padding: 15px;
  color: #494949;
  background: #fffaf4;
  border-left: solid 20px #ffaf58;
  width: 400px;
  margin: 0 auto;
  }
  

/*-----------------------------------------------タブ形式メニューのcss--------------------------------------*/

/*タブ切り替え全体のスタイル*/
.tabs {
    margin-top: 50px;
    /* padding-bottom: 40px; */
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    /* margin: 30px; */
}
  
  /*タブのスタイル*/
  .tab_item {
    width: calc(100%/4);
    height: 50px;
    border-bottom: 3px solid #333;
    background-color: #d9d9d9;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
    color: #565656;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
  }
  .tab_item:hover {
    opacity: 0.75;
  }
  
  /*ラジオボタンを全て消す*/
  input[name="tab_item"] {
    display: none;
  }
  
  /*タブ切り替えの中身のスタイル*/
  .tab_content {
    display: none;
    clear: both;
  }
  
  
  /*選択されているタブのコンテンツのみを表示*/
  #tab1:checked ~ #tab1_content,
  #tab2:checked ~ #tab2_content,
  #tab3:checked ~ #tab3_content,
  #tab4:checked ~ #tab4_content {
    display: block;
  }
  
  /*選択されているタブのスタイルを変える*/
  .tabs input:checked + .tab_item {
    background-color: #333;
    color: #fff;
  }
  
  
  
  /*モバイルファースト*/
  
  .card-container{
    color: #333;
    display: flex;
    width: 100%;
  }
  .card-container a{
    text-decoration: none;
    color: #333;
  }
  
  .card-text{
    width:100%;
  }
  .card-text h2{
    padding-top: 10px;
    font-size: 1em;
    text-align: left;
  }
  .card-text p{
    font-size: 1em;
    text-align: right;
    margin: 5px;
  }
  .card-img{
  }
  
  .tabimg{
    width:100px;
    height:100px;
    object-fit: cover;
    margin: 10px;
  }
  
  /*PCサイズ*/
  
  @media screen and (min-width:650px) {
    .card-container{
    }
  
    .card-text h2{
        font-size: 1.3em;
        text-align: left;
    }
    .card-text p{
        font-size: 1em;
        text-align: right;
        margin: 5px;
    }
    
  
    
  
  }
  
  
    
  .tabpr{
    font-size: 10pt;
  }
  
  @media screen and (max-width:649px){
  /*タブのスタイル*/
  .tab_item {
    width: calc(100%/4);
    height: 50px;
    border-bottom: 3px solid #333;
    background-color: #d9d9d9;
    line-height: 50px;
    font-size: 10px;
    text-align: center;
    color: #565656;
    display: block;
    float: left;
    text-align: center;
    font-weight: bold;
    transition: all 0.2s ease;
  }
  
  .card-text h2{
    font-size: 10pt;
    text-align: left;
  }
  
  .tabprnoimg{
    font-size: 10pt;
    margin: 10px;
  }
  
  
  .tabpr{
    font-size: 8pt;
  }
  
  }
  
  
  .tabprnoimg{
    font-size: 10pt;
    margin: 10px;
  }
  
  hr.tab{
    width: 100%;
    border-top: 2px dotted #333;
  }
  /*-----------------------------------------------ここまで--------------------------------------*/
  
  /*クーポンサンプルのcss*/

  .topcpimg{
    width: 100%;
  }

  .container2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    border: 2px solid #222;
    padding: 10px;
    width: 95%;
    margin: 0 auto;
  }
  
  .column2 {
  }

  .cpimg{
    width: 100%;
  }
  
  /* スマートフォン用のレスポンシブスタイル */
  @media screen and (max-width: 767px) {
    .container2 {
      grid-template-columns: repeat(2, 1fr);
    }

    .cpimgbox img {
      width: 100%;
      height: auto;
  }
  }


  .container3 {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    grid-gap: 10px;
    border: 2px solid #222;
    padding: 10px;
    width: 45%;
    margin: 0 auto;
    margin-top: 10px;
  }
  
  .column3 {
  }

  .cpimg2{
    width: 100%;
  }


  .flex{
    display: flex;
    flex-wrap: wrap;
  }
  
  .cptitle{
    text-align: center;
  }


  
  
  .margin{
    width: 70%;
    margin: 0 auto;
  }
  
  .fukidasi{
    width: 50%;
    margin: 0 auto;
    display: block;
  
  }

  .fukidasi2 {
    width: 80%;
    margin: 0 auto;
    display: block;
    margin-top: 20px;
}
  
.containertitle {
  display: flex;
}



.itemtitle img {
  width: 95%;
  height: auto;
}

.itemtitle2 img {
  width: 95%;
  height: auto;
}


/*求人詳細css*/

.container {
  display: flex;
  flex-wrap: wrap;
}

.container p{
  font-size: 18px;
  font-weight: bold;
}

.item {
  width: 50%;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
}

.cpimages{
  width: 60%;
  margin: 0 auto;
  padding-bottom: 20px;
}

.recimages{
  width: 100%;
  margin: 0 auto;
}

.recimages2{
  width: 100%;
  margin: 0 auto;
}

.recbox{
margin: 0 auto;
width: 70%;
}


/*テナントサンプルページのcss*/

.tenanttopbox{
  width: 70%;
  margin: 0 auto;
}

.toptnimg{
  width: 100%;
}

.tnfukidashi{
  width: 25%;
}

.tnfukidashi2{
  width: 15%;
  margin: 0 auto;
  display: block;
  padding-top: 100px;
}


.item2{
  width: 50%;
  box-sizing: border-box;
  padding: 10px;
}


.teimages{
  width: 100%;
  margin: 0 auto;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

.tntxt{
  font-weight: bold;
  font-size:22px;
}

  /* スマートフォン用のレスポンシブスタイル */
  @media screen and (max-width: 767px) {
    .container3 {
      grid-template-columns: repeat(2, 1fr);
      width: 100%;
    }

    .cpimgbox img {
      width: 100%;
      height: auto;
  }

  .fukidasi {
    width: 90%;
    margin: 0 auto;
    display: block;
    margin-bottom: 15px;
}

.fukidasi2 {
 display: none;
}
.itemtitle {
  flex-basis: 50%;
  padding: 10px;
  box-sizing: border-box;
}

.tnfukidashi {
  width: 25%;
  margin: 0 auto;
  display: block;
  margin: 20px auto;
  padding-top: 40px;
}

.itemtitle {
  flex-basis: 100%;
  /* padding: 10px; */
  box-sizing: border-box;
  padding-top: 15px;
}


.container2 {
  display: grid;
  grid-gap: 10px;
  border: 2px solid #222;
  padding: 10px;
  width: 90%;
  margin: 0 auto;
}

.margin{
  width: 90%;
  margin: 0 auto;
}


.itemtitle2 {
  flex-basis: 100%;
  /* padding: 10px; */
  box-sizing: border-box;
  padding-top: 45px;
}

.item {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
}

.recbox{
  margin: 0 auto;
  width: 100%;
  }

  .tenanttopbox{
    width: 100%;
    margin: 0 auto;
  }


  .item2{
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
  }


  .tnfukidashi2 {
    width: 35%;
    margin: 0 auto;
    display: block;
    padding-top: 50px;
}

.topcpimg{
  display: none;
}


  }

  .mobile-image {
    display: block;
    width: 85%;
    height: auto;
    padding-bottom: 50px;
    margin: 0 auto;
  }


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

     .mobile-image {
      display: none;
    }


  }

