@charset "utf-8";
.tab_content .tab_inner{
/*  display: none;*/
  opacity: 0;
  transition: opacity 0.8s ease, height 0.8s ease;
  height: 0;
  overflow: hidden;
}
.tab_content .tab_inner.active{
/*  display: block;*/
  opacity: 1;
  height: auto;
}
.tab_ttl{
  margin: 16px 0;
}
.tab_ttl.tab_2column{
  display: flex
}
.tab_ttl button{
  border: none;
  background-color: transparent;
  border-radius: 0;
  font-size: 14px;
  text-align: left;
  padding: 16px 0;
  position: relative;
  color: #A6A6A6;
  font-weight: bold;
  margin-right: 8px;
}
.tab_ttl button.active{
  color: #151515;
}
.tab_ttl button.active:after{
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #E54816;
  bottom: 8px;
  left: 0;
  position: absolute;
  transition: .3s;
}
.tab_inner .bg_gray.inner{
  padding-top: 16px;
  padding-bottom: 24px;
}
.tab_inner .bg_gray.inner .bg_white + .bg_white{
  margin-top: 48px;
}
.tab_inner .bg_gray.inner .bg_white h4.center{
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 16px;
}
.tab_inner .bg_gray.inner .bg_white .button{
  margin-top: 24px;
}
.tab_inner .bg_gray.inner .bg_white p.center{
  padding: 0;
}
.tab_inner .bg_gray2{
  padding-top: 16px;
  padding-bottom: 16px;
}
.tab_inner h4{
  font-weight: bold;
}
.tab_inner form dl dd + dt{
    padding-top: 16px;
}
.tab_inner h4 + form{
  padding-top: 8px;
}
.tab_inner form button:last-child{
  margin-top: 16px;
}
.bg_white2 + .bg_white2{
  margin: 24px 0;
}

/*****SP*****/
@media not screen and (min-width: 1024px) {
  .tab_content .tab_inner.pc_only{
    display: block;
  }
  .tab_ttl.tab_2column.pc{
    display: none;
  }
}

@media screen and (min-width: 1024px) {
.tab_ttl button:hover{
    color: #222;
}
.tab_ttl button{
  padding-bottom: 8px;
}
.tab_ttl button + button{
  margin-left: 8px;
}
.tab_ttl button.active:after{
  background-color: #E54816;
}
.tab_ttl button.active:after{
  bottom: 0;
}
}