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

/*************
写真ギャラリー
*************/

.single figure{
	width:100%;
	margin-bottom:20px;
}

.double figure{
	width:50%;
	float:left;
	margin-bottom:20px;
}
.triple figure{
	width:33%;
	float:left;
	margin-bottom:20px;
}


figure img{
	display:block;
	margin-left:auto !important;
	margin-right:auto !important;
	width:95%;
	border-width:2px;
	border-style:solid;
	/*border-color:#fff;*/
	/*box-shadow:0 0 4px rgba(250, 250, 250, 0.7);*/
	/*-webkit-box-shadow:0 0 4px rgba(250, 250, 250, 0.7);*/
}

figcaption{
	text-align:center;
	padding-left:2em;
	padding-right:2em;
	margin-top:5px;
}

.single,
.double{
	clear:both;
	max-width:100%;
}

.double figure:nth-child(2n+1){
	clear:both;
}

.triple figure:nth-child(3n+1){
	clear:both;
}

.single:after,
.double:after{
	content:"";
	display:block;
	clear:both;
}

/**************************
/* トップページ　テロップ
**************************/
div#telop{
	margin-top:3px;
	margin-bottom:3px;
	padding-top:3px;
	padding-bottom:3px;
	width:100%;
	white-space:nowrap;
	line-height:1.5em;
	font-size:1.5em;
	font-weight:bolder;
	/*text-shadow:1px 1px #888;*/
	/*color:#FFF;*/
	/*background-color:#8b0000;*/
}

/**************************
/* パンくずリスト
**************************/
div#breadcrumb{
	margin-top:10px;
	margin-bottom:10px;
	clear:both;
}
div#breadcrumb li{
	display:inline;
}
div#breadcrumb li:after{
	content:"≫";
}
div#breadcrumb li:last-child:after{
	content:"";
}


/**********************
 ページトップへボタン
***********************/
a#pagetopBtn img {
  	position: fixed;
  	bottom: 10px;
  	right: 1px;
}

/********************
/* ページ　表題
*********************/

.large{
    background-repeat: no-repeat;
    background-position: 380px 0px;
    font-size: 1.3em;
    font-weight: bold;
    color: #9F7A0B;
	text-align:center;
	text-shadow:1px 1px white;
    margin-top: 15px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 8px;
    padding-right: 0.5em;
    padding-bottom: 13px;
    padding-left: 0.5em;
}

/*************************
/* 文字の強調（赤，青，緑）
**************************/

.red{
	color:red;
}
.blue{
	color:blue;
}
.green{
	color:green;
}

.yellow{
	color:yellow;
}

.black{
	color:black;
}

.white{
	color:white;
}
.pink{
	color:deeppink;
}
.brown{
	color:brown;
}

.center{
	text-align:center;
}
.right{
	text-align:right;
}
.bold{
	font-weight:bold;
}

.big{
	font-size:1.2em;
}
.big-x{
	font-size:1.5em;
}
.underline{
	text-decoration:underline;
}

/*************************
/* インデント，リスト
**************************/
.indent1{
	margin-left:1em;
}
.indent2{
	margin-left:2em;
}
.indent3{
	margin-left:3em;
}
.indent4{
	margin-left:4em;
}
.indent5{
	margin-left:5em;
}
.list1{
	margin-left:1em;
	text-indent:-1em;
}
.list2{
	margin-left:2em;
	text-indent:-1em;
}
.list3{
	margin-left:3em;
	text-indent:-1em;
}
.list4{
	margin-left:4em;
	text-indent:-1em;
}
.list5{
	margin-left:5em;
	text-indent:-1em;
}
/*************************
/* 枠線
**************************/

.border{
	border:1px solid #000;
	padding: 10px;
	border-radius: 3px;
}

.border-w{
	border:1px solid #000;
	padding: 10px;
	border-radius: 3px;
	background-color: #fff;
}

/*************************
/* その他
**************************/

.width-full{
	width:100%;
	border:1px solid #aaa;
	box-sizing:border-box;
}


br.break{
	display:none;
}

.new:after{
	content:url(../images/icon_new.gif);
}

.blink{
	animation-name: blink; /* アニメーションの名前を設定 */
	animation-duration: 5s; /* アニメーションの秒数を設定 */
	animation-iteration-count: infinite; /* 繰り返しを設定（１回だけなら不要） */
}
a#keypage_link:hover{
    cursor: pointer;
}

/* PC用 */
@media only screen and (min-width:960px){
}


/* モニター幅960px以下 */
@media only screen and (max-width:960px){
}


/* iPad 縦 */
@media only screen and (max-width:768px){
}


/* スマートフォン 横(ランドスケープ) */
@media only screen and (max-width:640px){
	.triple figure:nth-child(3n+1){
		clear:none;
	}
	
	.triple figure:nth-child(2n+1){
		clear:both;
	}
	
	.triple figure{
		width:50%;
		float:left;
		margin-bottom:20px;
	}
}


/* スマートフォン 縦(ポートレート) */
@media only screen and (max-width:480px){
	.double figure,
	.triple figure{
		width:100%;
		clear:both;
	}
	br.break{
		display:block;
	}
}</pre></body></html>