@charset "utf-8";

/*--------------------------------------
  共通部分
--------------------------------------*/

.txt-center {
  text-align: center;
}

.issue sub {
  padding-right: 0;
  vertical-align:inherit;
}


#ISSUE.issue .movie {
  display: grid;
  max-width: 32rem;
  height: 18rem;
  margin: 0 auto;
  padding: 3rem;
  place-items: center;
  background: #e5e5e5;
}
#ISSUE.issue .movie .txt-center{padding: 1rem 0;}
#ISSUE.issue .movie .txt-center strong{
  font-size: var(--font-size-l); 
  margin: 0 0 1em 0;
}

#ISSUE.issue ul.post-list li.post {
  background: #fff;
}
#ISSUE.issue ul.post-list li.post .post-body {
  position: relative;
  margin: auto;
  padding: 2rem 0 6rem;
  width: 94%;
  max-width: 100rem;
}

#ISSUE.issue ul.post-list li.post:nth-child(2n+1) {
  background: #f1f1f1;
}

#ISSUE.issue .issue-slider-movie,
#ISSUE.issue .issue-slider{
  width: 100%;
  display: block;
  overflow: hidden;
}

#ISSUE.issue .slide-photo{
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  transition: all .6s ease;
  opacity: 0;
}
#ISSUE.issue .slide-photo img {
  display: block;
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
}

#ISSUE.issue .swiper-slide-active .slide-photo{ opacity: 1;}




#ISSUE.issue .post-title {
  margin-top: 1rem;
}

#ISSUE.issue .post-title a {
  position: relative;
  margin: 0 0 1em;
  padding: 0.5rem 1rem;
  display: block;
  border-left: 1rem solid #00aeef;
  color: #333;
  font-size: var(--font-size-l);
  font-weight: bold;
}
#ISSUE.issue .post-title a::before {
  position: absolute;
  top: 0;
  left: -1.3rem;
  bottom: 0;
  margin: auto;
  width: 1rem;
  height: 1rem;
  display: block;
  border-top: 0.3rem solid #fff;
  border-right: 0.3rem solid #fff;
  transform: rotate( 45deg );
  content: "";  
}

#ISSUE.issue ul.post-list li.post .post-contents {
  display: block;
  margin: 2rem auto;
  padding: 1rem;
  background: #f6f6f6;
}

#ISSUE.issue ul.post-list li.post:nth-child(2n+1) .post-contents {
  background: #fff;
}

#ISSUE.issue .post-txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden; 
}

#ISSUE.issue .issue-more-link{
  padding: 1em 0;
  display: flex;
  justify-content: flex-end;
}

#ISSUE.issue .post-contents-title {
  margin-top: 0.5rem;
  font-weight: bold;
}

#ISSUE.issue .post-contents ol {
  counter-reset: cnt;
  
}

#ISSUE.issue .post-contents ol li {
  position: relative;
  margin: 0.5rem 0;
  padding-left: 2rem;
}

#ISSUE.issue .post-contents ol li::before {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  counter-increment: cnt;
  content: counters(cnt, ".") ". ";
}

#ISSUE.issue .dashed {
  margin: 3rem 0 6rem;
  background: #fff;
  border: 0.1rem dashed #00aeef;
}
#ISSUE.issue .block-txt {
  display: block;
  width: 90%;
  margin: 0 auto;
  padding: 2rem 0;
}



@media screen and (min-width: 1001px) {
  


}/* End min 1001 */




@media screen and (max-width: 1000px) {

}/* End max 1000 */

@media screen and (min-width: 641px) {
#ISSUE.issue .movie {
  max-width: 40rem;
  height: 23rem;
}
}
@media screen and (min-width: 768px) {
#ISSUE.issue .movie {
    max-width: 64rem;
    height: 36rem;
  }
  
  #ISSUE.issue ul.post-list li.post .post-body {
    max-width: 72rem;
    padding: 5rem 0 7rem
  }
  
  #ISSUE.issue .post-title {
    margin-top: 2rem;
  }
  
  #ISSUE.issue .post-txt {
    display: inherit;
  }  
  
  #ISSUE.issue ul.post-list li.post .post-contents {
    margin: 2rem auto 4rem;
    padding: 2.5rem;
  }
  #ISSUE.issue .post-contents ol li {
    margin: 1rem 0;
  }
  
  #ISSUE.issue .dashed {
    margin: 6rem 0 9rem
  }

}



