:root {
    /*トップページ：サムネイルの横幅*/
    --thumbnail-width: 105px;
    /*トップページ：サムネイルの縦幅*/
    --thumbnail-height: 135px;

    /*検索ページ：サムネイルの横幅*/
    --search-thumbnail-width: 100px;
    /*検索ページ：サムネイルの縦幅*/
    --search-thumbnail-height: 120px;

    /*サムネイルの色*/
    --thumbnail-back-color: #eee;
    --thumbnail-font-color: #999;

    /*タグ クラウドのバックカラー&文字色*/
    --tag-cloud-back-color: #a0a0a0;
    --tag-cloud-font-color: #fff;
    --tag-cloud-back-color-hover: #777;
    --tag-cloud-font-color-hover: #fff;

    /* 基本背景色 */
    --background-color: #f0f0f0;
    --base-back-color: #fff;


    /* 基本 文字色 */
    --base-text-color: #333;
    --base-light-color: #777;

    --link-color: #69c29a;
    --link-hover-color: #F7B733;

a:hover {
color:#F7B733;
text-decoration: none;
}

#tag-links a:hover {
  color: #F7B733;
  text-decoration: none;
}

    /* トップページ背景色 */
    --index-back-color: #fff;

    /* ヘッダー部背景色 */
    --header-back-color: var(--background-color);
    --header-link-color: #777;
    --header-link-color-hover: #999;

    /* テキスト記事サムネイル用背景 */
    --background-text-thumb: url("../resource/text-back1.png");

    /* NSFW記事 サムネイル用背景 */
    --background-nsfw-thumb: url('../resource/nsfw.png');
}

/* ユーザー定義クラス 
　　トップページ・記事内で {s クラス名}~{/s} と記述することで、
　　<span class="user_クラス名">～</span>と同様の動作を行うことができます。

　　よく利用したい文字の色などのスタイルをクラスとして定義しておくと便利です。

    .user_から始まる名前でクラスを定義してください。
    たとえば.user_redクラスは {s red}～{/s}で使用できます。
*/
.user_red {
    color: #f00;
}

.user_green {
    color: #0f0;
}

.user_blue {
    color: #00f;
}

.user_bold {
    font-weight: 800;
}

/* 画像関連 */
.instraction-image {
    border-radius: 5px;
}

.view-image {
    border-radius: 5px;
}

/* グローバルヘッダー */
#global-header {
    background-color: #AAA;
    color: #fff;
}

#global-header a {
    color: #fff;
}

/* Markdown関連 */
ul.md {
    list-style: inside disc
}

ol.md {
    margin-left: 1.5em;
}

p.md {
    margin-bottom: 1em;
}

blockquote.md {
    border-left: 3px solid #CCC;
    padding-left: 1em;
}

code.md {
    background-color: #DDD;
    padding: 2px
}

pre.md code {
    display: block;
    overflow-x: scroll;
    background-color: #DDD;
    padding: 1em;
    border-radius: 5px;
    line-height: 1.3em;
    margin: 0.5em;
}

table.md {
    border: 1px solid #ccc;
    border-collapse: collapse;
    border-radius: 5px;
    margin: 0.5em;
}

table.md td,
table.md th {
    border: 1px solid #ccc;
    padding: 10px;
}

table.md th {
    background-color: #f0f0f0;
    font-weight: bold;
}

/* 小説表示 */
.novel-body {
    font-size: 1em;
}

.novel-body-in {
    line-height: 200%;
}

#control {
    width: 100%;
    text-align: center;
    margin: 0em auto 0em auto;
}

#created_at {
    display:none;
}

#twitter-widget-0 {
    display: none;
}

#like-it {
    display:inline; 
    border-radius: 5em;
    background-color: #ffd2d2;
    color: #6e4848;
    font-size: 15px;
    padding: 0.5em 2em 0.5em 2em;
    margin-bottom: 2em;
    cursor: pointer;
}

.fa-pen-to-square {
    display: none;
}

.created_at {
    display: none;
}

#profile__contents {
    display: none;
}

#content {
    margin-top: 0em;
}


.view-image-container {
    margin: 1.5em auto 0em auto;
}


#content {
    margin-top: 0em;
    margin-bottom: 1em;
}


.view-image {
    display: inline-block;
    width: 350px;
    height: Auto;
    cursor: zoom-in;
    border: solid 1px #b8b8b8;
}

#index-base {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--index-back-color);
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

#base {
    max-width: 1000px;
    margin: 0 auto 3em auto;
    display: flex;
    min-height: calc(100vh - 3em);
    flex-direction: column;
    border-radius: 10px;
    padding: 1em;
}

#pager {
    flex-grow: 0;
    margin-top: 1em;
    margin-bottom: 0em;
    font-size: 1.5em;
    text-align: center;
}

#pager {
    margin-top: 1em;
    font-size: 1.5em;
    text-align: center;
}

.title {
    font-weight: 600;
    white-space: nowrap;
    display: none;
}



.loglist_thumbs {
    flex-grow: 100;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    padding: 0em 1em 0em 1em;
}


.loglist_thumbs .search-list-info {
    overflow: hidden;
    width: var(--thumbnail-width);
    margin: 0;
    padding: 0;
    display: none;
}


#caption {
    margin-top: 1em;
    display: none;
}



#loglist {
    flex-grow: 100;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
}


.search-list-info {
    float: left;
    margin-left: 1em;
    overflow: hidden;
    width: calc(90% - 102px);
    display: none;
}


.list-thumb-box {
    float: left;
    height: var(--search-thumbnail-height);
    width: var(--search-thumbnail-width);
    background-color: var(--thumbnail-back-color);
    border: 1px solid #999;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    margin-right: 0.5em;
}

.thumb-item {
    height: calc(var(--thumbnail-height) + 1em + 0.4em);
    width: var(--thumbnail-width);
    margin-bottom: 5px;
    margin-right: 0em;
    margin-left: 0.5em;
    text-overflow: ellipsis;
    overflow: hidden;
}


.loglist_thumbs li {
    margin: 0em;
    height: calc(var(--thumbnail-height) + 1em + 0.4em);
    width: var(--thumbnail-width);
    margin-bottom: 5px;
    margin-right: 0em;
    margin-left: 0.5em;
    text-overflow: ellipsis;
    overflow: hidden;
}








body{
user-select:none;
-webkit-user-select:none;
-moz-user-select:none;
-khtml-user-select:none;
-webkit-user-drag:none;
-khtml-user-drag:none;
}