@charset "UTF-8";

/* 20251203 add */
.maintenance-form__content-tabs {

  & .tabs {
    margin-top: 1em;
  }
  & .tab-buttons {
    display: flex;
    gap: 6px;
  }
  & .tab {
    flex: 1;
    padding: .8em;
    background: transparent;
    border: 1px solid #241913;
    cursor: pointer;
    font-size: 14px;
    color: #241913;
    border-radius: 6px;
    font-weight: bold;
  }
  & .tab.active {
    background: #241913;
    color: #fff;
  }
  & .tab-contents {
    position: relative;
  }
  & .content {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    height: 0;
    overflow: hidden;
    padding: 0;
  }
  & .content.active {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    padding: 1em 0;
  }
  & .tab-contents.form-wrap {
    margin-top: 0;
  }
}