@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

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

/* テーブルで左列だけ固定 https://haniwaman.com/parts/post-4069/ */

.hidari-kotei table,tr, td, th {
  border: 0px none !important;
}
.hidari-kotei {
  table-layout: fixed;
  width: 100%;
  margin-bottom: 1px !important;
}
.hidari-kotei th, .hidari-kotei td {
  padding: .3em;
  text-align: left;
  background: #fff;
}
.hidari-kotei th:first-child {
  width: 150px;
}
@media only screen and (max-width:600px){
	.hidari-kotei {
	}
	.hidari-kotei th,
	.hidari-kotei td{
		display: block;
	}
}

/* 見るボタン　公式サイト用 */

.mirubotan {
  outline: 0;
  border: solid 3px #337AB7;
  cursor: pointer;
  padding: 0 24px;
  border-radius: 50px;
  min-width: 200px;
  height: 50px;
  font-size: 18px;
  background-color: #ffffff;
  font-weight: 600;
  color: #337AB7;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 見るボタン　もしもカラー */

.mirubotan_moshimo a {
  outline: 0;
  border: solid 3px #87C208;
  cursor: pointer;
  padding: 0 24px;
  border-radius: 50px;
  min-width: 200px;
  height: 50px;
  font-size: 18px;
  background-color: #ffffff;
  font-weight: 600;
  color: #87C208;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* レスポンシブ Table  https://lufa-tawasi.com/responsive-table1/ */

.Table{
  border: 1px solid #000000;
  width: 100%;
}
.Table td{
}
.Table th{
  background: #fff;
  max-width: 300px;
}
@media only screen and (max-width:600px){
	.Table {
	}
	.Table th,
	.Table td{
		display: block;
	}
}

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

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

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

/************************************
*サイドバーのサムネイルのサイズを正方形に変更
https://plusreco.com/cocoon-sidebar-square/
************************************/

#sidebar .card-thumb img{
 width: 90px;
 height: 90px;
 object-fit: cover;
}
#sidebar .widget-entry-cards figure {
 width: 90px;
}
#sidebar .widget-entry-card-content {
 margin-left: 100px;
}
