/*-------　リンク設定　-----------*/

a:hover{
	color:#ff0000;
	text-decoration:underline;
}

a{
	text-decoration: none;
}


/*-------　構成　-----------*/
body{
	font-family:"ヒラギノ角ゴ Pro W3",メイリオ,Osaka,Arial,Verdana,"ＭＳ Ｐゴシック",sans-serif;
	margin:0px;
	padding:0px;
	text-align:center;
	background-image: url("../music/burns_rs/000-lightred-dual.jpg"); 
	color:#111;
	font-size: 11pt;
	line-height: 140%;
}

.bodywidth {
	margin-left: auto;
	margin-right: auto; 
	text-align: left;
	width: 803px;
}

/*-------------　top img　-----------------*/

div.header_img{
	display: flex;
	justify-content: space-between;  /* 左右均等分布 */
}

#le_topimg {
	width: 150px;
	height: 75px;
	float: left;
	margin:1px 0px 1px 0px;
}

#ri_topimg {
	width: 150px;
	height: 75px;
	float: right;
	margin:1px 0px 1px 0px;
}

#cent_topimg {
	width: 495px;
	height: 75px;
	float: left;
	margin:1px 0px 1px 5px;
}



/*------　パンくず　-----------------*/
.pankuzu {
	font-size: 9pt;
	text-align: right;
}



/*-------　コンテンツ　-----------*/

hr{
	color: #888;
}

p {
	font-size: 11pt;
	margin-left: 30px;
	margin-right: 30px;
	line-height: 140%;
}

.clearflt{
	clear: both;
}

h1 {
	text-align: center;
	font-weight: bold;
	font-size: 13pt;
	color: #ffffff;
	background-color: #c00;
	padding: 3px 3px 2px 3px;
	margin-top: 10px;
	margin-bottom: 3px;
}



h3 {/* 上下線タイプ */
	text-align: center;
	font-weight: bold;
	font-size: 11pt;
	color: #444;
	background-color: #fff;
	border-top: 2px solid #f66;
	border-bottom: 2px solid #f66;
	padding: 3px 3px 2px 3px;
	margin-top: 10px;
	margin-bottom: 3px;
}

/*
https://saruwakakun.com/html-css/reference/h-design
*/


h4.ul1 {/* アンダーライングラデーション */
  position: relative;
  padding: 0.25em 0;
}
h4.ul1:after {
  content: "";
  display: block;
  height: 4px;
  background: -webkit-linear-gradient(to right, rgb(230, 90, 90), transparent);
  background: linear-gradient(to right, rgb(230, 90, 90), transparent);
}


h4.box {/* 囲い線タイプ　〜inline-block */
  position: relative;
  padding: 0.25em 1em 0.1em 1em;
  border-top: solid 1px black;
  border-bottom: solid 1px black;
  display: inline;
}
h4.box:before, h4.box:after {
  content: '';
  position: absolute;
  top: -5px;
  width: 1px;
  height: -webkit-calc(100% + 10px);
  height: calc(100% + 11px);

}
h4.box:before {
  left: 7px;
}
h4.box:after {
  right: 7px;
}


.underline {/* かぶせアンダーライン */
	background: linear-gradient(transparent 40%, #fcc 60%);
}

.leftline{
	border-left :solid 6px #f88;
	border-bottom: solid 1px gray;
	padding: 1px 0px 1px 8px;
	margin: 1px 0px 5px 0px;

}



table{
	font-size: 10pt;
}


/*-------　写真配置　-----------*/

	
.img_le1-800{
	width: 800px;
	float: left;
	background-color:#fcc;
	font-size: 10.5pt;
	line-height: 120%;
	margin: 5px 15px 5px 0px;
}

.img_ri1{
	width: 400px;
	float: right;
	background-color:#fcc;
	font-size: 10.5pt;
	line-height: 120%;
	margin: 5px 0px 5px 15px;
}


.img_le2{
	width: 400px;
	float: left;
	background-color:#fcc;
	font-size: 10.5pt;
	line-height: 120%;
	margin: 5px 0px 5px 0px;
}

.img_ri2{
	width: 400px;
	float: right;
	background-color:#fcc;
	font-size: 10.5pt;
	line-height: 120%;
	margin: 5px 0px 5px 0px;
}





a.button1 {
     background-color:#c68306;
     border:1px solid #ccc;
     padding:5px 20px;
     cursor:pointer;
	font-weight: bold;
	font-size: 11pt;
	color: #ffffff;
}



/*
http://www.nxworld.net/tips/css-only-button-design-and-hover-effects.html
*/

.button {
	display: inline-block;
	width: 150px;
	height: 35px;
	text-align: center;
	text-decoration: none;
	line-height: 35px;
	outline: none;
	background-color: #c00;
	color: #fff;
}
.button:hover {
	background-color: #fcc;
}
.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button,
.button::before,
.button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}




