/*
Template:easel
Theme Name:canvas on EASEL
Version: 1.1.0
*/

/* ここから下に書いたCSSが、親テーマCSSに上書きされます。 */

@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Gothic&display=swap');
@import url("https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js");

/* ==========================================
  模様替え用カラーコード：
  #ee7800 ／ orange
  ========================================== */

body {
  background: #f5f5f5;
  color: #242424;
  margin: 0;
  padding: 0;
  font-family: 'Sawarabi Gothic', sans-serif;
}

h1 {
	padding: 0 10px;
}

h2 {
  border-bottom: 3px solid #f5f5f5;
  position: relative;
}

h3 {
  padding: 0 0 0 15px;
  margin: 2em 0 1em;
  border-left: 3px solid orange;
}

a {
  color: #242424;
  text-decoration: underline;
  -webkit-transition: color .3s;
  transition: color .3s;
}

a:focus, a:visited, a:active {
  color: #242424;
}

a:hover {
  color: orange;
}

p {
  font-size: 12px;
  margin: 1.5em 0;
}

strong.marker {
  color: #ffffff;
  padding: 0 5px;
  background-size: auto auto;
  background: orange;
}

.novel {
	font-size: 14px;
	margin: 1.5em 1em;
}

.top {
  text-align: center;
  display: block;
  font-size: 12px;
  margin-top: 50px;
}

ul.news_list {
  padding: 10px auto;
  font-size: 10px;
  background: #fff;
  border: 1px solid #e5e4e4;
  border-radius: 4px;
}


/*====================================
    レスページ用 テーブル体裁
====================================*/
dl.flex {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  width: 95%;
  margin: 30px auto;
  font-size: 10px;
  background: #fff;
  border: 1px solid #e5e4e4;
  border-radius: 4px;
  padding: 20px;
}

dl.flex dt {
  width: 100px;
  font-weight: bold;
}

dl.flex dd {
  width: calc(100% - 120px);
  margin-left: 0;
}

dl.flex dt, dl.flex dd {
  padding: 10px 0;
}

dl.flex dt:not(:first-of-type), dl.flex dd:not(:first-of-type) {
  border-top: 1px dashed #e5e4e4;
}


/*====================================
    アイコンフォント 体裁
====================================*/

i.fa-angle-double-right, i.fa-arrow-alt-circle-down, i.fa-heart, i.fa-exclamation-triangle {
    margin-right: 4px;
}

i.fa-arrow-alt-circle-right {
    margin: 0 4px;
}


/*====================================
    ページトップへ移動 クリックボタン
====================================*/
#top_scroll{ 
    position: relative; 
    z-index: 100; 
    margin: 0; 
    padding: 0; 
}
 
#page-top1{
    display: block;
    position: fixed;
    z-index: 9999;
    bottom: -250px;
    right: 10px;
    width: 100px;
    height: 86px;
    padding: 0;
    color: #242424;
    text-align: center;
    text-decoration: none;
    transition: 1s;
    -webkit-transition: 1s;
}
 
#page-top1:hover{ 
    background: none;
    transform: translateY(-10px);
}
 
#top_scroll:hover{
    background: #fff;
}