@charset "UTF-8";

.entry-header{
	margin-top: 100px;
	text-align: center;
	margin-bottom: .5rem;

}

.entry-content{
	width: 100%;
	color: #666;
	margin: 0 auto;
}

h1.entry-title {
	position: relative;
	display: inline-block;
	font-size: 24px;
    font-weight: 600;
	margin-bottom: .3rem;
}

h1.entry-title a{
	text-decoration: none;
	color: #003366;
}

h1.entry-title:before {
	content: '';
	position: absolute;
	bottom: -5px;
	display: inline-block;
	width: 60px;
	height: 2px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #79b6c8;
	border-radius: 2px;
  }

  .entry-content p{
	width: 98%;
	color: #666;
	margin: 0 auto;
}


section h3{
	font-size: 1.2rem;
	font-weight: 600;
	text-align: center;
	border-bottom: 1px solid #999;
	margin: 2rem auto 0;
	padding-bottom: .5rem;
}



section ul.list{
	list-style: none;
	padding: 0;
	margin:1rem auto;
  }
  section ul.list li{
	background: #ebf4f8;
	border-bottom: 2px solid #ededed;
	border-left: 12px solid #99bdde;
	margin-bottom: 5px;
	padding: .75rem;
  }
  section ul.list li:nth-child(even) {
	background: #ebf8f0;
	border-left: 12px solid #99ded9;
  }


  /*検索*/
  /*フォーム全体を中央へ*/
.form_s{
	display: flex;
	justify-content: center; /*中央へ固定*/	
	height:50px;/*高さ*/	
  }
  /*入力フォーム*/
.stext{
	width:250px;/*横幅*/
	padding:0 15px;/*プレースホルダーの位置調整*/
	border-radius:4px 0 0 4px;/*左側の角を少し丸める*/		
	background:#eee;/*検背景カラー*/
	border:none;/*枠線を消す*/ 
	outline:0;/*クリック時の青い枠線消す*/	
  }
  /*検索ボタン*/
  .sbth{
	width:70px;/*横幅*/ 
	border-radius:0 4px 4px 0;/*右側の角を少し丸める*/ 
	background:#7fbfff;/*背景カラー*/ 
	border:none;/*枠線を消す*/ 
	color:#fff;/*テキストカラー*/ 
	font-size:16px;/*フォントサイズ指定*/ 
	cursor: pointer;/*マウスを乗せると指差しポインターになる*/
  }
  /*検索ボタンマウスオーバー時*/
  .sbth:hover {
	background: #92dbff;/*背景カラー変更*/
  }

  /*ツールチップ*/
.tooltip_hint{
	text-align: center;
	margin-top: .75rem !important;
}
 
a.tgTtip {
    margin: 0;
    text-decoration: none;
    font-size: 1em;
}
 
/* クリック元装飾 */
span.tooltip1 {
    color: #fff;
    text-align: center;
	font-size: .8rem;
    padding: .3rem;
    background-color: #ebf8f0;
	color: #666;
    border-radius: 5px;
    -moz-border-radius: 5px;
}
 
/* クリック元装飾(2) */
span.tooltip2 {
    background-color: #ccc;
}
 
/* ツールチップ本体 */
p.tgToolTip {
    margin: 0;
    padding: 0.5em 1em;
	background-color: rgb(107,182,255,0.8);
    color: #fff;
    border-radius: 5px;
    -moz-border-radius: 5px;
    min-height: 1em;
    top: 100px;
    left: 20px;
    position: absolute;
    z-index: 100;
	transform: translateX(-50%);
	animation-name: tool-fade-in;
	animation-duration: 0.5s;
}

p.tgToolTip:after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -10px;
    border: 10px solid transparent;
    border-bottom: 10px solid rgb(107,182,255,0.8);
}

@keyframes tool-fade-in {
	from {
	  opacity: 0;
	}
	to {
	  opacity: 1;
	}
  }
 
.dummy {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
}
/*すべて表示*/
.list_all{
	font-size: .8rem;
}

.list_all a{
	text-decoration: none;
	color: #7fbfff;
	border-bottom: dotted 1px #7fbfff;
	padding-bottom: .3rem;
}

@media only screen and (max-width: 736px) {/*スマホ*/

	.entry-content{
		width: 96%;
		color: #666;
		margin: 0 auto;
	}



}

@media only screen and  (min-width: 737px) and (max-width: 1024px) {




	
}













