@charset "Shift_JIS";
/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 120%;
  margin: 0 0 0 -80px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;  
  }

/*タブのスタイル*/
.tab_item {
  width: calc(100%/7);
  height: 50px;
  line-height: 50px;
  border-bottom: 3px solid #5ab4bd;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 12px;
  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;
}

/*タブのスタイル*/
.tab_item1 {
  width: calc(100%/1);
  height: 50px;
  line-height: 50px;
  border-bottom: 3px solid #5ab4bd;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 12px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item1:hover {
  opacity: 0.75;
}


/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  /*   padding: 40px 40px 0;  */
  clear: both;
  overflow: hidden;
  width: 100%;
}


/*選択されているタブのコンテンツのみを表示*/
#tab1:checked ~ #tab1_content,
#tab2:checked ~ #tab2_content,
#tab3:checked ~ #tab3_content,
#tab4:checked ~ #tab4_content,
#tab5:checked ~ #tab5_content,
#tab6:checked ~ #tab6_content,
#tab7:checked ~ #tab7_content,
#tab8:checked ~ #tab8_content,
#tab9:checked ~ #tab9_content,
#tab10:checked ~ #tab10_content,
#tab11:checked ~ #tab11_content,
#tab12:checked ~ #tab12_content,
#tab13:checked ~ #tab13_content,
#tab14:checked ~ #tab14_content,
#tab20:checked ~ #tab20_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #5ab4bd;
  color: #fff;
}
/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item1 {
  background-color: #5ab4bd;
  color: #fff;
}

@media screen and (max-width: 600px) {
  .tabs {
    flex-direction: column;
    width: 100%;
    margin-left: auto;
    margin-right: auto;

  }

  .tab_item {
    width: 100%;
    margin-bottom: 1px;
    height: 29px;
    text-align: center;
    line-height: 26px;    
  }
  /*タブ切り替えの中身のスタイル*/
  .tab_content {
    display: none;
    padding: 0px 0px 0;
    clear: both;
    overflow: hidden;
    width: 100%;
  }

}



}