@charset "utf-8";
/* CSS Document */
body {
	margin: 0;
	padding: 0;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
	font-size: 100%;
	line-height: 1.4;
	background-attachment: scroll;
	background-image: url(../test/utaimg/utaback.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}
/* ~~ エレメント / タグセレクター ~~ */
ul, ol, dl { /* ブラウザー間の相違により、リストの余白とマージンをゼロにすることをお勧めします。一貫性を保つために、量をここで指定するか、リストに含まれるリスト項目 (LI、DT、DD) で指定できます。より詳細なセレクターを記述しない限り、ここで指定する内容が .nav リストにも適用されることに注意してください。 */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* 上マージンを削除すると、マージンを含む block からマージンがはみ出す場合があるという問題を回避できます。残った下マージンにより、後続のエレメントからは離されます。 */
	padding-right: 15px;
	padding-left: 15px; /* block 自体ではなく block 内でエレメントの両側に余白を追加すると、ボックスモデル計算が不要になります。代わりに、両側に余白を指定した block をネストして使用することもできます。 */
}
a img { /* このセレクターは、一部のブラウザーでイメージをリンクで囲んだ場合にイメージの周囲に表示される初期設定の青いボーダーを削除します。 */
	border: none;
}
/* ~~ サイトのリンクのスタイル付けは、ホバー効果を作成するセレクターグループも含め、この順序にする必要があります。~~ */
a:link {
	text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
	color: #00C;
}
a:visited {
	color: #CC3366;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
	text-decoration: none;
}
/* ~~ この固定幅コンテナが他のすべての block を囲みます。~~ */
.container {
	width: 1080px;
	margin: 0 auto; /* 幅に加え、両側を自動値とすることで、レイアウトが中央に揃います。 */
}
/* ~~ ヘッダーには幅は指定されません。ヘッダーはレイアウトの幅全体まで広がります。~~ */
header {
	float: left;
	margin-bottom: 5px;
	background-color: #000000;

}
/* ~~ レイアウトに使用するカラムです。~~ 

1) 余白は、block エレメントの上部または下部にのみ配置されます。これらの block 内のエレメントには、それ自体に余白があるので、ボックスモデル計算を行う必要がありません。ただし、block 自体に両側の余白やボーダーを指定した場合、その値が加算されたものが合計幅になることに注意してください。block エレメント内のエレメントの余白を削除し、さらにその block エレメント内に、全体のデザインに必要な幅や余白を指定していない 2 つ目の block エレメントを追加することもできます。

2) カラムはすべてフロートしているため、マージンは指定されていません。マージンを追加する必要がある場合は、フロート方向には指定しないでください (例えば、右フロートに設定した block の右マージン)。多くの場合、代わりに余白を使用できます。このルールに従わない場合は、block エレメントのルールに「display:inline」宣言を追加し、一部のバージョンの Internet Explorer でマージンが 2 倍になるバグを回避する必要があります。

3) クラスはドキュメント内で複数回使用できるので (またエレメントには複数のクラスを適用できます)、カラムには ID ではなくクラス名が割り当てられます。例えば、必要に応じて 2 つのサイドバー block をスタックできます。クラスを各ドキュメントで一度しか使用しないのであれば、ユーザーの好みに応じて、クラス名を ID に変更することができます。

4) ナビゲーションを右ではなく左に配置したい場合、これらのカラムを反対方向にフロートさせると (すべて右方向にする代わりに、すべて左方向に設定)、反転してレンダリングされます。HTML ソース内で block を移動する必要はありません。

*/
.sidebar1 {
	float: right;
	width: 368px;
	padding-bottom: 10px;
}
.content {
	width: 700px;
	float: left;
	background-color: #FFFFFF;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}

/* ~~ このセレクターグループは、.content 内のリストに領域間隔を指定します。~~ */
.content ul, .content ol {
	padding: 0 15px 15px 40px; /* この余白は、上述の見出しと段落ルールの右の余白を表します。下の余白はリスト内の他のエレメントとの間隔用に配置され、左の余白はインデント作成用に配置されています。これは必要に応じて調整できます。 */
}

/* ~~ ナビゲーションリストのスタイル付け (Spry などの事前作成済みのフライアウトメニューを使用する場合は削除できます) ~~ */
ul.nav {
	list-style: none; /* 下のコンテンツのナビゲーション間の間隔を作成します。 */
	float: right;
	width: 740px;
	margin-top: 45px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 0px;
	height: 42px;
}
ul.nav li {
	text-align: center;
	line-height: 39px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	float: left;
	margin-left: 2px;
	margin-right: 2px;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}
ul.nav a, ul.nav a:visited { /* これらのセレクターをグループ化することで、リンクのボタン表示が訪問後も確実に保持されます。 */
	display: block;  /*この幅により、IE6 でボタン全体をクリックできるようになります。IE6 をサポートする必要がない場合は削除できます。適切な幅を計算するには、サイドバーコンテナの幅からそのリンクの余白を減算します。 */
	text-decoration: none;
	background-image: url(../test/utagif/navi00a.gif);
	background-repeat: repeat-x;
	background-position: center top;
	height: 42px;
	margin-right: 2px;
	margin-left: 2px;
	padding-top: 0px;
	padding-bottom: 0px;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* マウスを使用する場合もキーボードを使用する場合も、背景色とテキストカラーを変更します。 */
	color: #F03;
	background-image: url(../test/utagif/navi00b.gif);
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
}

/*HTML5 サポート - 新しい HTML5 タグを display:block に設定します。これにより、ブラウザーでタグが適切にレンダリングされます。 */
header, section, footer, aside, article, figure {
	display: block;
}
header a #Insert_logo {
	float: left;
	margin-top: 10px;
	margin-right: 5px;
	margin-left: 10px;
	margin-bottom: 5px;
}
.wrap {
	float: left;
	width: 1080px;
	margin: 0px;
	display: block;
	background-color: #000000;
}
aside .box img {
	float: left;
	margin-top: 0px;
	margin-right: 16px;
	margin-bottom: 10px;
	margin-left: 15px;
}
aside .box {
	margin-left: 5px;
	margin-right: 0px;
	margin-top: 0px;
	float: left;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	width: 100%;
}

header .wrap .box p {
	color: #FFF;
	text-align: right;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	margin-top: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	font-size: 14px;
	letter-spacing: 0.2em;
	margin-right: 0px;
}
header .wrap .box img {
	text-align: right;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	float: right;
	margin-left: 348px;
}
header .wrap .box {
	float: right;
	width: 700px;
	margin: 0px;
}
.sidebar1 aside {
	margin-bottom: 20px;
	background-image: url(../test/utagif/sideback2.gif);
	background-repeat: repeat-y;
	background-position: right top;
	padding-top: 10px;
	padding-bottom: 15px;
}

/* ~~ フッター ~~ */
footer {
	position: relative;/* IE6 に、適切にクリアするための hasLayout を指定します。 */
	clear: both; /* この clear プロパティにより .container は、カラムの範囲がどこまでかを認識してその範囲を含めるようになります。 */
	background-image: url(../test/utaimg/utafooter.jpg);
	background-repeat: repeat-x;
	background-position: center top;
	padding-top: 50px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}

footer p {
	font-size: 12px;
	color: #FFF;
	text-align: center;
}
aside p {
	font-size: 14px;
	line-height: 21px;
	letter-spacing: 0em;
	word-spacing: 0em;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #666;
	margin-bottom: 15px;
	padding-bottom: 10px;
	margin-left: 5px;
}
.content h1 {
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: 21px;
	color: #F30;
	margin-top: 8px;
	margin-bottom: 15px;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 45px;
	background-color: #e1e1e1;
	background-image: url(../test/utagif/utaicon001.gif);
	background-repeat: no-repeat;
	background-position: 8px center;
	margin-right: 15px;
	margin-left: 15px;
	float: left;
	width: 610px;
}
.content section h2 {
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: 21px;
	color: #F30;
	margin-top: 8px;
	margin-bottom: 5px;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 45px;
	background-color: #e1e1e1;
	background-image: url(../test/utagif/utaicon001.gif);
	background-repeat: no-repeat;
	background-position: 8px center;
	margin-right: 15px;
	margin-left: 15px;
}
.container .content p {
	line-height: 160%;

}
section .box {
	padding: 0px;
	float: left;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: 13px;
	line-height: 18px;
	text-align: center;
	display: block;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 15px;
	width: 209px;
	height: 200px;
}
section .box3 {
	padding: 0px;
	float: left;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: 13px;
	line-height: 18px;
	text-align: left;
	display: block;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 15px;
}
section .box3 img {
	margin-bottom: 15px;
}
section .box img {
	padding: 0px;
	float: none;
	margin-top: 4px;
	margin-right: 4px;
	margin-left: 4px;
	margin-bottom: 4px;
}
.lef {
	text-align: center;
	width: 90px;
	background-color: #0CC;
	letter-spacing: 0.1em;
	word-spacing: 0.1em;
	color: #FFF;
	margin-left: 15px;
	padding-top: 1px;
	padding-bottom: 1px;
	float: left;
	margin-bottom: 10px;
	border-radius: 5px;
	padding-right: 4px;
	padding-left: 4px;
}
.rig {
	text-align: left;
	width: 340px;
	letter-spacing: 0.1em;
	word-spacing: 0.1em;
	color: #333;
	margin-left: 10px;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 0px;
	float: left;
	margin-top: 0px;
	margin-bottom: 10px;
	margin-right: 10px;
}
.rig2 {
    text-align: left;
    width: 94%;
    letter-spacing: 0.1em;
    word-spacing: 0.1em;
    color: #333;
    margin-left: 3%;
    padding-top: 2px;
    padding-right: 0px;
    padding-bottom: 2px;
    padding-left: 0px;
    float: left;
    margin-top: 0px;
    margin-bottom: 5px;
    margin-right: 3%;
    line-height: 200% !important;
    border-bottom: 1px dotted #CCCCCC;
}
.rig3 {
    text-align: left;
    width: 91%;
    letter-spacing: 0.1em;
    word-spacing: 0.1em;
    color: #333;
    margin-left: 3%;
    padding-top: 2px;
    padding-right: 0px;
    padding-bottom: 2px;
    padding-left: 20px;
    float: left;
    margin-top: 0px;
    margin-bottom: 5px;
    margin-right: 6%;
    line-height: 200% !important;
    text-indent: -18px;
}
.tit3 {
    text-align: center;
    width: 91%;
    letter-spacing: 0.1em;
    word-spacing: 0.1em;
    color: #C50000;
    margin-left: 3%;
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    float: left;
    margin-top: 11px;
    margin-bottom: 14px;
    margin-right: 6%;
    line-height: 200% !important;
    text-indent: -18px;
    border: 1px solid #B50002;
    font-size: 18px;
    border-radius: 5px;
}
aside .box h2 {
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: 21px;
	color: #099;
	line-height: 32px;
	margin-top: 20px;
	word-spacing: 0.2em;
	font-weight: bold;
}
.content section {
	float: left;
	margin-top: 5px;
	margin-bottom: 10px;
	width: 700px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #333;
	padding-bottom: 10px;
	height: auto;
}
.mainimg {
	margin: 0px;
	float: left;
}
header .box2 {
	background-color: #000;
	margin: 0px;
	height: 380px;
	width: 589px;
	float: right;
	text-align: center;
	vertical-align: middle;
	background-image: url(../test/utaimg/headback2.png);
	background-repeat: no-repeat;
	background-position: 18px 11px;
}
header .box2 p {
	color: #FFF;
	text-align: center;
	margin-top: 24px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	letter-spacing: 0.2em;
}
header .box2 iframe {
	float: left;
	height: 300px;
	width: 533px;
	margin-top: 20px;
	margin-bottom: 10px;
	margin-left: 25px;
}
.content h2 {
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: 21px;
	font-weight: bold;
	color: #099;
	margin-top: 15px;
	margin-bottom: 5px;
	line-height: 120%;
	text-indent: -8px;
}
.ch {
	font-size: 80%;
	font-weight: normal;
}
.ch6 {
	font-size: 65%;
	font-weight: normal;
}
.ch2 {
	font-size: 90%;
}
.content section h3 {
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: 28px;
	font-weight: bold;
	color: #099;
	margin-top: 10px;
	margin-bottom: 15px;
}
section .wrap2 {
	float: left;
	width: 700px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	display: block;
}
section h4 {
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-size: 18px;
	font-weight: bold;
	color: #099;
	margin-top: 10px;
	margin-bottom: 10px;
	width: 665px;
	display: block;
	float: left;
	margin-left: 5px;
}
.mapicon {
	background-image: url(../test/utagif/utaicon002.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 20px;
	text-align: left;
}
.uta1 {
	float: right;
	margin-top: 10px;
	margin-right: 15px;
	margin-bottom: 10px;
	margin-left: 8px;
}
.icon {
	background-image: url(../test/utagif/utaicon003.gif);
	background-repeat: no-repeat;
	background-position: 0px 3px;
	padding-left: 20px;
	text-align: left;
}
.album .thickbox img {
	margin-right: 0px;
	margin-bottom: 5px;
}
section .album {
	margin-top: 15px;
	margin-bottom: 15px;
	margin-left: 10px;
	float: left;
	width: 690px;
	height: auto;
}
.sixchara {
	width: 8em;
}
.fivechara {
	width: 7em;
}
.ninechara {
	width: 11em;
}
.sevenchara {
	width: 9em;
}
.underline {
	text-decoration: line-through;
}
.underline2 {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #333;
	margin-bottom: 15px;
}
.underline3 {
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #333;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.eventday {
	width: 13em;
	margin-right: 1em;
	display: block;
	float: left;
}
.eventday2 {
    width: 15em;
    margin-right: 1em;
    display: block;
    float: left;
}
.content .box {

}
.content .box h3 {
	font-size: 21px;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	color: #F30;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.content .box iframe {
	margin: 10px;
}
section .wrap3 {
	width: 475px;
	float: left;
	height: auto;
}
section .wrap4 {
	width: 685px;
	float: left;
	height: auto;
}

.wrap4 .rig {
	text-align: left;
	width: 550px;
	letter-spacing: 0.1em;
	word-spacing: 0.1em;
	color: #333;
	margin-left: 10px;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 0px;
	float: left;
	margin-top: 0px;
	margin-bottom: 10px;
	margin-right: 10px;
	line-height: 180%;
}
section iframe {
	float: left;
	margin: 15px;
}
.container .content.heightLine {
	min-height: 520px;
}
.content #c1 {
	font-size: 14px;
	display: block;
	margin-left: 20px;
	float: left;
	text-align: left;
	width: 500px;
	padding-left: 20px;
	background-image: url(../utaimg2/aricon.gif);
	background-position: left center;
	background-repeat: no-repeat;
	margin-top: 0px;
}
.ch3 {
	font-size: 140%;
	letter-spacing: 1px;
	margin-top: 10px;
	margin-bottom: 10px;
	color: #79555A;
}
.ch4 {
	font-size: 12px;
	line-height: 15px;
}
.ch5 {
	font-size: 90%;
	color: #DA0000;
}
aside .box .arma0 {
	margin-top: 0px;
}
.mb30 {
	margin-bottom: 30px;
}
.f12 {
	font-size: 12px;
}
section .wrap3 .box1 {
	border-bottom: 1px dotted #333333;
	float: left;
	margin-bottom: 20px;
	margin-left: 14px;
	margin-right: 14px;
	margin-top: 0px;
	padding-left: 0px;
}
.wrap3 .box1 .rig {
	width: 310px;
}
.wrap3 .box1 .lef {
	margin-left: 0px;
}
.wrap3 .box1 h3 {
	margin-top: 10px;
	font-family: "ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
	font-size: 19px;
	border: 1px solid #0CC;
	padding-top: 4px;
	padding-bottom: 4px;
	text-align: center;
	border-radius: 4px;
	background-color: #FEF7F2;
	color: #0CC;
	letter-spacing: 2px;
}
section .box1   {
	width: 96%;
	margin-left: 2%;
	margin-right: 2%;
	float: left;
}
.container .content.heightLine .tit {
	font-size: 20px;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	color: #099;
	font-weight: bold;
	margin-bottom: 0px;
	margin-left: 15px;
}
.album .box a img {
    width: 201px;
    height: auto;
}
.mt20 {
	margin-top: 20px;
	float: left;
}
.album .box p {
	padding-left: 0px;
	padding-right: 0px;
}
section .box4 {
	width: 97%;
	margin-left: 2%;
	margin-right: 1%;
	float: left;
	margin-bottom: 40px;
	height: auto;
}
.box4 a img {
	float: left;
	margin-right: 20px;
}
.box4 a img:hover  {
	float: left;
	margin-right: 20px;
	opacity: 0.7;
}
.box4 p .tit2 {
	font-size: 21px;
	font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	margin-bottom: 0px;
	line-height: 150%;
}
.f15 {
	font-size: 15px;
	margin-top: 0px;
}
.chuushi {
    text-decoration: line-through !important;
}
.chuuigaki {
    margin-top: 10px;
    float: left;
    margin-bottom: 15px;
    font-size: 95%;
}
.content section .mb50 {
    margin-bottom: 50px;
    margin-top: 15px;
}
section .day  {
    text-align: right;
    width: 96%;
    height: auto;
    margin-right: 4%;
    margin-top: 0px;
    display: block;
    font-size: 80%;
}
.container .content .mb50 {
    margin-bottom: 50px;
}
.mt15 {
    margin-top: 15px;
}
.mb15 {
    margin-bottom: 15px;
}
.red {
    color: #E20000;
}
.rig2 .eventday2 .date {
    font-size: 125%;
    margin-left: 1px;
    margin-right: 1px;
}
.mb50 .box01 {
    padding-bottom: 20px;
    border-bottom: 1px dotted #999999;
}

.box .box-001 a img {
    width: 151px;
    height: auto;
}
