@charset "UTF-8";

body{
    display: flex;
    flex-direction: column;
}

/*****************************/
 /* ヘッダー */
/*****************************/
.title{
    height: 70px;
    text-align: center;
    background-color: #888;
    color: #fff;
}

/*********************************/
 /* メインページ（ブログ画面） */
/*********************************/
main{
    min-height: 100vh;
    margin-top: 10px;
    display: flex
}

/*****************************/
 /* ブログコンテンツ 全体 */
/*****************************/
.contents{
    flex-grow: 1;
    background-color: #fff;
    margin-left: 50px;
    margin-right: 50px;
    width: 85%;
}

/*****************************/
 /* ブログコンテンツ タイトル */
/*****************************/
.contents_title h2{
    text-align: center;
}

/*****************************/
 /* ブログコンテンツ 導入 */
/*****************************/
.contents_introduction{
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: 20px;
    word-break:keep-all;
}

/*****************************/
 /* ブログコンテンツ 目次 */
/*****************************/
.contents_index {
    margin-bottom: 30px;
    padding: 1em 1em 1em 2em;
    border: 1px solid #999;
    background-color: #f7f7f7;
    color: #333333;
}

.contents_index ol{
    list-style-type: decimal;
    margin: 0;
    padding: 0 1.2em;
    overflow: hidden;
}

.contents_index li{
    padding: 5px 0;
}

.contents_index a{
    color: #166c9d;
}

/*****************************/
 /* ブログコンテンツ 本文 */
/*****************************/

.contents_text .contents_text_tile h3{
    margin-top: 50px;
    color: #8AC75A;
    width: 100%;
    background-image: linear-gradient(to right, rgba(98, 131, 194, 0.8), rgba(98, 131, 194, 0.8) 3px, transparent 3px, transparent 8px);
    background-repeat: repeat-x;
    background-size: 11px 2px;
    background-position: left bottom;
    padding-bottom: 2px;
}

.contents_text .contents_text_explanation{
    margin-top: 30px;
    margin-bottom: 50px;
    margin-left: 20px;
}

.contents_text .contents_text_explanation span{
    font-weight: bold;
}

.contents_text .contents_text_explanation .contents_text_explanation_datail{
    margin-top: 50px;
    margin-bottom: 50px;
}

.contents_text .contents_text_explanation img{
    width: 60%;
}

.contents_text .contents_text_explanation .contents_text_explanation_highlight{
    font-weight: bold;
}

/*********************************/
 /* ナビゲーション（HOME画面） */
/*********************************/
.blogList{
    flex: 1;
    background-color: #fff;
    text-align: center;
    margin-left: 10px;
}

.blogList ul{
    list-style: none;
}

/*********************************************/
 /* ナビゲーション（ブログ画面：左ペイン） */
/*********************************************/

.localNavigation{
    width: 400px ;
    text-align: center;
    background-color: #eee;
    color: #888;
}

.localNavigation ul{
    list-style: none;
    text-align: left;
}

/*********************************************/
 /* フッター部分 */
/*********************************************/
.Copyright{
    background-color: #000;
}
.Copyright p{
    color: #fff;
    margin-left: 20px;
}

