/* TAB CSS */
.tabBox .tabArea {
  border-bottom: 3px solid #019944;
}
.tabBox .tabArea {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.tabBox .tabArea .one_tab {
  width: 24.6%;
}
.tabBox .tabArea .one_tab a {
  display: block;
  text-decoration: none;
  transition-duration: 0.3s;
  text-align: center;
  color: #019944;
}
.tabBox .tabArea .one_tab a:hover {
/*   opacity: 0.7; */
  text-decoration: none;
}
.tabBox .tabArea .one_tab .tab_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-radius: 15px 15px 0% 0%;
  transition-duration: 0.3s;
}
.tabBox .tabArea .one_tab:nth-child(1) .tab_inner {
  background-color: #e7e7e7;
}
.tabBox .tabArea .one_tab:nth-child(2) .tab_inner {
  background-color: #e7e7e7;
}
.tabBox .tabArea .one_tab:nth-child(3) .tab_inner {
  background-color: #e7e7e7;
}
.tabBox .tabArea .one_tab:nth-child(4) .tab_inner {
  background-color: #e7e7e7;
}
.tabBox .tabArea .one_tab a.select .tab_inner {
  height: 70px;
  color: #fff;
  background-color: #019944;
}
/*特定商取引法タブ*/
.tabBox .tokuteiArea {
  border-bottom: 1px solid #ccc !important;
}
.tokutei_tab {
  width: 20%;
}
.tokutei_tab a {
  display: block;
  text-decoration: none;
  transition-duration: 0.3s;
  text-align: center;
  color: #000;
  border-top: 1px solid #ccc !important;
  border-left: 1px solid #ccc !important;
}
.tokutei_tab:last-child a {
  border-right: 1px solid #ccc !important;
}
.tokutei_tab a:hover {
  color: #000;
  background-color: #e7e7e7;
  text-decoration: none;
}
.tokutei_tab .tab_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  font-size: 1.5rem;
  border-radius: 0%;
  transition-duration: 0.3s;
}
.tokutei_tab:nth-child(1) .tab_inner {
  background-color: #fff;
}
.tokutei_tab:nth-child(2) .tab_inner {
  background-color: #fff;
}
.tokutei_tab:nth-child(3) .tab_inner {
  background-color: #fff;
}
.tokutei_tab:nth-child(4) .tab_inner {
  background-color: #fff;
}
.tokutei_tab:nth-child(5) .tab_inner {
  background-color: #fff;
}
.tokutei_tab a.select .tab_inner {
  border: 1px solid #f7f7f7 !important;
  background-color: #e7e7e7;
}


.tabBox .tabArea.bottom {
  align-items: flex-start;
}
.contents .tab_main {
  display: none;
  padding: 20px 0;
  text-align: left;
  min-height: 280px;
  transition-duration: 0.3s;
}
.tab_main.is_show {
  display: block;
}
.tab_main:nth-child(1).is_show {
  
}
.tab_main:nth-child(2).is_show {
  
}
.tab_main:nth-child(3).is_show {
  
}
.tab_main:nth-child(4).is_show {
  
}

/* -------------------------------------------------- */
/* SP(調整) */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
  .tabBox .tabArea .one_tab .tab_inner {
      height: 40px;
      font-size: 1.4rem;
  }
  .tabBox .tabArea .one_tab a.select .tab_inner {
      height: 50px;
      color: #fff;
      background-color: #019944;
  }

  .tabBox .tokuteiArea {
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-end;
  }
  .tokutei_tab {
    width: 100%;
  }
  .tokutei_tab a {
    display: block;
    text-decoration: none;
    transition-duration: 0.3s;
    text-align: center;
    color: #000;
  }
  .tokutei_tab:not(:last-child) a {
    border-right: 1px solid #ccc !important;
  }

}