@charset "utf-8";

/*-----------------------------------------------
 * Common
 * Index
 * Detail
-------------------------------------------------*/
/*-----------------------------------------------
 * Common
-------------------------------------------------*/
/* #fullWrap */
#fullWrap.is-subpage {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@media screen and (max-width:1024px) {
  #fullWrap.is-subpage {
    min-width: 100%;
  }
}

/* .subContWrap */
.subContWrap {
  display: flex;
  padding-top: 20px;
  padding-bottom: 100px;
}

@media screen and (max-width:767px) {
  .subContWrap {
    display: block;
    padding-top: 0;
    padding-bottom: 60px;
  }
}

/* .subSection */
.subSection {
  width: 80vw;
  padding-top: 50px;
  margin-left: 70px;
}

@media screen and (max-width:768px) {
  .subSection {
    width: 90%;
    margin: 0 auto;
    margin-left: auto;
    padding-top: 80px;
  }
}

/* .sub */
.sub.is-subpage {
  position: sticky;
  top: 24px;
  z-index: 10;
}

@media screen and (max-width:767px) {
  .sub.is-subpage {
    position: absolute;
    top: auto;
  }
}

/* footer */
.footer {
  margin-top: auto;
}

/**
 * page title
 */
.subSection__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 6.8rem;
  line-height: 1;
  color: #fc77a3;;
  font-weight: 400;
  letter-spacing: .5rem;
  margin-bottom: 3rem;
}

@media screen and (max-width:767px) {
  .subSection__title {
    font-size: 4rem;
    margin-bottom: 0px;
  }
}

/**
 * back top
 */
.backLinkWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.backLink {
  border: 1px dashed #fc77a3;;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fc77a3;;
  font-size: 14px;
  font-weight: 600;
  height: 42px;
  padding: 0 30px;
  text-decoration: none;
  transition: all .3s ease;
}

.backLink:hover {
  background-color: #fc77a3;;
  color: #fff;
}

@media screen and (max-width:767px) {
  .backLinkWrap {
    margin-top: 40px;
  }

  .backLink {
    font-size: 12px;
    font-size: 1.2rem;
    height: 30px;
  }
}

/**
 * pager
 */
.pagingListsWrap {
  margin-top: 48px;
}

/* lists */
.pagingLists {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* item */
.pagingLists__item {
  width: 40px;
  height: 40px;
  margin: 0 5px;
}

@media screen and (max-width:767px) {
  .pagingLists__item {
    width: 30px;
    height: 30px;
  }
}

/* a, active */
.pagingLists__link {
  border: 1px dashed #fc77a3;;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: all .3s ease;
}

.pagingLists__link:hover {
  background-color: #fc77a3;;
  color: #fff;
}

.pagingLists__active {
  background-color: #fc77a3;;
  border: 1px dotted #fc77a3;;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* youtube */
.ytWrap {
  display: block;
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

.ytWrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}


/*-----------------------------------------------
 * movie
-------------------------------------------------*/
.movieLists{
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-wrap: wrap;
}
.movieLists__item{
	width: 50%;
	padding: 20px 20px 20px 0px;
}
.movieList__link{
	text-decoration: none;
	display: block;
}
.movieList__thumb{
	width: 100%;
	padding-top: 56.25%;
	margin-bottom: 16px;
	position: relative;
	overflow: hidden;
}
.movieList__thumbIn{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	transition: .3s ease;
}
.movieList__thumbIn:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #000;
	opacity: 0.45;
	transition: .3s ease;
}
.movieList__thumbIn:after{
	content: '';
	position: absolute;
	top: calc(50% - 40px);
	left: calc(50% - 40px);
	width: 80px;
	padding-top: 80px;
	background: url(../img/movie/play.svg) no-repeat center / contain;
	transition: .3s ease;
}
.movieList__link:hover .movieList__thumbIn{
	transform: scale(1.05);
}
.movieList__link:hover .movieList__thumbIn:before,
.movieList__link:hover .movieList__thumbIn:after{
	opacity: 0;
}

.movieLists__caption{
	font-size: 16px;
	font-weight: 700;
	line-height: 2;
	letter-spacing: 0.025em;
	transition: .3s ease;
  color: #000;
}
.movieList__link:hover .movieLists__caption{
	color: #fc77a3;;
}


@media screen and (max-width: 767px){
	.movieLists__item{
		width: 100%;
		padding: 12px 0;
	}
	.movieList__thumb{
		margin-bottom: 12px;
	}
	.movieList__thumbIn:after{
		top: calc(50% - 20px);
		left: calc(50% - 20px);
		width: 40px;
		padding-top: 40px;
	}
	.movieLists__caption{
		font-size: 1.2rem;
	}
}