@charset "utf-8";
/*
Theme Name: Lightning
Theme URI:
Template: lightning
Description:
Author:
Tags:
Version: 15.26.4
*/
/*ヘッダータイトル文字の調整*/
h2 {
  font-size: 1.4rem !important;
}
/*ボタン書式*/ 
.btn,
a.btn,
button.btn {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
	margin: 50px auto;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 0.5rem;
	align-items:center;
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #4169e1;
}

.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #87cefa;
}

.horizontal-list {
padding: 0;
margin: 0;
list-style: none;
}
/* アイテム間の間隔を調整 */
.horizontal-list li {
display: inline-block;
margin-right: 15px; 
}
/* 最後のアイテムには右マージンを追加しない */
.horizontal-list li:last-child {
margin-right: 0; 
}
/*よく検索されるキーワード書式*/
.ranking{
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 1.2rem;
}
.ranking li{
	display:inline-block;
	margin-right: 40px;
	position: relative;
	color: blue;
}
.ranking li:last-child{
	margin-right: 0;
}
.ranking li:not(:last-child)::after{
	content: "|";
  position:absolute;
	right: -20px;
}
/*関連記事の日付非表示*/
.media-date.published{
	display: none !important;
}
