/* タブ */
.tab-buttons {
  display: flex;
    align-items: flex-end;
  gap: 1%;
  z-index: 2;
  position: relative;
  width: 80%;
  margin-left: 10%;
}
@media (max-width: 767.9px) {
.tab-buttons {
    gap: 1%;
    margin-bottom: 20px;
  }
}
.tab-btn {
  padding: 0.75em 1em 1.25em;
  background: #ffe000;
  border: unset;
  cursor: pointer;
  flex: 1;
  font-size: 1.4em;
  font-weight: 600;
  text-align: left;
  position: relative;
  border-radius: 8px 8px 0 0;
  text-align: center;
  transition: .3s;
}
@media (max-width: 767.9px) {
  .tab-btn {
    display: flex;
    flex-direction: column;
    padding: 0.25em 0.05em;
    font-size: 3.5vw;
    border-radius: 6px;
    border: #ffe000 solid 3px;
  }
}
.tab-btn.active,
.tab-btn:hover {
  background: #fff;
  padding: 0.75em 1em 1.5em;
}
.tab-btn:hover {
  background: rgb(255, 248, 201);
}
.tab-btn::before{
  content: "";
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid #000000;
}
.tab-btn.active::before{
  display: none;
}
.tab-content {
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  height: 0;
  overflow: hidden;
  pointer-events: none;
  background: #fff;
  padding: 0;
}
.tab-content.active {
  opacity: 1;
  height: auto;
  pointer-events: auto;
  padding: 4%;
}
.tabContentsContainer{
  display: flex;
  flex-direction: column;
  gap: 3em 0;
  padding: 0;
  max-height: 63vh;
  overflow-y: scroll;
}
#tab3 .gmcSpec_box{
  gap: 0 1em;
}
@media (max-width: 767.9px) {
  .tabContentsContainer {
    gap: 3em 0;
  }
  .tabContentsContainer ul{
     gap: 4em 0;
  }
  #service-gmc2026 #tab1 .cta{
    margin-bottom: 1rem;
  }
  #tab3 .gmcSpec_box{
    gap: 2em 0;
  }
}
.tabContentsContainer .wrapper-flex > .cnt-col2s:first-child{
  flex: 1;
}
.tabContentsContainer .wrapper-flex > .cnt-col2s:nth-of-type(2){
  flex: 2;
  padding-right: 1em;
}


/* アコーディオン */
.accordion {
  padding: 15px;
  background: #eaeaea;
  cursor: pointer;
  margin-top: 5px;
}
.panel {
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  border-left: 2px solid #aaa;
  transition: max-height 0.35s ease;
  padding: 0 15px;
}
.panel.open {
  padding: 10px 15px;
}


@media (max-width: 1269.9px) {
.tab-buttons {
    width: 100%;
    margin-left: 0%;
  }
}


/* スクロールバー */
.tab-content ::-webkit-scrollbar {
  width: 10px;
}
.tab-content ::-webkit-scrollbar-thumb {
  background: #0067b7;
  border-radius: 10px;
  border: 2px solid #fff;
}

.tab-btn.active .fa-circle-info:before,
.tab-btn.active .fa-lightbulb:before,
.tab-btn.active .fa-table-list:before {
  color: #ffe000;
}
