/*------------------------------------------
■カテゴリ ※アイコン並べる収納インテスタイル
------------------------------------------*/
#alcoholchecker_plan_mtx {
  max-width: 750px;
}

#alcoholchecker_plan_mtx h4 {
  background-color: #fa3c84;
  color: #fff;
  padding: 15px 0;
  margin-bottom: 20px;
  font-size: 30px;
}

#alcoholchecker_plan_mtx .wrap_tab {
    position: relative;
    max-width: 750px;
    box-sizing: border-box;
  }
  
  /* メニューボタン */
  #alcoholchecker_plan_mtx .tab-container{
    width: 100%;
    display: flex;
  }
  
  #alcoholchecker_plan_mtx .tab-container > li.tab{
    color: #fa3c84;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  flex-grow: 1;
  height: 3em;
  border: #fa3c84 2px solid;
  text-align: center;
  cursor: pointer;
  margin-right: 15px;
  transition: 0.5s all;
  line-height: 1.2em;
  background-color: #fff;
  border-radius: 50px;
  }
  
  #alcoholchecker_plan_mtx .tab-container > li.tab:last-child{
    margin-right: 0;
  }
  #alcoholchecker_plan_mtx .tab-container > li.tab.current{
    color: #fff;
    background-color: #fa3c84;
    transition: 0.5s all;
  }
  #alcoholchecker_plan_mtx .arrow{
      position: relative;
      display: inline-block;
      color: #000;
      vertical-align: middle;
      text-decoration: none;
  }
  
  #alcoholchecker_plan_mtx .arrow::after{
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      margin: auto;
      content: "";
      vertical-align: middle;
  }
  
  #alcoholchecker_plan_mtx .tab-container > li.tab.current::after{
      right: 12px;
      width: 5px;
      height: 5px;
      border-top: 2px solid #fff;
      border-right: 2px solid #fff;
      -webkit-transform: rotate(45deg);
      transform: rotate(135deg);
  }
  #alcoholchecker_plan_mtx .tab-container > li.tab:hover,
  #alcoholchecker_plan_mtx .tab-container > li.tab.current:hover{
    opacity: 1;
  }
  
  #alcoholchecker_plan_mtx .menu-container{
    position: relative;
    width: 100%;
  padding: 0;
  }
  #alcoholchecker_plan_mtx .menu-container > .menu-box{
    display: none;
    padding: 10px 0 0;
  }
  #alcoholchecker_plan_mtx .menu-container > .menu-box.current{
    display: block;
  }
  
  /*タブの中身*/
  #alcoholchecker_plan_mtx .menu-box{
    box-sizing: border-box;
    padding: 30px 20px 20px;
  }
  #alcoholchecker_plan_mtx .content > ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #alcoholchecker_plan_mtx .content > ul::before{
    content:"";
    display: block;
    width: 100%;
    order: 1;
  }
  #alcoholchecker_plan_mtx .content > ul::after{
    content:"";
    display: block;
    width: 100%;
  }
  #alcoholchecker_plan_mtx .content > ul > li{
    width: 100%;
  }
  #alcoholchecker_plan_mtx .content > ul > li a > div{
    overflow: hidden;
  }
  #alcoholchecker_plan_mtx .content > ul > li:nth-child(n+5){
    margin-top: 10px;
  }
  #alcoholchecker_plan_mtx .content > ul > li a:hover img{
    transform: scale(1.1,1.1);
    transition: 0.5s all;
 }
  