/* 部活ナビトップ */
html {
    overflow-x: auto;
}
  body {
    display: block !important;
  }
  button {
    min-width: 100px;
    min-height: 3rem;
    border-radius: 6px;
    background-color: rgb(186, 12, 73);
    color: rgb(255, 255, 250);
    cursor: pointer;
  }
  
  .home-title {
    border-bottom: solid 1px #707070;
  }
  .home-title .label {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 3rem 0 2rem 0;
  }
  .tab {
    min-width: 120px;
    margin: 0 5px;
    color: #707F89;
    font-size: 1rem;
    background-color: unset !important;
    font-weight: 700;
    border: none;
    border-radius: 0 !important;
  }
  .tab.active {
    color: #3B4043;
    border-bottom: solid 5px #246EA7;
    background-color: unset !important;
  }
  
  .tab-content{
    padding-top: 10px;
    text-align: center;
  }
  
  
  /*
  .prefecture:hover {
    background-color: #EBF2F7;
  }
  */
  
  .club_area {
    display: flex;
  }
  
  .slide_box {
      width: 100%; /*calc(100vw - 8rem);*/
      display: flex;
      overflow: hidden;
  }

  #btnNewsMore {
    margin-top: 1rem;
  }
  
  .news-box {
    cursor: pointer;
  }

  .column-box {
    cursor: pointer;
  }

  #moreClub {
    display: none;
    width: 130px;
    color: #246EA7;
    font-weight: 600;
    border-radius: 20px;
    border: solid 1px #246EA7;
    margin: 0 auto;
    padding: 2px;
    cursor: pointer;
  }

  .pr {
    margin: 2rem 0 0 0;
    font-size: 0.8rem;
    color: #ffffff;
  }
  .banner_area {
    text-align: center;
    margin-top: 1rem;
  }

  .banner_area img {
    margin: 0;
    width: 230px;
  }

  /* Smart Phone スタイル */
@media screen and (max-width: 767px) {
    .success-btn {
        width: 160px !important;
        height: 40px !important;
    }

    /* トップ新着 */
    .slide_left {
      width: 0 !important;
      margin: 175px 0 0 1rem !important;
      border: unset !important;
    }
    .slide_right {
      width: 0 !important;
      margin: 175px 0 0 1rem !important;
      border: unset !important;
    }
    .news_title {
      font-size: 1rem !important;
    }
    .slide_box {
      padding: 0 !important;
    }
    /*
    .news-box {
        width: calc((100vw - 12rem) / 2) !important;
    }
    .news-box > img {
        width: calc((100vw - 12rem) / 2) !important;
        height: calc(((100vw - 12rem) / 2) * .6) !important;
    }
    */
    .news-box {
      width: calc(100vw - 9rem) !important;
    }
    .news-box > img {
        width: calc(100vw - 9rem) !important;
        height: calc((100vw - 12rem) * .6) !important;
    }

    .column-box {
        width: calc(100vw - 9rem) !important;
    }
    .column-box > img {
        width: calc(100vw - 9rem) !important;
        height: calc((100vw - 12rem) * .6) !important;
    }

    /* 部活から探す */
    .tab-content {
        overflow: hidden;
        max-height: 520px;
    }
    #moreClub {
        display: block;
    }
}