@charset "utf-8";
/*=============================================================
 humanright
=============================================================*/
/* tabs
-------------------------------------------------------------*/
.tab-btn {
  position: relative;
  margin: 50px 0;
  padding-left: 0;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.tab-btn::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: #d3e0e5;
  z-index: 1;
}
.tab-btn > li {
  max-width: 430px;
  margin: 0;
  width: 46%;
}
.tab-btn > li::after,
.tab-btn > li:last-child::before {
  content: none;
}
.tab-btn > li a {
  background: #eef3f5;
  padding: 20px 0;
  border-radius: 10px 10px 0 0;
}
.tab-btn > li a.act {
  background: #d3e0e5;
  color: #333;
  font-weight: 500;
}
.tab-btn > li a span {
  position: relative;
}
.tab-btn > li a span::before {
  content: "";
  display: table;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  text-decoration: none;
  transition: all 0.6s;
  position: absolute;
  bottom: -20px;
  padding-bottom: 0.25em;
  background: linear-gradient(#0072bf, #0072bf) 0 100% / 0 2px no-repeat;
  background-position-x: 10px;
}
.tab-btn > li a.act span::before,
.tab-btn > li a:hover span::before {
  background-size: calc(100% - 30px) 2px;
}
.tab-btn > li:last-child::before,
.tab-btn > li::after {
  content: none;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Tablet (portrait)
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media only screen and (min-width: 768px) and (max-width: 1023px) {
}
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Smartphones
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media only screen and (max-width: 767px) {
  /* tab
  -------------------------------------------------------------*/
  .tab-btn {
    margin: 30px 0;
    gap: 10px;
  }
}
