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



#breadcrumb {
    margin: 0;
    padding: 3px 15px;
    background: #f4f4f4;
}
.entry-title {
    padding: 10px 15px 10px;
    font-size: 18px;
}

table.basic{
    font-size:1em;
    background: #fbfcfc;
}
table.basic td {
    border: none;
	padding: 10px 10px 10px 15px;
    width: 50%;
}


table.conjugation {
    font-size: 15px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 0.5em;
    background: #f8f9fa;
    border-collapse: collapse;
    border-spacing: 0;
    display: block;
    position: relative;
    -webkit-overflow-scrolling: touch;
	border:1px solid #eee;
}

table.conjugation thead {
	display: block;
	float: left;
}
table.conjugation tbody {
	display: block;
	position: relative;
	width: auto;
	overflow-x: auto;
	white-space: nowrap;
}
table.conjugation thead th {
	display: block;
}
table.conjugation tbody td {
	display: block;
}
table.conjugation tbody tr {
	display: inline-block;
}
table.conjugation th:not(:last-child) {
	border-bottom: none;
}
table.conjugation td:not(:last-child) {
	border-bottom: none;
}
table.conjugation td {
	border-left: none;
}

table.conjugation thead tr{
	display:block;
}

table.conjugation tr.one{
	width: 100%;
	display:inline-table;
	background: #fff;
}


table.conjugation tr.two{
	width: 100%;
	display:inline-table;
	background: #fff7f7;
}


.entry-content table.conjugation th {
    border: none;
    background-color: #f8f9fa;
	 padding:6px;
}
.entry-content table.conjugation th:last-child {
    border: none;
}
.entry-content table.conjugation td {
    border: none;
    padding:6px;
}
.entry-content table.conjugation tr:not(:last-child) {
    border-bottom: none;
}










.entry-content h2{
	text-align:center;
}




/************************************
** リスト表示
************************************/

ul{
	border:none !important;
}

ul.a, ul.b, ul.c,ul.d,ul.x{
  padding: 0.5em 0.5em 0.5em 1em;
  margin: 0;
  width: 100%;
  display:inline-block;
  counter-reset:li;
  font-size:14px;
  list-style: none;
}
ul.a{
  background: #fff2f1;
  padding: 0.5em 0.5em 0em 1em;
}
ul.b{
  background: #f1ffe1;
  padding: 0.5em 0.5em 0em 1em;
}
ul.c{
  background: #fffbf0;
  padding: 0.5em 0.5em 0em 1em;
}
ul.d{
  background: #f4faff;
}
ul.x{
  background: #f2fffe;
}

ul.a li, ul.b li, ul.c li,ul.d li,ul.x li  {
    position: relative;
    font-weight: bold;
    line-height: 28px;
    padding-left: 40px;
    margin: 0;
    margin-bottom: 5px;
    float: left;
    width: 50%;
}
ul.a li:last-child,ul.b li:last-child,ul.c li:last-child,ul.d li:last-child,ul.x li:last-child{
	margin-bottom:0px;
}

ul.a li:before,ul.b li:before,ul.c li:before,ul.d li:before,ul.x li:before{
  counter-increment: li;
  content: counter(li);
  position: absolute;
  left: -1px;
  color: #fff;
  text-align: center;
  line-height: 30px;
  width: 30px;
  height: 30px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
ul.a li:before{
  background:#f44336;
}
ul.b li:before{
  background:#8bc34a;
}
ul.c li:before{
  background:#ffc107;
}
ul.d li:before{
  background:#2196F3;
}
ul.x li:before{
  background:#3fb4a7;
}


/************************************
** h2ナンバリング
************************************/

body {
  counter-reset: h2-a 0 h2-b 0 h2-c 0 h2-d 0;                     /* 'section' という名前のカウンターを設定し、 0 で初期化する。 */
}

h2.a,h2.b,h2.c,h2.d {
  position: relative;
  padding: 0.5em 0.5em;
}

h2.a{
  background: #fff2f1;
  border-left: solid 2em #f44336;
}
h2.b{
  background: #f1ffe1;
  border-left: solid 2em #8bc34a;
}
h2.c{
  background: #fffbf0;
  border-left: solid 2em #ffc107;
}
h2.d{
  background: #f4faff;
  border-left: solid 2em #2196F3;
}


h2.a:before,h2.b:before,h2.c:before,h2.d:before {
  position: absolute;
  padding: 0em;
  color: white;
  font-weight: bold;
  left: -1.35em;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

h2.a:before{
  counter-increment: h2-a;                 /* section カウンターの値に1を加算 */
  content: counter(h2-a);                  /* section カウンターの値を表示 */
}
h2.b:before{
  counter-increment: h2-b;                 /* section カウンターの値に1を加算 */
  content: counter(h2-b);                  /* section カウンターの値を表示 */
}
h2.c:before{
  counter-increment: h2-c;                 /* section カウンターの値に1を加算 */
  content: counter(h2-c);                  /* section カウンターの値を表示 */
}
h2.d:before{
  counter-increment: h2-d;                 /* section カウンターの値に1を加算 */
  content: counter(h2-d);                  /* section カウンターの値を表示 */
}


/************************************
** ページ上部移動
************************************/

.page-top {
    text-align: right;
    display: block;
    font-size: 0.8em;
	margin-bottom:10px;
}



#searchform div{
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 0px;
}


/*検索ボックス*/
input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }


input#s {
    margin-top: -29px;
}


.sidelong time {
    display: none;
}
.sidelong h2 {
    display: inherit;
    vertical-align: middle;
}
#searchsubmit {
    height: 45px;
}




p.toptext {
    text-align: center;
    margin: 0;
    color: #3fb4a7;
    font-size: 1.3em;
    font-weight: bold;
    letter-spacing: 1px;
    background: #f2fffe;
}





.nothumb .entry-meta {
    position: relative;
    font-size: 15px;
    display: none;
}






/************************************
**ブックマーク
************************************/


button.simplefavorite-button {
    background: yellow;
    padding: 5px 10px;
    margin: 0px 0px 0px 0px;
    font-weight: bold;
    border-radius: 2px;
    border: 2px solid #e4e430;
}



@media screen and (max-width: 768px){
ul.favorites-list {
    padding: 10px 10px 10px 10px;
    margin: 10px 0px 10px;
    border: 1px solid #eee !important;
    border-radius: 2px;
}
}
ul.favorites-list {
    list-style-type:none !important;
}
.favorites-list li {
    border-top: none !important;
    padding: 0 !important;
    font-size: 0.8em;
}

.favorites-list li p {
    margin:0em;
}

ul.no-favorites {
    font-size: 0.8em;
    border-radius: 2px;
    line-height: 1.4;
    border: none;
    padding: 0px 0px 0px;
	margin:0em;
}








a.search_direct {
    background: #ffb36b;
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
    display: block;
    margin: 10px 0px;
    padding: 10px;
    border-radius: 3px;
}
a.search_direct:after {
    content:'>';
	 padding-left:5px;
}