/*--------------------------------
h3タグ
---------------------------------*/
.entry-content h3{
border-left: none;/* 左の縦線を消す */
/* 水色の線の設定 */
border-bottom: solid 3px #cce4ff !important;
position: relative;
}


/*--------------------------------
モーダルウィンドウ
---------------------------------*/
.modal-window {
-webkit-transform: translate(0, 100%);
-moz-transform: translate(0, 100%);
-o-transform: translate(0, 100%);
-ms-transform: translate(0, 100%);
transform: translate(0, 100%);
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 999;
opacity: 0;
line-height: 1.3;
display: none9;
}
.modal-window:target {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-o-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0);
opacity: 1;
}
.is-active.modal-window {
display: block9;
}
.modal-window:target {
display: block9;
}
.modal-window .modal-inner {
position: absolute;
top: 100px;
left: 5%;
z-index: 20;
padding:5%;
margin:0 auto;
width: 80%;
overflow-x: hidden;
border-radius: 6px;
background: #fff;
-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}
 
.modal-window .modal-close {
display: block;
text-indent: -100px;
overflow: hidden;
}
.modal-window .modal-close:before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 10;
background: #333;
 -moz-opacity: 0.7;
 opacity: 0.7;
}
.modal-window .modal-close:after {
content: '\00d7';
position: absolute;
top: 70px;
right:15%;
z-index: 20;
margin:0 auto;
background: #fff;
border-radius: 2px;
padding: 10px 10px;
text-decoration: none;
text-indent: 0;
}
 
.modal-window {
-webkit-transition: opacity 0.4s;
-o-transition: opacity 0.4s;
transition: opacity 0.4s;
}
 
/*--------------------------------
スマホフッター固定バー
---------------------------------*/
ul.footer_menu {
 background: #1bb4d3;
 margin: 0 auto;
 padding: .5em 0;
 width: 100%;
 overflow: hidden;
 display: table;
        table-layout: fixed;
        text-align: center;
        width: 100%;
}
 
ul.footer_menu li {
 margin: 0;
 padding: 0;
 display: table-cell;
 vertical-align:middle;
 list-style-type: none;
 font-size: 10px;
  line-height: 15px;
}
 
ul.footer_menu li a i{
 font-size: 24px;
}
 
ul.footer_menu li a {
 border: none;
 display: block;
 color: #fff;
 text-align: center;
 text-decoration: none;
 line-height: 1.5em;
}
 
.footer_menu {
 position: fixed;
 bottom: 0;
 left:0;
 background: #333;
 z-index: 9999999999;
 -moz-opacity: 0.9;
 opacity: 0.9;
}
 
/*--------------------------------
スマホフッター固定バーアイコン
---------------------------------*/
.fontawesome-home:before{
 font-family: "fontawesome";
 content: "\f15c";
}
.fontawesome-newlist:before{
 font-family: "fontawesome";
 content: "\f005";
}
.fontawesome-jump:before{
 font-family: "fontawesome";
 content: "\f02b";
}
.fontawesome-magajin:before{
 font-family: "fontawesome";
 content: "\f02b";
}

/*--------------------------------
ページトップボタン位置調整
---------------------------------*/
#page-top a {
    margin-bottom: 45px;
}

/* —– 可愛い蛍光下線（ピンク） —– */

.pink {
background: linear-gradient(transparent 40%, #FAD5DC 40%);
padding-bottom: .2em;
font-weight:bold;
}

/* —–可愛い蛍光下線（黄色） —– */

.yellow {
background: linear-gradient(transparent 40%, #ffff8e 40%);
padding-bottom: .2em;
font-weight:bold;
}

/* —–可愛い蛍光下線（青） —– */

.blue {
background: linear-gradient(transparent 40%, #CBE9F5 40%);
padding-bottom: .2em;
font-weight:bold;
}

/* TwitterをPCでは横並びにする */
.flex {
	display: flex; /* これで横並びになる */
}
.twitter-tweet {
	padding: 5px; /* 1つのツイートの周りに5pxの余白をつける */
	margin: 10px auto; /* ツイートを中央寄せにする */
}

/* 画面サイズ960px以下ではTwitterを縦並びに変える */
@media (max-width: 960px) {
.flex {
	display: block; /* 横並びを解除 */
}
.twitter-tweet {
	padding: 0; /* 縦並びでは余白なし */
}
}
