@font-face {
  font-family: "Averta";
  src: url("./font/webfont/AvertaStd-Regular.woff2") format("woff2"), url("./font/webfont/AvertaStd-Regular.woff") format("woff"), url("./font/desktop/AvertaStd-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Averta";
  src: url("./font/webfont/AvertaStd-Semibold.woff2") format("woff2"), url("./font/webfont/AvertaStd-Semibold.woff") format("woff"), url("./font/desktop/AvertaStd-Semibold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Averta";
  src: url("./font/webfont/AvertaStd-Bold.woff2") format("woff2"), url("./font/webfont/AvertaStd-Bold.woff") format("woff"), url("./font/desktop/AvertaStd-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Averta";
  src: url("./font/webfont/AvertaStd-Extrabold.woff2") format("woff2"), url("./font/webfont/AvertaStd-Extrabold.woff") format("woff"), url("./font/desktop/AvertaStd-Extrabold.otf") format("opentype");
  font-style: normal;
  font-weight: 900;
}
/* tab setting */
/* breakpoints */
/* selectors relative to radio inputs */
.tabbar.tabs {
  position: relative;
  background: white;
  padding-bottom: 50px 0 80px;
  width: 100%;
  min-width: 240px;
}
.tabbar.tabs .d-none {
  display: none !important;
}
.tabbar.tabs input[name=tab-control] {
  display: none;
}
.tabbar.tabs .content section h2,
.tabbar.tabs ul li label,
.tabbar.tabs ul li a {
  font-weight: bold;
  font-size: 1.125em;
  color: #036;
}
.tabbar.tabs > ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}
.tabbar.tabs > ul > li {
  box-sizing: border-box;
  flex: 1;
  width: 25%;
  max-width: 50%;
  padding: 0 10px;
  text-align: center;
}
.tabbar.tabs > ul > li label, .tabbar.tabs > ul > li a {
  transition: all 0.3s ease-in-out;
  color: #2b333b;
  padding: 5px auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  -webkit-touch-callout: none;
}
.tabbar.tabs > ul > li label br, .tabbar.tabs > ul > li a br {
  display: none;
}
.tabbar.tabs > ul > li label svg, .tabbar.tabs > ul > li a svg {
  fill: #2b333b;
  height: 1.2em;
  vertical-align: bottom;
  margin-right: 0.2em;
  transition: all 0.2s ease-in-out;
}
.tabbar.tabs > ul > li label:hover, .tabbar.tabs > ul > li label:focus, .tabbar.tabs > ul > li label:active, .tabbar.tabs > ul > li a:hover, .tabbar.tabs > ul > li a:focus, .tabbar.tabs > ul > li a:active {
  outline: 0;
  color: #4c5967;
  background-color: transparent;
}
.tabbar.tabs > ul > li label:hover svg, .tabbar.tabs > ul > li label:focus svg, .tabbar.tabs > ul > li label:active svg, .tabbar.tabs > ul > li a:hover svg, .tabbar.tabs > ul > li a:focus svg, .tabbar.tabs > ul > li a:active svg {
  fill: #4c5967;
}
.tabbar.tabs > ul > li a:focus {
  color: #2b333b;
}
.tabbar.tabs .content {
  margin-top: 30px;
}
.tabbar.tabs .content section {
  display: none;
  animation-name: content;
  animation-direction: normal;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  line-height: 1.4;
}
.tabbar.tabs .content section h2 {
  color: #036;
  display: none;
}
.tabbar.tabs .content section h2::after {
  content: "";
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  background: #036;
  margin-top: 5px;
  left: 1px;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label, .tabbar.tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) a {
  cursor: default;
  color: #036;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label svg, .tabbar.tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) a svg {
  fill: #036;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(1):checked ~ .slider {
  transform: translateX(0%);
}
.tabbar.tabs input[name=tab-control]:nth-of-type(1):checked ~ .content > section:nth-child(1) {
  display: block;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label, .tabbar.tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) a {
  cursor: default;
  color: #036;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label svg, .tabbar.tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) a svg {
  fill: #036;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(2):checked ~ .slider {
  transform: translateX(100%);
}
.tabbar.tabs input[name=tab-control]:nth-of-type(2):checked ~ .content > section:nth-child(2) {
  display: block;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label, .tabbar.tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) a {
  cursor: default;
  color: #036;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label svg, .tabbar.tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) a svg {
  fill: #036;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(3):checked ~ .slider {
  transform: translateX(200%);
}
.tabbar.tabs input[name=tab-control]:nth-of-type(3):checked ~ .content > section:nth-child(3) {
  display: block;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label, .tabbar.tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) a {
  cursor: default;
  color: #036;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label svg, .tabbar.tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) a svg {
  fill: #036;
}
.tabbar.tabs input[name=tab-control]:nth-of-type(4):checked ~ .slider {
  transform: translateX(300%);
}
.tabbar.tabs input[name=tab-control]:nth-of-type(4):checked ~ .content > section:nth-child(4) {
  display: block;
}
@keyframes content {
  from {
    opacity: 0;
    transform: translateY(5%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}/*# sourceMappingURL=tabbar.css.map */