/*---------------------------------------------
  画像保存禁止
---------------------------------------------*/

.image-guard img {
	pointer-events: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-touch-callout: none;
	-moz-user-select: none;
	touch-callout: none;
	user-select: none;
}



/*----------------------------------------------------------
  CATEGORY
----------------------------------------------------------*/

.category-list a {
	text-decoration:none;
	color:#5F6368;
}


/*------------------------
  TYPE-A
------------------------*/

.category-list-type_a span {
	color: #5F6368;
	padding: 5px 1.5em;
	margin: 5px 1em;
	border-radius: 3rem;
	border: solid 1px #757575;
}

.category-list-type_a a {
	margin: 5px 1em;
	-webkit-transition:.3s ease;
	transition:.3s ease;
}

.category-list-type_a a:hover {
	opacity:0.7;
	text-decoration:none !important;
}

.category-list-type_a li.list-inline-item {
	margin: 0 0 1em !important;
}


@media screen and (max-width: 767px) {
	
.category-list-type_a ul {
	overflow:hidden;
	clear:both;
}
	
.category-list-type_a li.list-inline-item {
	width:33.3%;
	float:left;
	text-align:center;
	background:#eee;
	border:solid 1px #fff;
	padding: 5px 0;
	margin: 0 !important;
	font-size: 14px;
}
	
.category-list-type_a li a {
	color:#5F6368;
	margin: 0 auto;
}

.category-list-type_a li span {
	color:#999;
	background: none;
	padding: 0;
	margin: 0;
	border-radius: none;
	border: none;
}

}

@media screen and (max-width: 575px) {
	
.category-list-type_a li.list-inline-item {
	font-size: 3vw;
}
}

/*------------------------
  TYPE-B
------------------------*/

.category-list-type_b a {
	-webkit-transition:.3s ease;
	transition:.3s ease;
}

.category-list-type_b a:hover {
	color:#96906d;
}

.category-list-type_b li.list-inline-item {
	margin:0 1.5em .5em !important;
	border-bottom: solid 2px #96906d;
}


/*------------------------
  TYPE-C
------------------------*/

.category-list-type_c li {
	margin:0 1.5em .5em !important;
}

.category-list-type_c li span {
	color: #96906d;
	padding-bottom: 2px;
	position:relative;
}

.category-list-type_c li span::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #96906d;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.category-list-type_c li a {
	padding-bottom: 2px;
	position:relative;
	display:inline-block;
	-webkit-transition:.3s ease;
	transition:.3s ease;
}

.category-list-type_c li a:hover {
	color: #96906d;
}

.category-list-type_c li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	background-color: #96906d;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.category-list-type_c li a:hover::after {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}



/*----------------------------------------------------------
  POST ITEM
----------------------------------------------------------*/

.post-item a {
	display:block;
	text-decoration:none;
	color:#5F6368;
	-webkit-transition:.3s ease;
	transition:.3s ease;
}

.post-item .post-eyecatch {
	height:0;
	overflow: hidden;
    position: relative;
	border-radius: .25rem !important;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}

.post-option {
	color:#999;
}

.post-date {
margin-right: 1em;
}

.date-category-separator {
	display:none;
}

/***** 天地左右真中 *****/
.post-item .post-eyecatch img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: top;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
}


/***** 上揃え *****/
/*.post-item .post-eyecatch img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    object-fit: cover;
    object-position: top;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
}*/



/*---------------------------------------------
  POST ITEM TYPE-A
---------------------------------------------*/

/*------------------------
  TYPE-A1
------------------------*/

.post-item-type_a1 {
	border-bottom:solid 1px #ccc;
}

.post-item-type_a1 a {
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.post-item-type_a1 a:hover {
	opacity:0.8;
}

.post-item-type_a1 .post-body {
	padding:32px 80px !important;
}

.post-item-type_a1 .post-title {
	font-size: 1rem;
	line-height:1.5;
}

.post-item-type_a1 .post-option {
	padding-bottom:0 !important;
	color:#999;
}

.post-item-type_a1 .post-option ul {
	margin-bottom:0;
}

@media screen and (max-width:750px){
.post-item-type_a1 .post-body {
	padding: 22px 52px !important;
}

.post-item-type_a1 .post-title {
	font-size: 1rem;
}

.post-item-type_a1 .post-lead {
	font-size: 95%;
}

}


/*------------------------
  TYPE-A2
------------------------*/

.post-item-type_a2 {
	background:#f5dadf;
	border-radius: .25rem !important;
	margin-bottom:16px;
}

.post-item-type_a2 a {
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.post-item-type_a2 a:hover {
	opacity:0.8;
}

.post-item-type_a2 .post-body {
	padding:32px !important;
}

.post-item-type_a2 .post-title {
	font-size: 1rem;
	line-height:1.5;
	margin-bottom: 1em;
}

.post-item-type_a2 .post-option {
	padding-bottom:1rem !important;
	font-size:90%;
	color:#999;
	display: none;
}

.post-item-type_a2 .post-option ul {
	margin-bottom:0;
}

@media screen and (max-width:750px){

.post-item-type_a2 .post-body {
	padding:32px 16px !important;
}

.post-item-type_a2 .post-title {
	font-size: 1rem;
}

.post-item-type_a2 .post-lead {
	font-size: 95%;
}

}


/*------------------------
  TYPE-A3
------------------------*/

.post-item-type_a3 {
	border:1px solid #dee2e6;
	border-radius: .25rem !important;
	-webkit-transition:all .3s linear;
	transition:all .3s linear;
	margin-bottom:40px;
}

.post-item-type_a3:hover {
	border:1px solid #343a40;
}

.post-item-type_a3 .post-body {
	padding:40px !important;
}

.post-item-type_a3 .post-title {
	font-size: 1.2rem;
	line-height:1.5;
}

.post-item-type_a3 .post-option {
	padding-bottom:1rem !important;
	font-size:90%;
	color:#999;
}

.post-item-type_a3 .post-option ul {
	margin-bottom:0;
}

@media screen and (max-width:750px){

.post-item-type_a3 .post-body {
	padding:30px 15px !important;
}

.post-item-type_a3 .post-title {
	font-size: 1rem;
}

.post-item-type_a3 .post-lead {
	font-size: 95%;
}

}



/*------------------------
  TYPE-A4
------------------------*/

.post-item-type_a4 {
	border:none;
	border-radius: .25rem !important;
	-webkit-transition:all .3s linear;
	transition:all .3s linear;
	margin-bottom:40px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}

.post-item-type_a4:hover {
	border:none;
	box-shadow: 0 6px 9px rgba(0,0,0,0.16);
}

.post-item-type_a4 .post-body {
	padding:40px !important;
}

.post-item-type_a4 .post-title {
	font-size: 1.2rem;
	line-height:1.5;
}

.post-item-type_a4 .post-option {
	padding-bottom:1rem !important;
	font-size:90%;
	color:#999;
}

.post-item-type_a4 .post-option ul {
	margin-bottom:0;
}

@media screen and (max-width:750px){

.post-item-type_a4 .post-body {
	padding:30px 15px !important;
}

.post-item-type_a4 .post-title {
	font-size: 1rem;
}

.post-item-type_a4 .post-lead {
	font-size: 95%;
}

}



/*---------------------------------------------
  POST ITEM TYPE-B
---------------------------------------------*/

/*------------------------
  TYPE-B1
------------------------*/

.post-item-type_b1 {
	margin-bottom:64px;
}

.post-item-type_b1 a {
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.post-item-type_b1 a:hover {
	opacity:0.8;
}

.post-item-type_b1 .d-md-flex {
	padding:0 !important;
}

.post-item-type_b1 .post-eyecatch {
    width: 32%;
    padding-top: 22%;
}

.post-item-type_b1 .post-body {
    width: 68% !important;
	padding:0 0 0 1.5rem !important;
}

.post-item-type_b1 .post-title {
	font-size: 1.2rem;
	line-height:1.5;
}


@media screen and (max-width:767px){

.post-item-type_b1 .post-eyecatch {
    width: 100%;
	height:auto;
    padding-top: 65%;
	margin-bottom:15px;
}

.post-item-type_b1 .post-body {
    width: auto !important;
	padding:0 0 0 0 !important;
}

.post-item-type_b1 .post-title {
	font-size: 1rem;
}

}



/*------------------------
  TYPE-B2
------------------------*/

.post-item-type_b2 {
	margin-bottom:80px;
}

.post-item-type_b2 a {
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.post-item-type_b2 a:hover {
	opacity:0.8;
}

.post-item-type_b2 .d-md-flex {
	padding:0 !important;
}

.post-item-type_b2 .post-eyecatch {
    width: 30%;
    padding-top: 30%;
}

.post-item-type_b2 .post-body {
    width: 70% !important;
	padding:0 0 0 1.5rem !important;
}

.post-item-type_b2 .post-title {
	font-size: 1.2rem;
	line-height:1.5;
}


@media screen and (max-width:767px){

.post-item-type_b2 {
	margin-bottom:50px;
}

.post-item-type_b2 .d-md-flex {
	display: -ms-flexbox !important;
	display: flex !important;
}

.post-item-type_b2 .post-eyecatch {
    width: 25%;
    padding-top: 25%;
	margin-bottom:15px;
}

.post-item-type_b2 .post-body {
    width: 75% !important;
	padding:0 0 0 .8rem !important;
}

.post-item-type_b2 .post-title {
	font-size: 1rem;
}

.post-item-type_b2 .post-option {
	padding:0 !important;
}

.post-item-type_b2 .post-option ul {
	margin-bottom:0 !important;
}

.post-item-type_b2 .post-lead {
	display:none;
}

}



/*------------------------
  TYPE-B3
------------------------*/

.post-item-type_b3 {
	margin-bottom:80px;
}

.post-item-type_b3 a {
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.post-item-type_b3 a:hover {
	opacity:.8;
}

.post-item-type_b3 .d-md-flex {
	padding:0 !important;
}

.post-item-type_b3 .post-eyecatch {
    width: 30%;
    padding-top: 30%;
	border-radius: 50% !important;
}

.post-item-type_b3 .post-body {
    width: 70% !important;
	padding:0 0 0 1.5rem !important;
}

.post-item-type_b3 .post-title {
	font-size: 1.2rem;
	line-height:1.5;
}


@media screen and (max-width:767px){

.post-item-type_b3 {
	margin-bottom:50px;
}

.post-item-type_b3 .d-md-flex {
	display: -ms-flexbox !important;
	display: flex !important;
}

.post-item-type_b3 .post-eyecatch {
    width: 25%;
    padding-top: 25%;
	margin-bottom:15px;
}

.post-item-type_b3 .post-body {
    width: 75% !important;
	padding:0 0 0 .8rem !important;
}

.post-item-type_b3 .post-title {
	font-size: 1rem;
}

.post-item-type_b3 .post-option {
	padding:0 !important;
}

.post-item-type_b3 .post-option ul {
	margin-bottom:0 !important;
}

.post-item-type_b3 .post-lead {
	display:none;
}

}







/*---------------------------------------------
  POST ITEM TYPE-C
---------------------------------------------*/

/*------------------------
  TYPE-C1
------------------------*/


.post-item-type_c1 a {
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.post-item-type_c1 a:hover {
	opacity:0.8;
}

.post-item-type_c1 .post-eyecatch {
	padding-top: 56.25%;
	width:100%;
}

.post-item-type_c1 .post-date, .post-item-type_c1 .post-category-list{
	color:#999;
	display: inline-block;
	margin-top: 1em;
}


/*------------------------
  TYPE-C2
------------------------*/

.post-item-type_c2_row {
	margin:-1%;
}

.post-item-type_c2_row .col-6, .post-item-type_c2_row .col-md-3 {
	padding:1%;
}

.post-item-type_c2 {
	position:relative;
}

.post-item-type_c2 a {
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.post-item-type_c2 .post-eyecatch {
	width:100%;
	padding-top: 100%;
}

.post-item-type_c2 .post-eyecatch::before {
    content:"";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.post-item-type_c2:hover .post-eyecatch::before {
    background-color: rgba(0, 0, 0, .6);
}

.post-item-type_c2 .post-title {
    width: 100%;
	padding:0px 10px;
	margin:0 !important;
	position:absolute;
	color:#fff;
	text-align:center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	z-index:999;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	display:none;
	
}

.post-item-type_c2 .post-date {
	margin:0 !important;
	position:absolute;
	bottom:10px;
	right:10px;
	color:#fff;
	z-index:999;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	display:none;
}

.post-item-type_c2:hover .post-title, .post-item-type_c2:hover .post-date {
	display:block;
}


@media screen and (max-width: 991px) {

.post-item-type_c2 .post-eyecatch::before {
    background-color: rgba(0, 0, 0, .6);
}

.post-item-type_c2 .post-title {
	display:block;
	
}

.post-item-type_c2 .post-date {
	display:block;
}
	
}


@media screen and (max-width: 575px) {

.post-item-type_c2 {
	font-size:85%;
	line-height:1.3;
}

.post-item-type_c2 .post-title {
	padding:0px 5px;
	
}

.post-item-type_c2 .post-date {
	display:block;
	bottom:5px;
	right:5px;
}
	
	
}


/*------------------------
  TYPE-C3
------------------------*/

.post-item-type_c3_row {
	margin:0;
}

.post-item-type_c3_row .col-6, .post-item-type_c3_row .col-md-3 {
	padding:1px;
}

.post-item-type_c3 .p-3 {
	padding:0 !important;
}

.post-item-type_c3 .post-title {
	font-size:14px;
	line-height:1.8 !important;
	margin-bottom:1.5em;
}

.post-item-type_c3 .post-option {
	padding:0 !important;
	color:#fff;
}

.post-item-type_c3 .post-option span {
	display:block;
}

.post-item-type_c3 .post-option .date-category-separator {
	display:none;
}

.post-item-type_c3 .post-option ul.post-category-list {
	display:block !important;
	color:#fff;
}

.post-item-type_c3 .post-option ul.post-category-list li {
	border:solid 1px #fff;
	border-radius:3rem;
	padding:0px 1em;
}

.post-item-type_c3 .post-lead p {
	margin-bottom:0;
}



.post-item-type_c3 {
	position:relative;
}

.post-item-type_c3 a {
	color:#fff;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.post-item-type_c3 .post-eyecatch {
	overflow: hidden;
	position: relative;
	width:100%;
	padding-top: 100%;
	border-radius:0 !important;
	box-shadow:none;
}

.post-item-type_c3 .post-eyecatch::before {
    content:"";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.post-item-type_c3:hover .post-eyecatch::before {
    background-color: rgba(0, 0, 0, .6);
}

.post-item-type_c3 .post-body {
    width: 100% !important;
	padding:0px 10px !important;
	margin:0 !important;
	position:absolute;
	color:#fff;
	text-align:center;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	z-index:999;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	display:none;
}

.post-item-type_c3:hover .post-body {
	display:block;
}

.post-item-type_c3 .post-title, .post-item-type_c3 .post-option span, .post-item-type_c3 .post-option ul.post-category-list {
	margin-bottom:1.5em;
}

.post-item-type_c3 .post-option ul.post-category-list li {
	border:solid 1px #fff;
}


@media screen and (max-width:767px){

.post-item-type_c3 .post-body, .post-item-type_c3:hover .post-body {
	display:none !important;
}

/*.post-item-type_c3 .post-eyecatch {
    width: 35%;
    padding-top: 35%;
	margin-bottom:15px;
}

.post-item-type_c3 .d-md-flex {
	display: -ms-flexbox !important;
	display: flex !important;
}

.post-item-type_c3 .post-body {
    width: 65% !important;
	padding:0 0 0 .8rem !important;
}


.post-item-type_c3 .post-title, .post-item-type_c3 .post-option span, .post-item-type_c3 .post-option ul.post-category-list {
	margin-bottom:0.5em !important;
}

.post-item-type_c3 .post-option ul.post-category-list li {
	border:solid 1px #333;
	font-size:90%;
}*/

}







/*---------------------------------------------
  POST ITEM TYPE-D
---------------------------------------------*/

/*------------------------
  TYPE-D1
------------------------*/

.post-item-type_d1 a {
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.post-item-type_d1 a:hover {
	opacity:0.8;
}

.post-item-type_d1 .post-eyecatch {
	width:100%;
	padding-top:62%; /*黄金比*/
	/*padding-top: 56.25%;*/ /*16:9*/
}







/*---------------------------------------------
  POST DETAIL
---------------------------------------------*/

.post-body-detail .post-title {
	font-size: 1.2rem;
	line-height:1.5;
	margin-bottom:1em;
}

.post-body-detail .post-option {
	margin-bottom:4em;
	font-size:12px;
}

.post-body-detail .post-option ul {
	margin-bottom:0;
}

.post-body-detail .post-lead {
	margin-bottom:1em;
}


/*------------------------
  image
------------------------*/

.post-body-detail .post-lead img, .post-body-detail .post-content img {
	width: auto !important;
	max-width: 80% !important;
	margin:0px auto;
	display:block;
}

@media screen and (max-width: 767px) {

.post-body-detail .post-lead img, .post-body-detail .post-content img {
	max-width: 100% !important;
}

}


/***** small *****/

.post-body-detail.image-small .post-lead img, .post-body-detail.image-small .post-content img {
	width: auto !important;
	max-width: 450px !important;
	margin:0;
}

@media screen and (max-width: 767px) {

.post-body-detail.image-small .post-lead img, .post-body-detail.image-small .post-content img {
	max-width: 100% !important;
}

}






/*------------------------
  MOVIE
------------------------*/

.post-body-detail .movie {
	margin:50px auto 0;
	width:80%;
}


@media screen and (max-width: 767px) {

.post-body-detail .movie {
	width:100%;
}

}



.post-body-detail .movie .iframe {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.post-body-detail .movie .iframe iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



/*------------------------
  AUDIO
------------------------*/

.post-body-detail .audio {
	margin:50px auto 0;
}


@media screen and (max-width: 767px) {

.post-body-detail .audio #player_0, .post-detail-type_b .audio #eviry-deck_1, .post-body-detail .audio .miovip-controlpanel  {
	width:100% !important;
}

}




/*------------------------
  GALLERY
------------------------*/

.post-body-detail .gallery {
	margin:50px auto;
}

.post-body-detail .gallery ul {
	overflow:hidden;
	clear:both;
}

.post-body-detail .gallery li {
	width:25%;
	padding-top:25%;
	float:left;
	position:relative;
	overflow:hidden;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	display:none;
	cursor:pointer;
}

.post-body-detail .gallery li:hover {
	opacity:0.8;
}

.post-body-detail .gallery li img {
	width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    object-fit: cover;
    object-position: top;
    max-width: none;
    max-height: none;
    min-width: 100%;
    min-height: 100%;
}



@media screen and (max-width: 767px) {

.post-body-detail .gallery li {
	width:33.3%;
	padding-top:33.3%;
	float:left;
	position:relative;
	overflow:hidden;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.lg-actions {
	display:none;
}

}

.lg-backdrop, .lg-outer {
	z-index:9999 !important;
}

.lg-inner .lg-item .lg-img-wrap img {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-touch-callout: none;
	-moz-user-select: none;
	touch-callout: none;
	user-select: none;
}



/*------------------------
  DISCOGRAPHY
------------------------*/

.post-body-detail .discography {
overflow: hidden;
clear: both;
}


@media screen and (min-width: 768px) {

.post-body-detail .discography dt {
float: left;
width: 45%;
}

.post-body-detail .discography dd {
float: right;
width: 50%;
}

}

@media screen and (max-width: 767px) {

.post-body-detail .discography dt {
max-width: 450px;
margin: 0 auto 32px;
}

}


.post-body-detail .discography dd .post-lead {
margin: 1em 0;
}



/*------------------------
  SCHEDULE
------------------------*/

/***** CALENDER *****/

#_postsSchedule h4.title {
	font-family: 'Bebas Neue', cursive;
	font-size: 32px;
	margin-bottom: 32px;
}

#_postsSchedule .justify-content-between {
	font-family: 'Bebas Neue', cursive;
	font-size: 22px;
	line-height: 1;
}

#_postsSchedule .justify-content-between a {
	color: #C0C0C0;
	text-decoration:none;
}

#_postsSchedule .justify-content-between .prev i {
	font-size:20px;
	margin-right: 0.2em;
}

#_postsSchedule .justify-content-between .next i {
	font-size:20px;
	margin-left: 0.2em;
}



/***** LIST *****/

#_postsSchedule .schedule-list-item a.schedule-title-link, #_postsSchedule .schedule-list-item a.schedule-title-link:hover {
	color: #5F6368;
	text-decoration: none;
}

#_postsSchedule .schedule-list-item .schedule-category-label {
	padding: 6px 1em;
}



/*------------------------
  DOWNLOAD
------------------------*/

.post-body-detail .download dl {
overflow: hidden;
clear: both;
}


@media screen and (min-width: 768px) {

.post-body-detail .download dt {
float: left;
width: 60%;
}

.post-body-detail .download dd {
float: right;
width: 35%;
}

}

.post-body-detail .download dd li {
margin-bottom: 1.5em;
}

.post-body-detail .download dd li a {
width: 100%;
text-align: left;
padding: 12px 1.5em;
}

.post-body-detail .download dd li a i {
margin-right: 0.5em;
}


@media screen and (max-width: 767px) {

.post-body-detail .download dt {
margin-bottom: 32px;
}

}