/* media */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #29B5B2;
}
.header-logo {
  width: 115px;
  height: 32px;
  margin: 8px 0 0 14px;
}

.btn_drawer {
  position: fixed;
  top: 3px;
  right: 5px;
  width: 50px;
  height: 50px;
  z-index: 1000;
  cursor: pointer;
}
.btn_drawer span {
  position: absolute;
  left: 10px;
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #fff;
  transition: .25s;
}
.btn_drawer span:first-of-type {
  top: 13px;
}
.btn_drawer span:nth-of-type(2) {
  top: 24px;
}
.btn_drawer span:last-of-type {
  top: 36px;
}
.btn_drawer.open span:first-of-type {
  top: 24px;
  transform: rotate(225deg);
}
.btn_drawer.open span:nth-of-type(2) {
  width: 0;
}
.btn_drawer.open span:last-of-type {
  top: 24px;
  transform: rotate(-225deg);
}

.drawer {
  position: fixed;
  top: 0;
  left: 101%;
  width: 100%;
  height: 100vh;
  background: rgba(41,181,178,.9);
  z-index: 999;
  transition: .25s;
  overflow-y: auto;
}
.drawer.open {
  left: 0;
}
.drawer .inner_drawer {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 700px;
  padding: 60px 0;
  box-sizing: border-box;
}
.nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
.nav-item {
  width: 50%;
  max-width: 220px;
  margin: 4% auto;
}

@media screen and (max-width : 768px){
  .nav-item {
    margin: 9% auto;
  }
}




.maincontents {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 120px 3% 30px;
  box-sizing: border-box;
}

.media-title {
  width: 196px;
  margin: 0 auto 40px;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* max-width: 800px; */
  max-width: 640px;
  margin: 0 auto 20px;
}
.category-item {
  /* width: 24%; */
  width: 32%;
  margin: 0 0 1%;
}
.category-item-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.category-item-link.cs {
  cursor: default;
  opacity: .35;
}
.media-subtitle-off {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;  
  transition: .25s;
}
.category-item:hover .media-subtitle-off,
.category-item.here .media-subtitle-off {
  opacity: 0;
}
.category-item-link.cs:hover .media-subtitle-off {
  opacity: 1;
}

.tab-wrap {
  color: #29B5B2;
  display: none;
}
.tab-wrap.here {
  display: block;
}
.tab-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 0 10px;
  border-bottom: 1px solid #29B5B2;
}
.tab-title-text {
  font-size: 25px;
}
.tab-update {
  font-size: 14px;
}
.tab-outline {
  margin: 0 0 20px;
  font-size: 14px;
}
.tab-caption {
  margin: 10px 0 0;
  font-size: 13px;
}

@media screen and (max-width: 768px){
  .category-nav {
    max-width: 500px;
  }
  .category-item {
    width: 48%;
    margin: 0 0 1%;
  }
}


/* table */

.tbList{
width:100%;
border-collapse: collapse;
border-spacing: 0px;
border:0;
font-family: 'Noto Sans JP', sans-serif;
color: #1A1A1A;
}
  

  
/*   @media screen and (max-width : 375px){
  
    .tbList th{
    padding: 2px;
    text-align: center;
    font-size:9px;
    color: #000;
    background-color: #29B5B2;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    line-height:1.2em;
    }
    
    .tbList td{
    padding: 5px 0;
    font-size:9px;
    border-bottom: 1px solid #000;
    line-height:1.5em;
    text-align:center;
    }
  
  } */
  
  @media screen and (min-width : 1px){
  
  .tbList th{
  padding: 2px;
  text-align: center;
  font-size:13px;
  color: #fff;
  background-color: #29B5B2;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  line-height:1.5em;
  }
  
  .tbList td{
  padding: 10px 0;
  font-size:12px;
  border-bottom: 1px solid #fff;
  line-height:1.5em;
  text-align:center;
  letter-spacing: 0;
  }
  
  .tbList td.bordertop{border-top: 1px solid #717171;} 
  
  .tbList td.areaTV01a{ width: 15%; text-align:center;}
  .tbList td.areaTV01b{ width: 85%;text-align:center;background-color: #CDEEED;}
  
  .tbList td.areaTV02a{ width: 15%; text-align:center;}
  .tbList td.areaTV02b{ width: 20%;text-align:center;background-color: #CDEEED;}
  .tbList td.areaTV02c{ width: 65%;text-align:center;background-color: #CDEEED;border-left: 1px solid #fff;}
  
  .tbList td.areaTV03a{ width: 15%; text-align:center;}
  .tbList td.areaTV03b{ width: 85%;text-align:center;background-color: #DEF4F3;}
  
  .space{ margin-bottom: 15px;}
  
  
  .tbList td.areaTVa{ width: 15%; text-align:center;background-color: #CDEEED;}
  .tbList td.areaTVb{ width: 15%;text-align:center;background-color: #DEF4F3;}
  .tbList td.areaTVc{ width: 10%;text-align:center;background-color: #CDEEED;}
  .tbList td.areaTVd{ width: 25%;text-align:center;background-color: #DEF4F3;}
  .tbList td.areaTVe{ width: 30%;text-align:center;background-color: #CDEEED;}
  
  
  .tbList td.area01{width:60%; text-align:center;}
  .tbList td.area01a{width:15%; text-align:center;}
  .tbList td.area02{width:20%; text-align:center;}
  .tbList td.area03{width:20%; text-align:center; background-color: #CDEEED;}
  
  .tbList td.area01b{width:15%; text-align:center; background-color: #CDEEED;}
  .tbList td.area02b{width:30%; text-align:center; background-color: #DEF4F3;}
  .tbList td.area03b{width:55%; text-align:center; background-color: #CDEEED;}
  
  .tbList td.area01c{width:15%; text-align:center; background-color: #CDEEED;}
  .tbList td.area02c{width:15%; text-align:center; background-color: #DEF4F3;}
  .tbList td.area03c{width:15%; text-align:center; background-color: #CDEEED;}
  .tbList td.area04c{width:23%; text-align:center; background-color: #DEF4F3;}
  .tbList td.area05c{width:32%; text-align:center; background-color: #CDEEED;}
  
  .tbList td.area01d{width:15%; text-align:center; background-color: #CDEEED;}
  .tbList td.area02d{width:30%; text-align:center; background-color: #DEF4F3;}
  .tbList td.area03d{width:55%; text-align:center; background-color: #CDEEED;}
  
  .tbList td.area01e{width:38%; text-align:center; background-color: #CDEEED;}
  .tbList td.area02e{width:30%; text-align:center; background-color: #DEF4F3;}
  .tbList td.area03e{width:32%; text-align:center; background-color: #CDEEED;}
  
  .tbList td.area01f{width:40%; text-align:center; background-color: #CDEEED;}
  .tbList td.area02f{width:60%; text-align:center; background-color: #DEF4F3;}
  
  .tbList2 td{
  padding: 3px 0;
  line-height:1.5em;
  text-align:left;
  }
  
  .tbList2 td.area01e{width:80px; text-align:left;vertical-align: top;}
  .tbList2 td.area02e{text-align:left;}
  
  }