html {
    font: 14px / 20px "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-size-adjust: 100%;
    background: rgb(255, 255, 255);
    color: rgb(68, 68, 68);
}

body {
    margin: 0px;
}

/* 背景を設定  */
body{
  background: url(https://img.wiki3.jp/_animallabo/26665415_m.jpg);
  background-attachment: fixed;
}


/*===========ヘッダーを画像にする=================*/
div#site_header  h1 a {
    width: 1135px;
    height: 145px;
    background-image: url(https://img.wiki3.jp/_animallabo/anilaboheader002.png?i=342251);
    display: block;
    color: transparent;
    overflow: hidden;
}
div#site_header  h1 a:hover {
    color: transparent;
}


/*=============ナビバーを変更する===============*/
.uk-navbar {
    background-image: url(https://img.wiki3.jp/_animallabo/bg_body_01.png);
    color: rgb(105, 110, 144);
    box-shadow: 1px 1.5px 4px #595959;
}


/*===========ページの幅を調整する=============*/
/* 3カラム+マージン(隙間 10px×2)の合計幅 */
body>div.uk-container.uk-container-center{
width: 1160px; 
}
/* 左カラムの幅 */
body>div.uk-container.uk-container-center>div.uk-grid>div[class*=uk-width-].sidebar.left_side {
width: 200px;
}
/* メインカラムの幅（横幅 + 隙間 5px×2）*/
body>div.uk-container.uk-container-center>div.uk-grid>div[class*=uk-width-].sidebar.left_side+.main_content {
width: 670px;
}
/* 右カラムの幅 */
body>div.uk-container.uk-container-center>div.uk-grid>div[class*=uk-width-].sidebar.right_side {
width: 270px;
}


/*========== DIVコンテナ（メインカラム）===========*/
/*　<div class="container"></div>　*/
.container {
  padding: 0px 18px; /* 内側の余白 */
/* border: solid 2px silver; /* 枠線 */
}


/*=========== DIVコンテナ（雑記帖）=============*/
/* <div class="container2"></div>　*/
.container2 {
  padding: 5px 18px;/* 内側の余白 */
  background-color: #FDF6DB;
  border: solid 1px #EEAA55; /* 枠線 */
}


/*============DIVコンテナ（左メニュー）=============*/
/* <div class="container3"></div>　*/
.container3 {
  padding: 6px 0px 0px;/* 内側の余白 */
}


/*===========DIVコンテナ（ステータス一覧）==========*/
/* <div class="container4"></div>　*/
.container4 {
  padding: 0px 90px;/* 内側の余白 */
}


/*========【TOPに戻るボタン】===========
↓ページのフッターに記述する
<a href="#" class="gotop">TOP</a>
=========================================*/
html{
    scroll-behavior: smooth;
}
.gotop{
    display: block;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    background: #FFF;
    border: 1px solid #999;
    padding-top: 30px;
    text-align: center;
    letter-spacing: -1px;
    font-size: 85%;
    text-decoration: none;
    color: #333;
    opacity: 0.5;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}
.gotop::before{
    content: "";
    display: block;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    width: 25%;
    height: 25%;
    top: 25%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transform: rotate(-45deg);
}
.gotop:hover{
    opacity: 1;
}
@media(max-width:750px){
    .gotop{
        width: 40px;
        height: 40px;
        text-indent: -9999px;
        opacity: 1;
        border: none;
        background: none;
        bottom: 10px;
        right: 10px;
    }
    .gotop::before{
        bottom: 0;
    }
}


/*========コメントの「書き込む」ボタンを変更する======== */
section#comment-form form button.uk-button-large {
    background-color: #ce7639;
    color: #000;
}


/*======「クイズの答え」ページの文字を大きく========*/
.font_resize{
    font-size:  1rem;  /* 文字サイズ指定 */
}


/*=======ページ右上のタイトル文字を消す==========*/
div.uk-text-right {
  color: #FFF;
}


/*===========セルの背景色を変更する===========*/
td.uk-text-right2 {
   background: #fcfad2;
}


/* ====================================*/

a {
    background: 0px 0px;
}

a:active, a:hover {
    outline: 0px;
}

a, .uk-link {
    color: rgb(164, 139, 130);
    text-decoration: none;
    cursor: pointer;
}

a:hover, .uk-link:hover {
    color: rgb(238, 134, 107);
    text-decoration: underline;
}

abbr[title] {
    border-bottom: 2px dotted;
}

b, strong {
    font-weight: 700;
}

:not(pre) > code, :not(pre) > kbd, :not(pre) > samp {
    font-size: 12px;
    font-family: Consolas, monospace, serif;
    color: rgb(221, 0, 85);
    white-space: nowrap;
}

em {
    color: rgb(0, 0, 0);
}

ins {
    background: rgb(255, 255, 170);
    color: rgb(68, 68, 68);
    text-decoration: none;
}

mark {
    background: rgb(255, 255, 170);
    color: rgb(68, 68, 68);
}

q {
    font-style: italic;
}

small {
    font-size: 80%;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    border: 0px;
    vertical-align: middle;
}

.uk-img-preserve, .uk-img-preserve img {
    max-width: none;
}

svg:not(:root) {
    overflow: hidden;
}

blockquote, figure {
    margin: 0px;
}

p, ul, ol, dl, blockquote, pre, address, fieldset, figure {
    margin: 0px 5px 5px;
}

* + p, * + ul, * + ol, * + dl, * + blockquote, * + pre, * + address, * + fieldset, * + figure {
    margin: 5px 5px 5px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 5px 0px 12px;
    font-family: "helvetica neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: rgb(68, 68, 68);
    text-transform: none;
}

* + h1, * + h2, * + h3, * + h4, * + h5, * + h6 {
    margin-top: 20px;
}

h1, .uk-h1 {
    font-size: 20px;
    line-height: 35px;
/* =============h1=見出しを装飾=================*/
    margin-bottom: 1rem;
    padding: 1rem;
    outline: 2px dashed #FFFFFF;
    outline-offset: -5px;
    background-color: #ce7639;
    font-weight: bold;
    border-radius: 15px 0px 0px 0px;
    box-shadow: 1px 1.5px 4px #CECECE;
    padding-top:10px;
    text-indent: 5px;
}
/* ================ここまで====================*/

h2, .uk-h2 {
    font-size: 16px;
    line-height: 14px;
/* =============h2=見出しを装飾=================*/
    color: #707070;
    background-color: #f5cc9e;
    border-top: solid 3px #df9700;
    border-radius: 0px 0px 5px 5px;
    box-shadow: 0 4px 4px rgba(206, 206, 206, .4);
    padding: 10px;
}
/* ================ここまで====================*/

h3, .uk-h3 {
    font-size: 15px;
    line-height: 20px;
/* =========h3=見出しを装飾=================*/
  position: relative;
  padding-left: 25px;
}

h3:before {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px transparent;
  border-bottom: solid 15px rgb(214, 146, 63);
}
h3:after {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 10px;
  width: 98%;
  border-bottom: solid 3px rgb(214, 146, 63);
}
/* ================ここまで====================*/

h4, .uk-h4 {
    font-size: 16px;
    line-height: 22px;
}

h5, .uk-h5 {
    font-size: 14px;
    line-height: 20px;
}

h6, .uk-h6 {
    font-size: 12px;
    line-height: 18px;
}

ul, ol {
    padding-left: 20px;
}

ul > li > ul, ul > li > ol, ol > li > ol, ol > li > ul {
    margin: 2px;
}

dt {
    font-weight: 700;
}

dd {
    margin-left: 0px;
}

hr {
    box-sizing: content-box;
    height: 0px;
    margin: 15px 0px;
    border-width: 1px 0px 0px;
    border-right-style: initial;
    border-bottom-style: initial;
    border-left-style: initial;
    border-right-color: initial;
    border-bottom-color: initial;
    border-left-color: initial;
    border-image: initial;
    border-top-style: solid;
    border-top-color: rgb(221, 221, 221);
}

address {
    font-style: normal;
}

blockquote {
    padding-left: 15px;
    border-left: 5px solid rgb(221, 221, 221);
    font-size: 16px;
    line-height: 22px;
    font-style: italic;
}

pre {
    padding: 10px;
    background: rgb(245, 245, 245);
    font: 12px / 18px Consolas, monospace, serif;
    color: rgb(68, 68, 68);
    tab-size: 4;
    overflow: auto;
}


/*-------BBSボタン/オリジナル-------
.uk-button-large {
    min-height: 40px;
    padding: 0px 15px;
    line-height: 40px;
    font-size: 16px;
}
------------------------------------*/
.uk-button-large {
    min-height: 35px;
    padding: 0px 15px;
    line-height: 35px;
    font-size: 16px;
    box-shadow: 1px 1.5px 4px #CECECE;
}
/*------------ここまで-----------------*/

