@charset "UTF-8";
#access {
  font-size: 2rem;
}
#access .caution_wrap {
  text-align: center;
  max-width: 1500px;
  padding: 20px 4%;
}
/*タブ切り替え全体のスタイル*/
.tabs {
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  max-width: 1500px;
  margin: 0px auto;
}

/*タブのスタイル*/
.tab_item {
  width: calc(100% / 2);
  height: 50px;
  border-bottom: 3px solid #ff64a4;
  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:nth-child(2) {
  border-bottom: 3px solid #0093ff;
}
.tab_item:hover {
  opacity: 0.75;
}

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

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

/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #ff64a4;
  color: #fff;
  font-size: 2rem;
}
/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item:nth-child(2) {
  background-color: #0093ff;
  color: #fff;
  font-size: 2rem;
}
.map_wrap {
  padding: 20px;
}
.map_wrap h2 {
  font-size: 2.8rem;
}
.map_wrap table {
  text-align: left;
  margin: 20px 0;
}
.map {
  width: 100%;
}
@media screen and (max-width: 780px) {
  .tab_content {
    display: none;
    padding: 20px;
  }
  #access {
    font-size: 1.5rem;
  }
  .tabs input:checked + .tab_item:nth-child(2) {
    background-color: #0093ff;
    color: #fff;
    font-size: 1.8rem;
  }
  .tabs input:checked + .tab_item {
    background-color: #ff64a4;
    color: #fff;
    font-size: 1.8rem;
  }
  .map_wrap h2 {
    font-size: 2rem;
  }
  .tabs {
    margin: 20px auto;
  }
  .map_wrap table tr {
    display: grid;
  }
}
