@charset "utf-8";
/* CSS Document */

/*===============================================================================
●smart.css  画面の横幅が800pxまで
===============================================================================*/
@media screen and (max-width:800px){


body{
	font-size:14px;
	/*指定していない場合の文字サイズを小さくする*/
}

.blogtittle{
	/*TTMLで記載したクラスの意味は.で表示する*/
	max-width:800px;
	/* ↑比率を制限したい時に指定する */
	width:90%;
	/* ↑表示のサイズを全画面ではなく90％に指定する */
	margin:auto;
	/* ↑外側の余白を自動で設定する */	
	text-align:left;
	/* ↑文字を真ん中に設定する。その他、rightとleftも可 */
	padding:50px 0;
	/*↑titleの内側の余白を設定する（左上右下）の順に半角スペースで設定できる*/
	margin-bottom:5%;
	/*↑titleの外下側の余白を設定する（bottom=下のこと）*/
	font-size:25px;
	/*↑文字サイズ*/
}

.blogtittle p{
	/*Pタグに対しての設定をする*/
	margin-top:3%;
	margin-left:0%;
	font-size:10px;
}   

.footer li{
	/* ↓内側の余白を調整する */
	padding:20px 0;
}
.main{
/* ↓メインとサブを折返ししてほしい */
	flex-wrap:wrap;
}

.menu{
	width:100%;
	margin-right:0%;
	margin-bottom:10%;
}

.sub{
	width:100%;
/* ↑widthのところのメニューとサブ＆余白で合計100％になるようにする */
	padding:2%;
}

.blog-item1 a{
	flex-wrap:wrap;
	/* サムネ上/文章下で折返して */
}

.samune{
	width: 100%;
	margin:auto;
/* ↑画像を自動でセンターにもっていくように余白を自動調整 */
}

.blog-item1-text{
	width: 100%;
}

.samune img{
 	border-radius:8px;	
}

.blog-item1-text h2{
	font-size:18px;
}

.caption{
	display:none;
	/*↑captionを表示しない */
}

.post h1{
/*↑postの中のh1の意味*/
	font-size:20px;
	/*↑文字サイズ*/
}

.mokujititle{
	font-size:13px;
}

.midashi{
	margin-top:5%;
	margin-bottom:5%;
}

.post.hukidashi{
	margin-top:5%;
	margin-bottom:5%;
}

.table th{
	width:100%;
	display:block;
/* ↑内容の横幅を指定する*/
	padding:2%;
	border-bottom:0;
	/* ↑下の線をなくす＝太さが0 */
}

.table td{
	width:100%;
	display:block;
/* ↑内容の横幅を指定する*/
	background-color:#fff;
	/* ↑背景塗りつぶしの色を設定する*/
	padding:3% 3% 5%;
	/* ↑上、左右、下*/
	border-bottom:0;
	line-height:1.4;
}


.gallery {
	flex-wrap:wrap;
}

.gallery p{
	width: 100%;
	font-size: 12px;
	/*文字サイズ*/
}

.gallery span{
	display:block;
	/*↑全体に反応するようにする.
	そうしないと、marginが反応しない */
	margin-top:2%;
	margin-bottom:3%;
}

.blog-item1.rink .samune{
	/* ↑.でclassにする*/
	width: 40%;
	/* ↑画像を小さく表示でOKなので20％に設定する*/
}

.blog-item1.rink .blog-item1-text{
	/* ↑rink先の表示を変更する*/
	width: 60%;
	/* ↑テキストを画像と合わせて100％にする*/
}


.blog-item1.rink .blog-item1-text h2{
	font-size:12px;
	/* ↑rink先の文字サイズを変更する*/
}

.table{
	font-size:12px;
}

.kanrentitle{
 	padding: 0 30px;
}

.kanrentitle:before, .kanrentitle:after{
  top: 30%;
  display: inline-block;
  width: 20px;
  height: 2px;
}

.kanren h3{
	font-size:12px;
}

.kanren{
	flex-wrap:wrap;
}

.kanren li{
	width:48%;
}

.kanren li:last-child{
	display:none;
}

.kakosaishin .tittle h3{
	font-size:12px;
}

.kakosaishin{
	flex-wrap:wrap;
}

.kakosaishin li{
	width:100%;
	margin-bottom:10px
}


}