/*テーブルプレス幅変更*/
.column-1{
  width:50%;
}
/*記事リンク文字変更*/
.content a{
    font-weight: bold;
    text-decoration: underline;
}
/*ブログタイトル変更*/
#logo img {
    font-size: 3em;
    font-weight: bold;
    padding-top: 2em;
}
/*サイドバーリンク文字*/
.sideber-link{
font-size: 1.5em;
  margin-top: 1em;
}
/*サイドバーリンク文字*/
.sideber-link a{
font-weight: bold;
}
.sideber-link a:hover {
text-decoration:underline;
color:orange;
}
/*プロフィール画像*/
.profile img{
border-radius:50%;
margin-top: 2em;
margin-bottom: 2em;
}
.profile a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}
/*お問い合わせ文字*/
.situmonmozi{
  font-size:2em;
  font-weight:bold;
}
.gray{
    color: gray;
}
/*外枠*/
.sotowaku{
    padding: 1em; /*内側余白*/
    margin-bottom: 2em; /*下側余白*/
    background: #ffffe0; /*背景　黄色*/
}
/*中枠*/
.nakawaku{
    padding: 1em 1em 0em 1em; /*内側余白*/
    margin-bottom: 0em; /*下側余白*/
    background: white; /*背景　白色*/
}
/*文字を震わせる*/
.buruburu {
    display: inline-block;
    animation: hurueru 2.2s  infinite;
}

@keyframes hurueru {
   0% {transform: translate(0px, 0px) rotateZ(0deg)}
   2% {transform: translate(2px, 2px) rotateZ(2deg)}
   4% {transform: translate(0px, 2px) rotateZ(0deg)}
   6% {transform: translate(2px, 0px) rotateZ(-2deg)}
   8% {transform: translate(0px, 0px) rotateZ(0deg)}
   10% {transform: translate(2px, 2px) rotateZ(2deg)}
   12% {transform: translate(0px, 0px) rotateZ(0deg)}
   14% {transform: translate(2px, 0px) rotateZ(-2deg)}
   16% {transform: translate(0px, 2px) rotateZ(0deg)}
   18% {transform: translate(0px, 0px) rotateZ(0deg)}
   100% {transform: translate(0px, 0px) rotateZ(0deg)}
}

/*文字を震わせる2*/
.buruburu2 {
    display: inline-block;
    animation: hurueru 5s  infinite;
}

@keyframes hurueru {
   0% {transform: translate(0px, 0px) rotateZ(0deg)}
   2% {transform: translate(2px, 2px) rotateZ(2deg)}
   4% {transform: translate(0px, 2px) rotateZ(0deg)}
   6% {transform: translate(2px, 0px) rotateZ(-2deg)}
   8% {transform: translate(0px, 0px) rotateZ(0deg)}
   10% {transform: translate(2px, 2px) rotateZ(2deg)}
   12% {transform: translate(0px, 0px) rotateZ(0deg)}
   14% {transform: translate(2px, 0px) rotateZ(-2deg)}
   16% {transform: translate(0px, 2px) rotateZ(0deg)}
   18% {transform: translate(0px, 0px) rotateZ(0deg)}
   100% {transform: translate(0px, 0px) rotateZ(0deg)}
}

/*文字を震わせる3*/
.buruburu3 {
    display: inline-block;
    animation: hurueru 0.2s  infinite;
}

@keyframes hurueru {
   0% {transform: translate(0px, 0px) rotateZ(0deg)}
   2% {transform: translate(2px, 2px) rotateZ(2deg)}
   4% {transform: translate(0px, 2px) rotateZ(0deg)}
   6% {transform: translate(2px, 0px) rotateZ(-2deg)}
   8% {transform: translate(0px, 0px) rotateZ(0deg)}
   10% {transform: translate(2px, 2px) rotateZ(2deg)}
   12% {transform: translate(0px, 0px) rotateZ(0deg)}
   14% {transform: translate(2px, 0px) rotateZ(-2deg)}
   16% {transform: translate(0px, 2px) rotateZ(0deg)}
   18% {transform: translate(0px, 0px) rotateZ(0deg)}
   100% {transform: translate(2px, 2px) rotateZ(0deg)}
}
.waku3{
    background-color: #f8f9ff;
    padding-left:1em;
    width:auto;
    border: dashed 1px #4865b2;
    margin-bottom: 2em;
    padding-top: 1.2em;
    padding-right: 0em;
}

/*画像光る*/
.hikaru-img{
    width       :auto;
    height      :auto;
    position    :relative;
    overflow    :hidden;
}
.hikaru-img:hover{
opacity: 0.7;
}
.hikaru {
    height      :100%;
    width       :30px;
    position    :absolute;
    top         :-180px;
    left        :0;
    background-color: #fff;
    opacity     :0;
    transform: rotate(45deg);
    animation: reflection 2s ease-in-out infinite;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 2s ease-in-out infinite;
    -moz-transform: rotate(45deg);
    -moz-animation: reflection 2s ease-in-out infinite;
    -ms-transform: rotate(45deg);
    -ms-animation: reflection 2s ease-in-out infinite;
    -o-transform: rotate(45deg);
    -o-animation: reflection 2s ease-in-out infinite;
}
 
@keyframes reflection {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { transform: scale(4) rotate(45deg); opacity: 1; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflection {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-moz-keyframes reflection {
    0% { -moz-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -moz-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -moz-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -moz-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-ms-keyframes reflection {
    0% { -ms-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -ms-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -ms-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -ms-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-o-keyframes reflection {
    0% { -o-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -o-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -o-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -o-transform: scale(50) rotate(45deg); opacity: 0; }
}

/*マーカーアニメーション*/
 
.marker-animation.active{
    background-position: -100% 0.5em;
}
 
.marker-animation {
    background-image: -webkit-linear-gradient(left, transparent 50%, rgb(254, 255, 0) 50%);
    background-image: -moz-linear-gradient(left, transparent 50%, rgb(254, 255, 0) 50%);
    background-image: -ms-linear-gradient(left, transparent 50%, rgb(254, 255, 0) 50%);
    background-image: -o-linear-gradient(left, transparent 50%, rgb(254, 255, 0) 50%);
    background-image: linear-gradient(left, transparent 50%, rgb(254, 255, 0) 50%);
    background-repeat: repeat-x;
    background-size: 200% .8em;
    background-position: 0 .5em;
    transition: all 4s ease;
    font-weight: bold;
}
/*PRボタン*/
.pr{
font-size: 14px;
color:#fff;
margin-right: 10px;
background-color:#ee7917;
border-radius: 2px;
padding: 8px 8px 7px;
}
.pr:hover {
  opacity: 0.6;
}
/*リンクのアンダー線を消す*/
.nashi{
text-decoration:none !important;
color: #6495ed;
font-size: 1.2em;
font-weight: bold;
}
.nashi:hover {
  color: #ee7917;
}
/*証券ランキングタイトル*/
.shoken-ranking-title {
  background: linear-gradient(transparent 0%, #ffff98 0%); /*マーカー線*/
  font-weight: bold; /*太字*/
  font-size: 1.5em; /*文字サイズ*/
  text-align: center; /*中央ぞろえ*/
}
/*証券ランキングサブタイトル*/
.shoken-ranking-sub-title {
  color: #ff0000; /*文字色*/
  font-size: 1.5em; /*文字サイズ*/
}
/*証券ランキング順位説明*/
.shoken-ranking-setumei {
  background: linear-gradient(transparent 90%, yellow 0%); /*マーカー線*/
  color: #ff0000; /*文字色*/
}
/*証券ランキング文字サイズ*/
.shoken-ranking-mozi {
  font-size: 1.5em; /*文字サイズ*/
}
/*証券ランキング枠*/
.shoken-ranking-waku {
  margin: 2em 0; /*枠外の余白*/
  padding: 1.5em 1em; /*枠内の余白*/
  border: solid 2px #000; /*枠線*/
  font-weight: 700; /*太線*/
}
/*リンク色*/
.shoken-ranking-waku a{
 color: #6495ed !important; /*リンク色*/
 font-weight: bold; /*太字*/
 text-decoration: underline; /*下線*/
}
/*リンク色 ホーバー*/
.shoken-ranking-waku a:hover {
 color: orange !important; /*リンク色*/
}
/*スマホ向け*/
/*証券ランキングタイトル*/
.m-shoken-ranking-title {
  background: linear-gradient(transparent 0%, #ffff98 0%); /*マーカー線*/
  font-weight: bold; /*太字*/
  font-size: 1.2em; /*文字サイズ*/
  text-align: center; /*中央ぞろえ*/
}
/*証券ランキングサブタイトル*/
.m-shoken-ranking-sub-title {
  color: #ff0000; /*文字色*/
  font-size: 1em; /*文字サイズ*/
}
/*証券ランキング順位説明*/
.m-shoken-ranking-setumei {
  background: linear-gradient(transparent 90%, yellow 0%); /*マーカー線*/
  color: #ff0000; /*文字色*/
}
/*証券ランキング文字サイズ*/
.m-shoken-ranking-mozi {
  font-size: 1.2em; /*文字サイズ*/
}
/*証券ランキング枠*/
.m-shoken-ranking-waku {
  margin: 2em 0; /*枠外の余白*/
  padding: 1.5em 1em; /*枠内の余白*/
  border: solid 2px #000; /*枠線*/
  font-weight: 700; /*太線*/
}
/*リンク色*/
.m-shoken-ranking-waku a{
 color: #6495ed !important; /*リンク色*/
 font-weight: bold; /*太字*/
 text-decoration: underline; /*下線*/
}
/*リンク色 ホーバー*/
.m-shoken-ranking-waku a:hover {
 color: orange !important; /*リンク色*/
}
/*空白*/
.kuuhaku1{
    margin-bottom: 1.5em;
}
/*スマホ用空白*/
.kuuhaku2{
    margin-bottom: 1.5em;
}
/*光るボタン（グラデーション）コインチェック用*/
.hikaru-btn10 {
  position: relative; /*通常の表示位置が基準*/
  display: inline-block; /*横並び*/
  padding: 1em 1em; /*余白*/
  text-decoration: none !important; /*装飾なし*/
  border-radius: 50px; /*角丸み*/
  color: #ffffff !important; /*文字色*/
  background:#00a0ff; /*グラデーション*/
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29); /*影*/
  border-bottom: solid 3px #00719d; /*下線*/
  overflow: hidden; /*光のはみ出し非表示*/
  font-weight: bold;
  font-size:1.5em;
}
/*光るボタン(スマホ用)*/
@media screen and (max-width: 510px) {
.hikaru-btn10{
  font-size: 1.2em;
	width: 300px;
}
}
/*ボタンの上にマウスをのせたとき*/
.hikaru-btn10:hover {
  background-image: linear-gradient(#6795fd 0%, #67ceff 70%); /*グラデーション*/
  border-bottom: solid 3px blue; /*下線*/
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
.hikaru-btn10::after {
  position: absolute; /*光の位置*/
  content: ''; /*光の表示設定*/
  display: inline-block; /*文字の位置*/
  top: -180px; /*光の始まり位置上側*/
  left: 0; /*光の始まり位置左側*/
  width: 30px; /*光の幅*/
  height: 100%; /*光の範囲*/
  background-color: #fff; /*光の色*/
  animation: hikaru-btn10a 2s ease-in-out infinite; /*光の時間調整*/
}
@-webkit-keyframes hikaru-btn10a {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; } /*光の角度調整*/
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; } /*光の角度調整*/
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; } /*光の角度調整*/
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; } /*光の角度調整*/
}
/*ボタン中央ぞろえ用（余白）*/
.chuou100{
	text-align:center;
	margin: 2em 15em 2em 15em;
	background: #dfdfdf;
	padding: 1em 1em 0em 1em;
	border-radius: 10px;
}
/*下側文字用*/
.jou1 {
	border-radius: 10px;
	font-size: 0.8em;
	font-weight: bold;
  color: #6a6a6a;
}
/*ボタン中央ぞろえ用（余白）*/
.chuou101{
	text-align:center;
	margin: 2em 0em 2em 0em;
}
/*投稿上部白色に変更*/
.single-top{
  background: white !important;
}
/*アイキャッチ画像枠*/
.single_thumbnail img{
  border: solid 3px #e1e1e1;
}
/*仮想通貨ボタン文字用*/
.shita-mozi{
    text-align: center;
    font-size: 0.9em;
    font-weight:bold;
    margin-top: -2em; 
    margin-bottom: 2em;
}

/*光るボタン（基本）*/
.hikaru-btn1 {
  display: inline-block; /*文字位置*/
  position: relative; /*文字位置*/
  padding: 0.5em 1em; /*余白*/
  text-decoration: none !important; /*装飾なし*/
  background: #668ad8;/*背景色*/
  color: #FFF !important; /*文字色*/
  overflow: hidden; /*光のはみ出し非表示*/
}
.hikaru-btn1::after {
  position: absolute; /*光の位置*/
  content: ''; /*光の表示設定*/
  display: inline-block; /*文字の位置*/
  top: -180px; /*光の始まり位置上側*/
  left: 0; /*光の始まり位置左側*/
  width: 30px; /*光の幅*/
  height: 100%; /*光の範囲*/
  background-color: #fff; /*光の色*/
  animation: hikaru-btn1a 2s ease-in-out infinite; /*光の時間調整*/
}
@-webkit-keyframes hikaru-btn1a {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; } /*光の角度調整*/
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; } /*光の角度調整*/
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; } /*光の角度調整*/
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; } /*光の角度調整*/
}

