/*
    CENTER

*/

  

/*  COMMON  */
main article { opacity: 0; animation: main-start 0.5s ease 1 forwards; animation-delay: 0.5s; }
@keyframes main-start {
    0%      { transform: translateY(2rem); opacity: 0; }
    100%    { transform: translateY(0); opacity: 1; }
}



/*  MOVIE   */
article.mov { margin: 3rem auto 0; padding: 0 var(--left); width: 100%; height: auto; max-height: 100rem; overflow: hidden; transition: max-height 0.5s ease; }
article.mov:nth-of-type(2) { margin: 6rem auto 0; }
article.mov.collapsed { max-height: 18rem; }

article.mov h3 { display: flex; justify-content: space-between; align-items: center; margin: 0 0 0.5rem 0; padding: 0 0 0 0; width: 100%; height: 2rem; font-size: 1.33rem; font-variation-settings: 'wght' 600; color: var(--color-black); letter-spacing: -1px; }
/*article.mov h3::before { content: ''; position: absolute; left: 0; width: 1rem; height: 1rem; background-color: var(--color-red); border-radius: 50%; }*/

article.mov section.youtube { display: flex; flex-wrap: wrap; align-content: flex-start; margin: 0 0 1rem 0; width: 100%; height: 15rem; }
article.mov section.youtube::before { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background-color: var(--color-divide); }
article.mov section.youtube > iframe { height: 12rem; }

article.mov section.youtube h4 { display: flex; justify-content: space-between; align-items: center; margin: 1rem 0 0.25rem 0; padding: 0 0 0 0.2rem; width: 100%; font-size: 1rem; font-variation-settings: 'wght' 500; color: var(--color-black); line-height: 1rem; }
article.mov section.youtube h4::after { content: 'PLAYTIME - ' attr(data-playtime); font-size: 0.8rem; font-variation-settings: 'wght' 400; color: var(--color-gray); }

article.mov section.youtube div { position: absolute; display: flex; justify-content: center; align-items: center; left: 0; top: 0; width: 100%; height: 12rem; font-size: 1.2rem; font-variation-settings: 'wght' 600; color: rgba(255, 255, 255, 1); background-color: rgba(0, 0, 0, 0.8); z-index: 10; }




/*  MORE    */
article.more button.more { display: block; margin: 0.25rem 0 1rem var(--left); width: 50%; height: 2.5rem; font-size: 0.9rem; font-variation-settings: 'wght' 400; color: rgba(255, 255, 255, 1); background-color: var(--color-black); }
article.more button.more.hide { display: none; }



/*  PC VERSION  */
@media (min-width: 800px) {
    article.mov.collapsed { max-height: unset; }
    main button.more { display: none; }

    article.mov section.youtube { height: 30rem; }
    article.mov section.youtube > iframe { height: 27rem; }
    article.mov section.youtube div { height: 27rem; }
   

}





