<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@keyframes fadeIn {
  from {
    opacity: 0.1;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

.tabContainer {
  margin: 70px 0;
}
.tabContainer * {
  /*font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";*/
}
.tabContainer .tabMenu {
  display: flex;
  margin-bottom: 20px;
}
.tabContainer .tabMenu li {
    list-style: none;
    padding: 10px 14px;
    background: #f2d757;
    margin-right: 5px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    color: #000 !important;
    font-size: 16px;
}
.tabContainer .tabMenu li a {
  display: block;
  padding: 10px;
  margin: -10px;
  text-decoration: none;
  color: #ffffff !important;
}
.tabContainer .tabMenu li a:hover {
  color: #ffffff !important;
}
.tabContainer .spMenuItem {
  display: none;
}
.tabContainer .tabBox {
  display: none;
}
.tabContainer .tabBox h3 {
  font-size: 28px;
  font-weight: normal;
}

@media screen and (min-width: 641px) {
  .tabMenu li.current {
    background: #000;
    color: #FFFFFF !important;
  }
  .tabMenu li.current:hover {
    background: #000;
	opacity: 1;
    color: #ffffff !important;
  }
  .tabMenu li.current a {
    color: #FFFFFF !important;
  }
  .tabMenu li.current a:hover {
    color: #FFFFFF !important;
  }
  .tabMenu li:hover {
    background: #000;
    color: #ffffff !important;
  }

  .tabBox.current {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .tabContainer {
    margin: 30px 0;
  }
  .tabContainer .tabMenu {
    display: none;
  }
  .tabContainer .spMenuItem {
    background: #000003;
    padding: 15px 10px;
    margin-top: 1px;
    position: relative;
    display: block;
	color: #ffffff !important;
  }
  .tabContainer .spMenuItem.linkIcon::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 5px 0 5px;
    border-color: #ffffff transparent transparent transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 15px;
    margin: auto;
  }
  .tabContainer .spMenuItem.linkIcon.open {
    background: #f2d757;
    color: #000 !important;
  }
  .tabContainer .spMenuItem.linkIcon.open::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 7px 5px;
    border-color: transparent transparent #000 transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 15px;
    margin: auto;
  }
  .tabContainer .spMenuItem a {
    display: block;
    color: #ffffff !important;
    text-decoration: none;
    padding: 15px 10px;
    margin: -15px -10px;
  }
  .tabContainer .spMenuItem.outerLink {
    position: relative;
  }
  .tabContainer .spMenuItem.outerLink::before {
    content: '';
    display: block;
    height: 6px;
    width: 8px;
    border: 1px solid #ffffff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 13px;
    margin: auto;
  }
  .tabContainer .spMenuItem.outerLink::after {
    content: '';
    display: block;
    height: 6px;
    width: 8px;
    border: 1px #ffffff solid;
    position: absolute;
    top: 6px;
    bottom: 0;
    left: auto;
    right: 16px;
    margin: auto;
  }
  .tabContainer .spMenuItem.selfLink::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 15px;
    margin: auto;
  }
  .tabContainer .tabBox.open {
    display: block;
  }
	.tabContainer .tabBox h3 {
	  font-size: 18px;
	  font-weight: normal;
	}
}

/*# sourceMappingURL=tab.css.map */
</pre></body></html>