@charset "UTF-8";
/*
 Theme Name: SANGO Child
 Theme URI: https://saruwakakun.design
 Author: SARUWAKA
 Author URI: https://saruwakakun.com
 Template: sango-theme
 Version: 3.0
*/
/*こちらはSANGOの子テーマ用CSSです。以下にCSSを記入していきましょう。*/

/** Webフォント。 */
@font-face{ 
	font-family: 'logotype'; /* お好きな名前にしましょう */
	src: url("logotype.eot?") format('eot'),
		url("logotype.woff2") format('woff2'),
		url("logotype.woff") format('woff'),
		url("logotype.ttf")  format('truetype');
}
.myFontClass {
	font-family: 'logotype';
}

/*テーブルの横スクロールのためのCSSはここから*/
 table{ 
    width:100%;
}
.scroll{
    overflow: auto;
    white-space:nowrap;
}
.scroll::-webkit-scrollbar{
    height: 15px;
}
.scroll::-webkit-scrollbar-track{
    background: #f1f1f1;
}
.scroll::-webkit-scrollbar-thumb{
    background: #bbb;
}


/* サイドバーの目次の背景を変更 */

.ez-toc-list .active {
	background-color: #00c9c1;
}

/* Easy Table Of Contentsによる目次に番号振りをする */
/*
#ez-toc-container .ez-toc-list {
  margin-left: 0;
}
#ez-toc-container ul.ez-toc-list li {
  list-style: none;
}
#ez-toc-container ul, #ez-toc-container.counter-hierarchy ul, .ez-toc-widget-container.counter-flat ul, .ez-toc-widget-container.counter-hierarchy ul {
  counter-reset: item;
}
#ez-toc-container ul.ez-toc-list li a::before, .ez-toc-widget-container ul.ez-toc-list li a::before {
  content: counters(item, ".") ". ";
  counter-increment: item;
}
*/

