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

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

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

    /*サムネイルの画質*/
.view-image {
border-radius: 5px;
image-rendering: pixelated;
}

    /*タグ クラウドのバックカラー&文字色*/
    --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;

/*INDEXページの幅変更*/
#index-base {max-width: 600px;}


/*個別の記事ページの幅の変更・角丸処理をなくして上下ピッチリにしたもの*/
#base {
max-width: 600px;
margin: 0 auto 0 auto;
display: flex;
min-height: calc(100vh - 3em);
flex-direction: column;
border-radius: 0px;
padding: 1em;
 }

/*ヘッダー部分の幅も合わせる場合は以下も記述*/
#header {
max-width: 600px;
margin: 0 auto 0 auto;
}

#global-header {
max-width: 600px;
margin: 0 auto 0 auto;
background-color: var(--base-back-color);
color: #777;
}


 /* 背景をグラデーションにする */
body {
background-image: linear-gradient(180deg, #ffffff, #f0f0f0);
background-attachment: fixed;
}

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

    --link-color: #777;
    --link-hover-color: #999;


/*バナーの位置調整*/
@media (min-width: 1200px) {
    #link_banner {
    width: 200px;
    position: relative;
    left: 380px;
    }



    /* トップページ背景色 */
    --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%;
}

/* ボタン本体 */
.original-button {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #333333;
  font-size: 14px;
  border-radius: 5px;
  width: 200px;
  height: 40px;
  border: 1px solid #333333;
  position: relative;
  transition: 0.3s;
  background-color: #ffffff00;
}

.original-button::before, .original-button::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform-origin: 100% 50%;
  height: 1px;
  width: 11px;
  background-color: #333;
  border-radius: 2px;
  will-change: transform;
  transition: .3s;
}

.original-button::before {
  transform: translateY(-50%) rotate(30deg);
}

.original-button::after {
  transform: translateY(-50%) rotate(-30deg);
}

.original-button:hover::before {
  transform: translate(5px, -50%) rotate(30deg);
}

.original-button:hover::after {
  transform: translate(5px, -50%) rotate(-30deg);
}
  transform: translateY(5px);
}

/* フォント */
.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}


/* サムネ余白*/
.loglist_thumbs li{
margin-left:0.5em!important;
margin-right:0.5em!important;
}


<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8">
  <title>全画面画像</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
</body>
</html>
