@charset "utf-8";
.comment{
	text-align: center;
    font-size: 1rem;
}
.catalogBox {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.catalogBox .ctgBox {
	box-sizing: border-box;
	border: 1px solid #CCCCCC;
	background-color: #FFF;
	padding: 20px;
	width: 38%;
	margin: 60px 0 10px;
	box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    position: relative;
}
.catalogBox .ctgBox a{
  transition: .2s;
  text-decoration: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.catalogBox .ctgBox a:hover{
  opacity: 0.2;
  filter: alpha(opacity=20);
  -moz-opacity: 0.2;
  background: #bbe4ef;
}
.ctgPlate{
  text-align: center;
  color: #FFFFFF;
  background: #3b444d;
  line-height: 1;
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 0.9rem;
  margin-top: 20px;
}


/*  動画視聴  */
h2.movie {
	font-size: 2rem;
    background: none;
    color: #181617;
    letter-spacing: 1.5px;
    text-align: center;
    margin-top: 6rem;
}
.movieTitle {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.4;
	letter-spacing: 0.8px;
    font-weight: bold;
	margin: 20px 0;
}
.movieTitleSub {
    font-size: 0.9rem;
    text-align: left;
    line-height: 1.4;
	margin: 24px 0 10px;
}
.movieList {
    height: 116px;
	text-align: left;
}
.movieList li {
    list-style-type: none; 
    position: relative; 
    padding-left: 0.6em;
	margin-right: 0;
}
.movieList li:before {
    border-radius: 50%; 
    width: 7px; 
    height: 7px; 
    display: block;
    position: absolute;
    left: 0; 
    top: 0.6em;
    content: "";
    background: #5a2a82; 
}
.catalogBox.movie_area .ctgBox .data{
    text-align: right;
    font-size: 0.8rem;
    margin: 0.6rem 0 3rem;
}

/*****************************************************
	iPad縦向き
******************************************************/
@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:portrait) {
    h2.movie {
        padding: 0 0 0;
    }
  
  }

/*****************************************************
	スマホ
******************************************************/
@media only screen and (max-device-width: 599px) {
    .catalogBox {
        flex-direction: column;
    }
    .catalogBox .ctgBox {
        width: 100%;
    }
    .movieTitle {
        font-size: 1.1rem;
    }
    .comment {
        text-align: center;
        font-size: 0.9rem;
    }
    h2.movie {
        margin-top: 4rem;
    }
}