@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を記入していきましょう。*/
/*--------------------------------------
  見出しh2
--------------------------------------*/
.entry-content h2:not(.sgb-heading) {
background: #90BE6D;
box-shadow: 0px 0px 0px 5px #90BE6D;
border: dashed 1px #ffffff;
padding: 0.2em 0.5em;
color: #ffffff;
}
/*--------------------------------------
  見出しh3
--------------------------------------*/
.entry-content h3:not(.sgb-heading) {
  padding: 0.5em 0.5em;/*文字の上下 左右の余白*/
  color: #4c4c4c;/*文字色*/
  background: #CBE896;/*背景色*/
  margin-top:5px;
  margin-bottom:10px;
/* border-bottom: solid 3px #90BE6D;下線*/
}
/*--------------------------------------
  見出しh4
--------------------------------------*/
.entry-content h4:not(.sgb-heading) {
background: linear-gradient(transparent 70%, #fac9b8 70%);

}
/*--------------------------------------
  表
--------------------------------------*/
.entry-content table {
  max-width: 100%;
	margin-left: auto;/*表位置*/
	margin-right: auto;
 border-collapse: collapse;
border: none;
 /* padding: 10px 10px!important;*/
}
.entry-content table caption {
 margin: 0 0 7px;
 color: #666666;
 font-size: .95em;
 letter-spacing: 1px;
}
.entry-content tr:not(:last-child) {
 border: 1px solid #888888;
}
.entry-content td {
  padding: 5px 5px;
  border: 1px solid #888888;
  text-align: center;
}
.entry-content td:last-child {
 border: 1px solid #888888;
}
.entry-content th {
 padding: 5px 5px;
 border: 1px solid #888888;
 background-color: #dff1c0;
}
.entry-content th:last-child {
 border: 1px solid #888888;
}

@media only screen and (max-width: 480px) { /*スマホ*/
.entry-content table {
	 margin-left: auto!important;/*表位置*/
	 margin-right: auto!important;
	 font-size: 14px; /*表文字*/
	 width: 100%!important;
	border: none; 
 }
 .entry-content td;
 .entry-content th  {
  padding: 4px 3px;
}
 }
 /*表横幅
@media only screen and (min-width: 768px) {
.entry-content table {
  width: 100%!important;
  margin: 15px 0!important;
 }
}*/