<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* 本体定義 */
body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin: 0;
  font-size: 14px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	border-radius:10px;
	color:rgb(80,80,80);
}
a:link, a:visited {
	color: rgba(235,100,80,1);
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
	color: rgba(235,100,80,1);
}

/* 掲示板メイン */
#main {
	width: 90%;
	margin: 5% auto 0 auto;
}

/* 記事デザイン */
div.article {
	width: 100%;
	margin: 0 auto 40px auto;
	text-align: left;
	color:rgb(80,40,40);
}
div.art-date {
	text-align: right;
	color:rgb(80,40,40);
}
div.art-sub {
	font-size: 16px;
	color:#300;
	padding: 5px 0 5px 30px;
  text-align: left;
  background: url(../../../images/bg-c.gif) no-repeat left center;
  border-bottom: 2px dotted #ccc;
  margin-bottom: 15px;
}

/* 記事中の画像 */
img.img {
	border: none;
	vertical-align: top;
	margin-right: 0.5em;
}
.youtube {
	text-align: center;
}

/* TOPパネル */
#top-panel {
	margin: 0.4em 0.6em;
	text-align: left;
}
#top-panel input[type="button"] {
	width: 55px;
	margin-right: 2px;
}
#find-box {
	text-align: right;
	margin: 5px;
}
#find-box input[type="text"] {
	width: 130px;
	padding: 3px;
}

/* 検索結果 */
#find-top {
	margin: 0 auto;
	color: #555;
}
#find-top input[type="text"] {
	width: 200px;
	padding: 3px;
}
#find-top p {
	margin: 10px;
}

/* 赤文字 */
.red {
	color: #dd0000;
}

/* pagetop */
div.pg-top, div.pg-top a {
	text-align: right;
	font-size: 90%;
	color: rgba(235,100,80,0.8) !important;
	margin-bottom: 0;
}

/* エラー */
#err {
	width: 450px;
	padding: 1.5em;
	margin: 3em auto;
	border-top: 1px dotted gray;
	border-bottom: 1px dotted gray;
}

/* 寄せ */
.ta-c {
	text-align: center;
}
.ta-l {
	text-align: left;
}
.ta-r {
	text-align: right;
}

/*
	ペイジャー
	参考: http://cssdeck.com/labs/css-pagination-styles
*/
.pagination {
    padding: 20px;
	background: url("images/line_brown.png") repeat-x left top;
}
.page {
    display: inline-block;
    padding: 10px 9px;
    margin-right: 4px;
    border-radius: 3px;
    background:rgba(235,100,80,0.2);
    font-size: .875em;
    font-weight: bold;
    text-decoration: none;
    color:rgb(235,100,80);
}
.page:hover, .page.gradient:hover {
    background:rgba(235,100,80,0.8);
    color: #fff;
}
.page.active {
    border: none;
    background:rgba(235,100,80,0.8);
    color: #fff;
}


/* アイコン */
img.icon {
	vertical-align: middle;
	border: 0;
}

/* 管理ボタン */
#kanri{
	text-align: center;
}
#kanri a{
	border: 1px solid rgba(235,100,80,1);
	display: inline-block;
	padding: 5px 10px;
	border-radius: 10px;
	margin:0 auto;
}
#kanri a:hover{
	text-decoration: none;
	background:rgba(235,100,80,1);
    color: #fff;
}


/* スマホ用 */
@media only screen and (max-width: 480px) {
	
	#find-box input[type="text"] {
		width: 80px;
	}
	/* Youtube対応 */
	.youtube {
     	position: relative;
     	padding-bottom: 56.25%;
     	height: 0;
     	overflow: hidden;
	}
	.youtube iframe {
     	position: absolute;
     	top: 0;
     	left: 0;
     	width: 100%;
     	height: 100%;
	}
}

</pre></body></html>