@charset "utf-8";
/* CSS Document */

.innerBlock{
	border-bottom: 1px dotted #000000;
	padding: 0 0 28px;
	margin: 0 auto 36px;
}

.innerBlockWrapper {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.issueImg img{
	width: 220px;
}

.issueBox {
	margin-left: 40px;
}

.issueTtl {
	font-size: 20px;
    font-weight: bold;
    padding-left: 10px;
    margin-bottom: 20px;
}

.issueTtl.issuePage {
	border-left: 5px solid #df3902;
    color: #df3902;
}

.issueTtl.issueMovie {
	border-left: 5px solid #b828c5;
    color: #b828c5;
}

.issueTxt{
	font-size: 14px;
}

.issueList{
	margin-bottom: 20px;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.issueList li{
	width: 224px;
	height: 93px;
	padding: 3px;
	border: 1px solid #cccccc;
	float: left;
	margin-right: 10px;
	background-color: #ffffff;
	overflow: hidden;
}

.issueList li a{
	display: block;
	width: 100%;
	height: 93px;
	overflow: hidden;
}


.issueList li:last-child{
	margin-right: 0;
}


.issueList li img{
	width: 100%;
}

.backnoTtl{
	margin-bottom: 15px;
}

.backnoList li{
	width: 230px;
	float: left;
	margin-right: 15px;
}

.backnoList li:last-child{
	margin-right: 0;
}

.backnoList li img{
	width: 100%;
}

.backnoList li a{
	display: block;
	margin-bottom: 12px;
}

.issueMoreBtn a{
	display: block;
	width: 300px;
	height: 45px;
	line-height: 45px;
	margin: 0 auto;
	clear: both;
	background: linear-gradient(to bottom, rgb(254, 133, 176) 0%,rgb(255, 102, 156) 100%);
	border-radius: 5px;
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	text-align: center;
}


/*------- movieList ---------*/
.movieList{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto 20px;
	justify-content: space-between;
}

.movieList li{
	border: 1px solid #cccccc;
	width: 42%;
	padding: 3%;
	background: #fff;
	margin-bottom: 30px; 
}

.movieContainer {
	margin: 10px auto 10px;
}

.listShopInfo span {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.listShopInfo a{
	color: #FF629B;
}

.movieList li video {
  width: 100%;
  /*height: 260px;*/
  aspect-ratio: 16 / 9;
  height: auto;
}

.movieList li .btnMore{
	width: 150px;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
}

.movieContainer iframe{
	aspect-ratio: 16 / 9;
	height: auto;
}


/*---------- btnMore -------------*/

.btnMore{
	display: block;
	width: 260px;
	height: 50px;
	line-height: 50px;
	background: #FF629B;
	/*border: 1px solid #FF629B;*/
	border-radius:10px;
	margin: 0 auto;
	text-decoration: none;
	text-align: center;
	color: #fff;
}

.btnMore span{
	padding-right:30px;
	position: relative;
	font-weight: 700;
}

.btnMore span::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #FF629B;
  border-right: 2px solid #FF629B;
  margin: auto;
  transform: rotate(45deg);
  right: 5px;
  top: 0px;
  bottom: 0;
}

.btnMore span::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50px;
    bottom: 0;
    right: 0;
    top: 0;
    margin: auto;
}

.btnMore.inList span{
	font-size: 12px!important;
}

.btnMore.withHover:hover{
	background: #fff;
	color: #FF629B;
}

.btnMore.withHover:hover span::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;	
}

.btnMore.withHover:hover span::before {
	background: #FF629B;
}



@media screen and (max-width: 896px){


h1#contentsTtl{
	height: 42px;
	line-height: 42px;
	border: 1px solid #eae8da;
	border-left: none;
	border-right: none;
	display: block;
	background: linear-gradient(180deg, rgba(247,249,242,1) 0%, rgba(243,242,234,1) 50%, rgba(236,236,226,1) 100%);
	margin-bottom: 30px;
	font-size: 18px;
	padding-left: 22px;
	position: relative;
	font-weight: normal;
}

h1#contentsTtl::before {
	content: "";
	position: absolute;
	width: 5px;
	height: 22px;
	background: #FE5E8E;
	left: 10px;
	top: 9px;
}

.innerBlock{
	width: 92%;
	margin: 0 auto;
	padding: 0 0 50px;
}

.innerBlockWrapper{
	display: block;
}

.issueImg img {
    width: 50%;
    max-width: 220px;
    margin: 30px auto;
    display: block;
}

.issueBox {
    margin-left: 0;
}

.issueList{
	flex-wrap: wrap;
}

.issueList li{
	width: 100%;
	margin-bottom: 2em;
	margin-right: 0;
}

.issueList li,
.issueList li a{
	height: auto;
	text-decoration: none;
	color: #ff3399;
}


	/*------- movieList ---------*/

	.listShopInfo span {
		font-size: 1.2rem;
	}

	.movieList{
		display: block;
		width: 100%;
	}

	.movieContainer {
		margin: 10px auto 0;
	}

	.movieList li{
		width: 100%;
		padding:4%;
		margin-bottom: 30px;
		box-sizing: border-box;
	}

	.movieList li:last-child{
		margin-bottom: 0;
	}


	.movieList li video {
	  height: auto;
	  margin-bottom: 10px;
	}

	.movieList li .btnMore{
			width: 140px;
			height: 30px;
			line-height: 30px;
	}

	.movieList li .listShopInfo{
		margin-bottom: 10px;
	}

}