@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Template:   cocoon-master
Version:    0.0.5
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

h1{
	padding:0 !important;
}

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


table.conjugation {
    font-size: 16px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 0.5em;
    display: block;
    position: relative;
    border: 1px solid #eee;
    border-radius: 1px;
}

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.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: #fff0ed;
}

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:#ec5133;
}


/************************************
** 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;
	border-radius:2px;
}

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;
}





/*全てをまとめて非表示*/
.home.page .entry-title,
.home.page .sns-share,
.home.page .sns-follow,
.home.page .date-tags,
.home.page .author-info{
  display: none;
}






.search-box {
    max-width: 35em;
    margin: 0 auto;
    padding: 10px;
}
.search-edit, input[type="text"] {
    padding: 12px;
    border: 2px solid #6a6a6a;
    border-radius: 2px;
}
.search-submit {
    padding: 10px 22px 0 22px;
}


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










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



@media screen and (max-width: 768px){
ul.favorites-list {
    padding: 10px 10px 10px 10px;
    border: 1px solid #eee;
    border-radius: 2px;
}
}
.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;
}




.scroll {
    margin: auto;
	padding:10px 0;
    width: 100%;
    font-size: 0.8em;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
    background: #444;
    color: #fff;
}

@media screen and (max-width: 768px){
.scroll {
	padding:15px 0;
	line-height:1;
}
}


.scroll span{
  display     : inline-block;
  padding-left: 100%;
  white-space : nowrap;
  line-height : 1em;
  animation   : scrollAnime 12s linear infinite;
}
@keyframes scrollAnime{
    0% { transform: translateX(0)}
  100% { transform: translateX(-100%)}
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1240px以下*/
@media screen and (max-width: 1240px){
  /*必要ならばここにコードを書く*/
}

/*1030px以下*/
@media screen and (max-width: 1030px){
  /*必要ならばここにコードを書く*/
}

/*768px以下*/
@media screen and (max-width: 768px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}








a.search_direct {
    padding: 10px 10px;
    margin: 10px 0;
    display: block;
    background: #ffeb3b38;
}
a.search_direct:before {
    content: '\f005';
    font-family: 'FontAwesome';
    color: #FFEB3B;
    display: inline-block;
    margin-right: 5px;
}