@charset "utf-8";
/* タブ切り替え */
.ftTab {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 3rem auto 0;
}
.ftTab_label {
  opacity: 0.7;
  flex: 1 1;
  order: -1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 70px;
  padding: 1em;
  background-color: #b93821;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  font-size: 0.9em;
  transition: 0.2s;
  cursor: pointer;
  word-break: break-all;
}
.ftTab_label:has(:checked) {
  opacity: 1;
  cursor: auto;
}
.ftTab_label:has(:checked)::before {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 9px;
  background-color: #b93821;
  content: '';
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.ftTab_input {
  display: none;
}
.ftTab_box {
  display: none;
  width: 100%;
  padding-top: 1em;
}
.ftTab_label:has(:checked) + .ftTab_box {
  display: block;
}