/* Enter Your Custom CSS Here */

header.entry-header {
  pointer-events: none;
}

/* img block */

img {
  transition: 0.5s;
}
img:hover {
  opacity: 0.6;
  transition: 0.5s;
}

/* table */

table {
	width: 100%;
}

table tr {
	-webkit-transition: background-color .3s ease-in-out;
	-moz-transition: background-color .3s ease-in-out;
	transition: background-color .3s ease-in-out;
}

table tr:hover {
	background: rgba(0,0,0,1.00);
  color: #fff;
}

table tr {
	display: block;
	margin: 5px 0;
	padding: 12px 0;
	border: 1px dotted #000 ;
}

table tr td.number {
	padding-left: 8%;
	width: 200px;
}

table tr td.artist {
	width: 300px;
}

table tr td.track {
	width: 400px;
	padding-right: 4%;
}

/* 日本語フォント */

.entry-title {
  font-family: 'Noto Sans Japanese', serif;
  font-weight:300;
  text-align: center;
}

.entry-content {
  font-family: 'Noto Sans Japanese', serif;
  font-weight:200;
}

.eModal-1 {
  font-family: 'Noto Sans Japanese', serif !important;
  font-weight:200 !important;
}

/* modal window */

.modal > label {
color: #FFD300;;
cursor: pointer;
display: inline-block;
}

.modal-overlay {
background:#fff;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
text-align:left;
}

.modal-wrap {
position: relative;
width: 100%;
max-width: 600px;
height:300px;
margin: 0 auto;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin: -1.5em 0 0 -50%;
}

.modal-wrap label {
color: #FFD300;
cursor: pointer;
display: inline-block;
}

input {
position: absolute;
z-index: -9999;
visibility: hidden;
}

.modal-overlay {
opacity:0;
	-webkit-transform: scale(0.5);
	-moz-transform: scale(0.5);
	-ms-transform: scale(0.5);
	-o-transform: scale(0.5);
	transform: scale(0.5);
	-webkit-transition: all 0.75s cubic-bezier(0.65, -0.55, 0.265, 1.55);
	-moz-transition: all 0.75s cubic-bezier(0.65, -0.55, 0.265, 1.55);
	-ms-transition: all 0.75s cubic-bezier(0.65, -0.55, 0.265, 1.55);
	-o-transition: all 0.75s cubic-bezier(0.65, -0.55, 0.265, 1.55);
	transition: all 0.75s cubic-bezier(0.65, -0.55, 0.265, 1.55);
z-index: -999;
}

input:checked ~ .modal-overlay {
opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-0-transform: scale(1);
	transform: scale(1);
z-index: 999;
}

/* dlの設定 */

dl{  
  font-weight : bold;
}

dt{  
  color: #808080;        
  width : 150px;
  float : left;/* 左に寄せる */
  clear : both;/* フロートの解除 */
}

dd{    
  padding-right : 10px;
  width : 300px;
  margin-left : 160px;/* DTの幅分の設定 */
}

/* 非表示 */

.vcard .fn{
	display:none;
}

.entry-meta {
	display:none;
}

.entry-footer {
	display:none;
}

/* ボタン1 */

.button {
	display: inline-block;
	width: 200px;
	height: 54px;
	text-align: center;
	text-decoration: none;
	line-height: 54px;
	outline: none;
}
.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;
}

/* ボタン2 */

.button2 {
	display: inline-block;
	width: 200px;
	height: 54px;
	text-align: center;
	text-decoration: none;
	line-height: 54px;
	outline: none;
}
.button2::before,
.button2::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button2,
.button2::before,
.button2::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

/* ボタン3 */

.button3 {
	display: inline-block;
	width: 150px;
	height: 54px;
	text-align: center;
	text-decoration: none;
	line-height: 54px;
	outline: none;
}
.button3::before,
.button3::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button3,
.button3::before,
.button3::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

/* ボタンパターン1 */

.button {
	position: relative;
	z-index: 2;
	background-color: #fff;
	border: 2px solid #333;
	color: #333;
	line-height: 50px;
	overflow: hidden;
}
.button:hover {
	color: #fff;
}
.button::after {
	top: -100%;
	width: 100%;
	height: 100%;
}
.button:hover::after {
	top: 0;
	background-color: #dd9933;
}

/* ボタンパターン2 */

.button2 {
	position: relative;
	z-index: 2;
	border: 2px solid rgba(0,0,0,1.00);
	color: #fff;
	line-height: 50px;
	-webkit-perspective: 300px;
	perspective: 300px;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.button2:hover {
	color: rgba(0,0,0,1.00);
}
.button2::after {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,1.00);
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-transform: rotateX(0);
	transform: rotateX(0);
}
.button2:hover::after {
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
}

/* ボタンパターン3 */

.button3 {
	background-color: #fff;
	border: 2px solid #333;
	color: #333;
	line-height: 50px;
}
.button3:hover {
	border-style: dashed;
}