@charset "UTF-8";
/*
My Tabs Style
*/
/* colors */
/* 固定ページ コンテンツの背景色 */
/*  サイドバー【.sidemenu-box__inner】の背景色*/
/* ページコンテンツ内で使う背景色 */
/*タブの実装*/
.my-tabs__button-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.my-tabs__button {
  width: calc(100% / 3);
  padding: 8px 0;
  color: #333;
  background: #f5f7f8;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.my-tabs__button + .my-tabs__button {
  margin-left: 8px;
}

.my-tabs__button:hover {
  background-color: #dce1e4;
}

.my-tabs__button.active {
  background: #3B00C1;
  color: #fff;
}

.my-tabs__panel-area {
  border: solid 1px #e3ebf3;
  padding: 20px;
  margin-bottom: 1rem;
}

.my-tabs__panel {
  display: none;
}

.my-tabs__panel.active {
  display: block;
}

.my-tabs__panel .iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 0.5rem;
}
