@charset "UTF-8";
/* CSS Document */



/* tab pc */
.tab_box .btn_area {
	display: flex;
  justify-content: center;
  margin-bottom: 64px;
}
.tab_btn{
  margin-right: 64px;
  position: relative;
}

.tab_btn:last-child{
  margin-right: 0px;
}
.tab_box .tab_btn {
  font-size: 1.8rem;
  padding: 14px 0;
  font-weight: bold;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease 0s;
}
.tab_box .tab_btn.active {
  border-bottom: 2px solid #F58A00;
  pointer-events: none;
}
.tab_box .tab_panel {
    display:none;
}
.tab_box .tab_panel.active {
    display:block;
}/* tab pc */

/* tab sp */
@media(max-width:599px){
.tab_box .tab_btn{
  font-size: 1.4rem;
}
.tab_btn{
  margin-right: 24px;
}
.tab_box .btn_area{
  margin-bottom: 40px;
}
.tab_box .tab_btn{
  padding: 10px 0;
}
}/* tab sp */

/* 全て */
.works-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 64px;
}
.works-list li{
  width: 45%;
  margin-bottom: 64px;
}

.list-pic img {
  display: block;
  transition: 0.5s;
  }
  
  .works_list-detail{
    display: block;
    font-size: 1.2rem;
    color: #F58A00;
    margin: 24px 0 8px;
  }

  .works-ttl a{
    color: #333;
    font-size: 2.0rem;
    line-height: 1.8;
    font-weight: bold;
  }
  /* WEB SITE sp */
  @media(max-width:599px){
    .works-list{
      display: block;
      margin-bottom: 72px;
    }
    .works-list li{
      width: 100%;
      margin-bottom: 40px;
    }
    .works-list li:last-child{
      margin-bottom: 0;
    }
    .works-ttl a{
      font-size: 1.6rem;
      line-height: 1.6;
    }
  }/* WEB SITE sp */

  /* hover action*/
  @media(min-width:1200px){
    .list-pic img:hover {
      transform: scale(0.98, 0.98);
      }
      .tab_btn::after{
        position: absolute;
        bottom: 0;
        left: 0;
        content: '';
        width: 0px;
        height: 2px; 
        background-color: #F58A00;
        transition: all 0.15s cubic-bezier(0.19, 1, 0.22, 1);
      }
      .tab_btn:hover::after{
        width: 100%;
      }
  }/* hover action*/


