/*ここから目次のcss*/
#toc_container p.toc_title+ul.toc_list>li {
 margin-bottom: 0.1em;
 padding-bottom: 0.4em;
}

#toc_container p.toc_title+ul.toc_list {
    margin-top: 1em;
    margin-right: 0.4em;
}

#toc_container li {
 padding-left: 1em !important;
 line-height: 1.8em;
}

#toc_container ul ul {
 margin-bottom: 10px;
}

.toc_number {
 margin-left: -0.5em;
 margin-right: 0.5em;
 font-family: 'Dynalight', cursive;/*数字のフォント*/
}

#toc_container p.toc_title {
    text-align: center;
    font-weight: 700;
    margin: 0 25%;/*25%の部分を変えれば下線の長さを変更できます*/
    padding: 0;
    letter-spacing: 0.05em;
    border-bottom: solid #454545 1px;/*下線のスタイル*/
}
/*目次のcss終わり*/

#toc_container ul>li>ul>li {
    font-size: 94% !important;/*小見出しの文字サイズ*/
}

#toc_container {
    background: #fff !important;
    padding: 10px;
    margin-bottom: 1em;
    width: auto;
    display: table;
    border: solid 1px #454545;
    margin-top: 30px;
}

/*リンクの色など*/
#toc_container a {
    text-decoration: none;
    text-shadow: none;
    color: #454545 !important;
}

/*h2の見出し*/
.entry-content h2 {
padding: 0.25em 0.5em;/*上下 左右の余白*/
color: #494949;/*文字色*/
background: transparent;/*背景透明に*/
border-left: solid 5px #051036;/*左線*/
	
}

/*h3の見出し*/
.entry-content h3 {
color: #494949;/*文字色*/
padding: 0.5em 0;/*上下の余白*/
border-top: solid 3px #051036;/*上線*/
border-bottom: solid 3px #051036;/*下線*/
}

/* 蛍光ペン風マーカー加工 */ 
.keikou {
background: linear-gradient(transparent 50%, #ffff66 50%);
}

/* 赤字強調 */
.bold-red {
font-size: 16pt;
font-weight: bold;
color: #ec1234
}


/*お試し住宅テーブル用*/
.trialh{
  width:100%;
  border: 2px solid #d6ceb4;
  overflow: hidden;
  word-break: break-all;
  word-wrap: break-word;
}
 
.trialh th{
  padding: 6px 8px 5px;
  border-top: solid 1px #ffffff;
  width: 30%;
  overflow: hidden;
  color: #13131e;
  font-style: normal;
  font-weight: bold;
  font-size: 100%;
  text-align: left;
  word-break: break-all;
  word-wrap: break-word;
  vertical-align: top;
  background-color: #eeece4;
}
 
.trialh td{
padding: 5px 10px;
text-align: left;
vertical-align: top;
color: #595960;
background-color: #ffffff;
border-top: dotted 1px #e0dccc;
overflow: hidden;
word-break: break-all;
word-wrap: break-word;
}
 
@media (max-width: 400px){
.trialh th{
  width:100%;
  display:block;
  margin: 0 auto;
  border:none;
  border-radius: 3px;
}
.trialh td{
  display: list-item;
  width: 100%;
  border-top: none !important;
}
}/* end */

/*サルワカより*/ 
/*交差線のBOX用*/
/*https://saruwakakun.com/html-css/reference/box*/
.box17{
    margin:2em 0;
    position: relative;
    padding: 0.5em 1.5em;
    border-top: solid 2px black;
    border-bottom: solid 2px black;
}
.box17:before, .box17:after{
    content: '';
    position: absolute;
    top: -10px;
    width: 2px;
    height: -webkit-calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: black;
}
.box17:before {left: 10px;}
.box17:after {right: 10px;}
.box17 p {
    margin: 0; 
    padding: 0;
}