@charset "utf-8";

/***==========================================
      tab change
==========================================***/

.wrap_tab {
  overflow: hidden;
}

#profile .wrap_tab, #oclist .wrap_tab, #tgofa .wrap_tab, #trpg_log .wrap_tab, #haikaveh_novel .wrap_tab {
  margin-top: 1.2rem;
}

.wrap_tab ul {
  list-style-type: none;
  justify-content: space-around;
}

.list_tab {
  display: flex;
}

.list_tab>li {
  display: block;
  width: 100%;
  margin: 0 1px;
  padding: 0.5em 0 0.5em;
  box-sizing: border-box;
  background: #ccc;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

.list_tab li {
  font-size: 1.2rem;
  letter-spacing: 0.6px;
  border-radius: 2px;
  -webkit-tap-highlight-color: transparent;
}

.list_tab li:hover {
  background: var(--color-base-link-hover);
  transition: all 0.3s ease 0s;
}

.list_tab .active {
  background: var(--color-base-link);
}

.tab_content {
  display: none;
  padding: 1em;
}

.tab_content.active {
  display: block;
}

@media screen and (max-width: 960px) {
  .list_tab {
    overflow: auto;
  }
}

#profile .tab_content {
  padding-top: 0.5rem;
}

/***==========================================
      tab change 内 見出し
==========================================***/

.tab_change_sup {
  margin: 5px 0 10px;
}

.tab_change_sup p {
  font-size: clamp(1.1rem, calc(1.25vw + 1.5rem), 1.25rem);
  font-weight: bold;
}


/***==========================================
      tab change btn_pagelink
==========================================***/

.btn_pagelink {
  display: block;
  width: 200px;
  margin: 20px auto;
  padding: 5px;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  text-align: center;
  background: var(--color-base-link);
  border-radius: 3px;
}

.btn_pagelink:hover {
  background: var(--color-base-link-hover);
  color: #fff;
}