/*tab*/

#bus-tour.is_show{
  border-top: 24px solid #5AD4E4;
}
#fukushi-world.is_show{
  border-top: 24px solid #e48d5a;
}

.tabBox .tabArea {
  width: 90%;
  max-width: 980px;
  position: relative;
  z-index: 10;
    margin: 0 auto -2px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
.tabBox .tabArea .one_tab {
    width: 49%;
    position: relative;
  }


  .tabBox .tabArea .one_tab a{
    display: block;
    border-radius: 20px 20px 0 0;
    position: relative
  }
  .tabBox .tabArea .one_tab a.select{
    border-bottom: none;
  }
  .tabBox .tabArea .one_tab a::before{
    content: "";
    position: absolute;
    left: -20px;
    top: -20px;

    width: 80px;
    height: 80px;
    background: url(../images/mark_01.svg) no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 3;
  }
  .tabBox .tabArea .one_tab.tab_fw a::before{
    left: auto;
    right: -20px;

    background: url(../images/mark_02.svg) no-repeat;
    background-size: contain;
    background-position: center;
  }
  .tabBox .tabArea .one_tab a .tab_inner{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition-duration: 0.3s;
    position: relative;
    z-index: 1;
    text-align: center;
    background: var(--bt);
    border-bottom: 0;
    padding: 15px 30px;
    height: 100px;
    border-radius: 20px 20px 0 0;
    filter: brightness(1.2) contrast(0.8) saturate(0.7);
  }
  .tabBox .tabArea .one_tab.tab_fw a .tab_inner{
    background: var(--fw);
  }
  .tabBox .tabArea .one_tab a.select .tab_inner{
    padding: 20px 30px;
    filter: brightness(1.0) contrast(1.0) saturate(1.0);
  }
  .tabBox .tabArea .one_tab a .tab_inner > img{
    max-height: 80px;
    width: auto;
  }

  .contents .tab_main {
    opacity: 0;
    pointer-events: none;
    height: 0;
    transform: translateY(50px);
    z-index: 1;
    transform: 1s;
  }
  .tab_main.is_show {
    transition: .4s;
    height: auto;
    opacity: 1;
    pointer-events: all;
    position: relative;
    z-index: 2;
    transform: translateY(0);
  }

@media screen and (max-width: 999px) {/*tablet*/
  .tabBox .tabArea .one_tab a .tab_inner{
    padding: 25px 35px 5px 35px;
  }
  .tabBox .tabArea .one_tab a.select .tab_inner{
    padding: 35px 35px 5px 35px;
  }
  .tabBox .tabArea .one_tab a::before{
    left: -30px;
    top: -30px;
  }
  .tabBox .tabArea .one_tab.tab_fw a::before{
    right: -30px;
  }
}

@media screen and (min-width: 0px) and (max-width: 600px){
  .tabBox .tabArea .one_tab a .tab_inner{
    padding: 15px 25px 5px 25px;
  }
  .tabBox .tabArea .one_tab a.select .tab_inner{
    padding: 25px 25px 5px 25px;
  }
  .tabBox .tabArea .one_tab a .tab_inner{
    min-height: 50px;
  }
  .tabBox .tabArea .one_tab a::before{
    width: 48px;
    height: 48px;
    left: -10px;
  }
  .tabBox .tabArea .one_tab.tab_fw a::before{
    right: -10px;
  }
}