<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 {
	color: #333;	/*全体の文字色*/
	background-color: #eee;	/*全体の背景色*/
	background-image: url(../images/back.jpg);	/*背景壁紙*/
	margin: 0px;
	padding: 0px;
	line-height: 2;
	font-size: 16px;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;	/*文字サイズ/行間、フォントファミリー*/
	background-repeat: repeat;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
	vertical-align: bottom;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*リンクテキストの色*/
}
a:hover {
	color: #b085d9;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 980px;	/*コンテナー幅*/
	margin: 0px auto;
}
/*h1タグの設定*/
#container h1 {
	font-weight: normal;		/*通常太字なのを標準にする設定*/
	font-size: 10px;			/*文字サイズ*/
	text-align: left;			/*文字を右寄せ*/
	line-height: 24px;			/*行間*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 979px;	/*ブロックの幅*/
	height: 330px;	/*ブロックの高さ*/
	position: relative;
	background-color: #FFF;	/*背景色*/
	background-image: url(../images/header_bg.jpg);	/*背景画像の読み込み*/
	background-repeat: no-repeat;					/*背景画像をリピートしない*/
	background-position: right center;				/*背景画像を右側・上下中央に配置*/
	-webkit-box-shadow: 0px 0px 8px #999;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 0px 8px #999;			/*同上*/
	border-top: 1px solid #FFF;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #FFF;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #FFF;	/*左側の線の幅、線種、色*/
}
/*ロゴ画像の設定*/
header #logo {
	position: absolute;	/*ヘッダーブロックに対して上から100pxの位置に配置*/
	bottom: 7%;
	right: 5%;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
nav#menu ul {
	background-color: #FFFFFF;	/*背景色*/
	height: 52px;			/*高さ*/
	-webkit-box-shadow: 0px 0px 8px #999;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 0px 8px #999;			/*同上*/
	margin-bottom: 15px;	/*メニューと、下の左右コンテンツとの間に空ける余白*/
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: left;
	width: 163px;	/*メニュー幅*/
}
nav#menu ul li a {
	height: 42px;
	padding-top: 8px;
	line-height: 2.2;	/*行間*/
	text-decoration: none;
	display: block;
	font-size: 15px;	/*文字サイズ*/
	font-weight: bold;	/*文字を太字にする設定。通常がいいならこの１行削除。*/
	letter-spacing: 0.1em;		/*文字間隔を少し広めにとる設定。*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	background-color: #7445A0;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/bg1.png), -webkit-gradient(linear, left top, left bottom, from(#b085d9), to(#7445A0));	/*背景画像の読み込み,グラデーション*/
	background-image: url(../images/bg1.png), -webkit-linear-gradient(#b085d9, #7445A0);	/*同上*/
	background-image: url(../images/bg1.png), linear-gradient(#b085d9, #7445A0);			/*同上*/
	text-align: center;	/*文字をセンタリング*/
	color: #FFF;		/*文字色*/
	border-bottom: 1px solid #FFF;	/*下側の線の幅、線種、色*/
	border-top: 1px solid #FFF;		/*上側の線の幅、線種、色*/
	border-left: 1px solid #FFF;	/*左側の線の幅、線種、色*/
	text-shadow: 0px 0px 10px #37006F;
}
/*最初のメニューの設定*/
nav#menu ul li:first-child a {
}
/*マウスオン時と、current(表示中のメニュー)の設定*/
nav#menu ul li a:hover,
nav#menu ul li#current a {
	background-image: url(../images/navback.jpg);
	background-color: #7445A0;	/*背景色、背景画像の読み込み*/
}
/*英語表記の設定*/
nav#menu ul li a span {
	font-size: 9px;	/*文字サイズ*/
	display: block;
	font-weight: normal;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 100%;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左側に回り込み*/
	width: 960px;	/*メインコンテンツ幅*/
	background-color: #FFF;	/*背景色*/
	padding: 10px;	/*ボックス内の余白*/
	-webkit-box-shadow: 0px 0px 8px #CCC;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 0px 8px #CCC;			/*同上*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	font-size: 100%;
	color: #FFF;		/*文字色*/
	padding: 7px 15px;	/*上下、左右への余白*/
	clear: both;
	background-color: #7445A0;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/arrow2.png), -webkit-gradient(linear, left top, left bottom, from(#b085d9), to(#7445A0));	/*背景画像の読み込み,グラデーション*/
	background-image: url(../images/arrow2.png), -webkit-linear-gradient(#b085d9,#7445A0);	/*同上*/
	background-image: url(../images/arrow2.png), linear-gradient(#b085d9, #7445A0);			/*同上*/
	background-repeat: no-repeat;			/*背景画像をリピートしない*/
	background-position: right center;		/*背景画像を右側・上下中央に配置*/
	-webkit-box-shadow: 1px 2px 5px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #ccc;			/*同上*/
	margin-bottom: 20px;
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/arrow1.png), -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#f4f4f4));	/*背景画像の読み込み,グラデーション*/
	background-image: url(../images/arrow1.png), -webkit-linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);	/*同上*/
	background-image: url(../images/arrow1.png), linear-gradient(#FFF, #f4f4f4 49%, #e8e8e8 50%, #FFF 100%);			/*同上*/
	background-repeat: no-repeat;		/*背景画像をリピートしない*/
	background-position: left center;	/*背景画像を左側・上下中央に配置*/
	-webkit-box-shadow: 1px 2px 5px #e2e2e2;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #e2e2e2;			/*同上*/
	font-size: 100%;
	padding: 4px 10px 4px 20px;	/*左から、上、右、下、左のボックス内の余白*/
	clear: both;
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 15px 1em;	/*左から、上、左右、下への余白*/
	margin-left: 40px;
	margin-right: 40px;
}

/*スタッフサムネイルボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list section {
	float: left;
	margin-bottom: 15px;
	margin-left: 11px;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	font-size: 11px;	/*文字サイズ*/
	text-align: center;	/*中身をセンタリング*/
	line-height: 1.5;
	overflow: hidden;
	position: relative;
}
#main .list section a {
	text-decoration: none;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	padding: 10px;	/*ボックス内の余白*/
	display: block;
	width: 200px;	/*幅*/
	height: 310px;	/*高さ*/
}
/*スタッフ名*/
#main .list section h4 {
	font-size: 100%;
}
/*マウスオン時のボックス*/
#main .list section a:hover {
	background: #f4f0b9;	/*背景色*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右側に回り込み*/
	width: 210px;	/*サブコンテンツ幅*/
	background-color: #FFF;/*背景色*/
	padding: 10px;	/*ボックス内の余白*/
	-webkit-box-shadow: 0px 0px 8px #CCC;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 0px 8px #CCC;			/*同上*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	padding: 3px 0px;	/*左から、上下、左右への余白*/
	background-color: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#222), to(#333));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#222, #333);	/*同上*/
	background-image: linear-gradient(#222, #333);			/*同上*/
	color: #FFF;	/*文字色*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	margin-bottom: 15px;			/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li a {
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	text-decoration: none;
	display: block;
	padding-left: 10px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#eaeaea), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#eaeaea, #FFF);	/*同上*/
	background-image: linear-gradient(#eaeaea, #FFF);			/*同上*/
	-webkit-box-shadow: 0px 0px 1px #FFF inset;	/*内側への影を右・下・ぼかし幅・距離・色を設定*/
	box-shadow: 0px 0px 0px 1px #FFF inset;		/*同上*/
}
/*マウスオン時の設定*/
#sub ul.submenu li a:hover {
	background: #b085d9;	/*背景色*/
	color: #FFF;			/*マウスオン時の文字色*/
	-webkit-box-shadow: none;	/*内側への影をリセットする*/
	box-shadow: none;			/*同上*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	color: #9B9B9B;				/*文字色*/
	background-color: #111;		/*背景色*/
	-webkit-box-shadow: 0px 0px 8px #999;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 0px 8px #999;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #9B9B9B;
}
footer a:hover {
	color: #9B9B9B;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new{
	margin-bottom: 15px;
}
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;	/*ボックスの高さ*/
	padding-left: 15px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #d2d2d2;	/*下線の幅、線種、色*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 180px;
	padding: 10px;
	text-align: center;
	background-color: #e2e2e3;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background-color: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#4b4b4b), to(#333));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#4b4b4b, #333);	/*同上*/
	background-image: linear-gradient(#4b4b4b, #333);			/*同上*/
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #e9ddae;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#efe6c5), to(#e9ddae));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#efe6c5, #e9ddae);	/*同上*/
	background-image: linear-gradient(#efe6c5, #e9ddae);			/*同上*/
	font-weight: bold;	/*文字を太字にする設定*/
}
/*submitボタンの設定*/
input[type="submit"],
input[type="button"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#dcdcdc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #dcdcdc);	/*同上*/
	background-image: linear-gradient(#FFF, #dcdcdc);			/*同上*/
	-webkit-box-shadow: 1px 2px 5px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #ccc;			/*同上*/
}
/*submitボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover {
	background-color: #dcdcdc;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#dcdcdc), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#dcdcdc, #FFF);	/*同上*/
	background-image: linear-gradient(#dcdcdc, #FFF);			/*同上*/
}

/*resetボタンの設定*/
input[type="reset"],
input[type="button"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border-radius: 30px;	/*角丸のサイズ*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#dcdcdc));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #dcdcdc);	/*同上*/
	background-image: linear-gradient(#FFF, #dcdcdc);			/*同上*/
	-webkit-box-shadow: 1px 2px 5px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #ccc;			/*同上*/
}
/*resetボタンのマウスオン時の設定*/
input[type="reset"]:hover,
input[type="button"]:hover {
	background-color: #dcdcdc;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#dcdcdc), to(#FFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#dcdcdc, #FFF);	/*同上*/
	background-image: linear-gradient(#dcdcdc, #FFF);			/*同上*/
}

/*こだわりアイコンのフロート指定(CMS用)*/
.ta1 td .specialbox {
	float: left;
	width: 95px;
	height: 40px;
}
.ta1 td .specialbox img {
	vertical-align: middle;
}

table#table-01 {
	width: 80%;
	border: 1px #E3E3E3 solid;
	border-collapse: collapse;
	border-spacing: 0;
	margin-top: 40px;
	margin-bottom: 40px;
	margin-left: auto;
	margin-right: auto;
	line-height: 120%;
}

table#table-01 th {
    padding: 5px;
    border: #E3E3E3 solid;
    border-width: 0 0 1px 1px;
    background: #F5F5F5;
    font-weight: bold;
    line-height: 120%;
    text-align: center;
}
table#table-01 td {
	padding-top: 5px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 5px;
	border: 1px #E3E3E3 solid;
	border-width: 0 0 1px 1px;
	text-align: left;
	line-height: 140%;
}

/*スタッフ詳細ページ　staff.html
---------------------------------------------------------------------------*/
/*写真とテーブルを囲むボックス*/
#main .staff {
	margin: 0px 10px;
}
/*左側ボックス*/
#main .staff .left {
	float: left;	/*左に回り込み*/
	width: 200px;	/*幅*/
	padding-bottom: 15px;
}
#main .staff .left p {
	padding: 0px;
}
/*右側ボックス*/
#main .staff .right {
	width: 450px;	/*幅*/
	float: right;	/*右に回り込み*/
	padding-bottom: 15px;
}
#main .staff .right table,
#main .staff .right table th,
#main .staff .right table td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル内の左側*/
#main .staff .right table th {
	width: 100px;	/*幅*/
	background-color: #eee;	/*背景色*/
}
/*テーブル内の余白*/
#main .staff .right table td,
#main .staff .right table th{
	padding: 10px;
}

/*テーブル(CMS版staff.html内で使用)
------------------------------------------------------*/
table.l3 {
	margin: 0px auto 1em;
}
table.l3,
table.l3 th,
table.l3 td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル内の余白*/
table.l3 th,
table.l3 td {
	padding: 5px;
}
/*テーブル左側のボックス*/
table.l3 th {
	width: 90px;	/*幅*/
	text-align: center;
	background-color: #eee;	/*背景色*/
}
/*テーブル右側のボックス*/
table.l3 td {
	text-align: center;
}

/*テーブル(schedule2.htmlページで使用)
------------------------------------------------------*/
table.l4 {
	margin: 0px auto 1em;
}
table.l4,
table.l4 th,
table.l4 td {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル内の余白*/
table.l4 th,
table.l4 td {
	padding: 2px;
}
/*テーブル左側のボックス*/
table.l4 th {
	background-color: #eee;	/*背景色*/
	text-align: center;
}
/*テーブル右側のボックス*/
table.l4 td {
	width: 70px;	/*幅*/
	text-align: center;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	margin-bottom: 30px;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background-color: #333;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 12em;	/*ボックス幅*/
	display: block;
	float: right;
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #555;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*「PICK UP」表示
---------------------------------------------------------------------------*/
.pickup {
	font-size: 10px;
	color: #FFF;
	background: #F00;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}
h2 span.pickup {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*「NEW」表示
---------------------------------------------------------------------------*/
.new {
	font-size: 10px;
	color: #FFF;
	background: #069;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}
h2 span.new {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15 {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #FF0000;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
figcaption {
	font-size: 11px;
}
#menubar_hdr {
	display: none;
}
.mini1 {
	font-size: 11px;
	font-weight: normal;
}
.sortbox {
	background-color: #eee;
	text-align: right;
	padding: 10px;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	margin-bottom: 15px;
}
#container #contents .footer {
	margin-bottom: 23px;
	margin-left: 2%;
	margin-right: 2%;
}
#main section .day {
	font-size: large;
	color: #9C2527;
	padding-top: 15px;
	border-bottom: thin dotted #D5D5D5;
	margin-left: 40px;
	margin-right: 40px;
}
#contents .footer .name {
	font-size: large;
	margin-bottom: -20px;
	font-weight: bold;
}
td ol li {
	margin-left: 27px;
}
#contents #main section {
	margin-bottom: 40px;
}
#main section h4 {
	font-size: large;
	color: #946FB6;
	margin-left: 40px;
	border-bottom: thin dotted #D5D5D5;
	padding-bottom: 0px;
}
tr td img {
	margin-left: auto;
	margin-right: auto;
	display: block;
}
#main section .geijutukanwraper {
	margin-left: 40px;
	margin-right: 40px;
	width: 90%;
	float: left;
	margin-top: 30px;
	margin-bottom: 30px;
}
section .geijutukanwraper .geijutu01 {
	width: 45%;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	border: thin solid #D5D5D5;
	text-align: center;
	float: left;
	border-radius: 6px;
	background-color: #FFF9EF;
}
.geijutukanwraper .geijutu01 img {
	margin-left: auto;
	margin-right: auto;
	display: block;
	margin-bottom: 20px;
}
.geijutukanwraper .geijutu01 h5 {
	font-size: large;
	font-weight: bold;
	text-align: center;
	border-bottom: thin dotted #D5D5D5;
	margin-bottom: 9px;
}
section .geijutukanwraper .geijutu02 {
	float: right;
	text-align: center;
	border: thin solid #D5D5D5;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	width: 45%;
	border-radius: 6px;
	background-color: #FFF9EF;
}
.geijutukanwraper .geijutu02 h5 {
	font-weight: bold;
	font-size: large;
	text-align: center;
	border-bottom: thin dotted #D5D5D5;
	margin-bottom: 9px;
}
.geijutukanwraper .geijutu02 img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}
 .red {
	color: #9C2527;
}
#main section .year01 {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 14px;
	padding-top: 10px;
}
section .year01 .year02 {
	width: 40%;
	text-align: center;
	border: thin solid #D5D5D5;
	border-radius: 8px;
	background-color: #F8EDF1;
	float: left;
}
section .year01 .year03 {
	width: 40%;
	text-align: center;
	float: right;
	border-radius: 8px;
	border: thin solid #D5D5D5;
	background-color: #F8EDF1;
}
</pre></body></html>