.detail .body>* {
    margin-bottom: 40px;
}

table{
	width:100%;
}
tbody{
	
}
tr{
	
}
tr:nth-child(even) {
    background-color: #f9f9f9;
}
tr:nth-child(odd) {
    background-color: #ffffff;
}
td{
	border-right: 1px dotted #CCC;
    border-left: 1px dotted #CCC;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    padding: 0.6em 0.6em 0.6em;
    vertical-align: top;
}

blockquote{
	  background: #efefef;
    font-style: italic;
    padding: 30px;
    border-radius: 10px;
    color: #656565;
}

code{
	border: solid 1px #cccccc;
    display: block;
    border-radius: 6px;
    padding: 30px;
    background-color: #f5f2f0;
    font-family: 'Noto Sans JP';
}

ol li img,ul li img{
	margin-bottom: 30px;
	margin-top: 15px;
}

div.tutorial-comment {
	display: none;
}

/* -------------------------------------------------- */
/* 1. コード全体を折り返して表示する設定（横スクロール防止） */
/* -------------------------------------------------- */
.hcb_wrap pre,
.hcb_wrap pre code {
    white-space: pre-wrap !important;      /* 折り返しを強制 */
    word-wrap: break-word !important;      /* 長い単語も折り返す */
    overflow-wrap: break-word !important;  /* モダンブラウザ用 */
    overflow-x: hidden !important;         /* 横スクロールバーを消す */
}

/* -------------------------------------------------- */
/* 2. brなどのタグが途中で変に改行されたり、隙間が空くのを防ぐ設定 */
/* -------------------------------------------------- */
body .hcb_wrap pre code .token.tag,
body .hcb_wrap pre code .token.attr-name,
body .hcb_wrap pre code .token.attr-value {
    display: inline-block !important;   /* タグ全体を「1つの塊」として扱う */
    white-space: nowrap !important;     /* 塊の中では絶対に改行しない */
    vertical-align: bottom !important;  /* 高さ位置の調整 */
    
    /* ▼▼▼ 追加：隙間を埋めるためのマイナス余白 ▼▼▼ */
    margin-left: -15px !important;       /* 数値は微調整してください */
    margin-right: 0 !important;         /* 右側の余白は念のため0に */
}