@charset "UTF-8";
/* media query
====================================== */
/* Only output numerical values
/* 数値のみ出力する
====================================== */
/* font $size
====================================== */
/* font-size フォントサイズのrem表示用
====================================== */
img {
  width: 100%;
}

@keyframes elasticity {
  0% {
    top: -100px;
  }
  20% {
    /*transform: scale3d(1.3, 0.7, 1);*/
  }
  40% {
    /*transform: scale3d(0.7, 1.3, 1);*/
  }
  60% {
    /*transform: scale3d(1.1, 0.8, 1);*/
  }
  80% {
    transform: scale3d(1, 1, 1);
    top: 0;
    opacity: 1;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@-moz-keyframes elasticity {
  0% {
    top: -100px;
  }
  20% {
    /*transform: scale3d(1.3, 0.7, 1);*/
  }
  40% {
    /*transform: scale3d(0.7, 1.3, 1);*/
  }
  60% {
    /*transform: scale3d(1.1, 0.8, 1);*/
  }
  80% {
    transform: scale3d(1, 1, 1);
    top: 0;
    opacity: 1;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@-webkit-keyframes elasticity {
  0% {
    top: -100px;
  }
  20% {
    /*transform: scale3d(1.3, 0.7, 1);*/
  }
  40% {
    /*transform: scale3d(0.7, 1.3, 1);*/
  }
  60% {
    /*transform: scale3d(1.1, 0.8, 1);*/
  }
  80% {
    transform: scale3d(1, 1, 1);
    top: 0;
    opacity: 1;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-moz-keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes Fadeout {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes Fadeout {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes Fadeout {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}
@keyframes Fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes Fadeout {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-moz-keyframes Fadeout {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

@media screen and (min-width: 767px) {
  html {
    font-size: 130%;
  }
}
body {
  font-size: 1.4rem;
  overflow-x: hidden;
}

* {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

img {
  width: 100%;
  height: auto;
}

body.fixed {
  position: fixed;
  left: 0;
  width: 100%;
}

.header_padding {
  padding-top: 130px;
}
@media only screen and (max-width: 640px) {
  .header_padding {
    padding-top: 70px;
  }
}

.footer_padding {
  padding-bottom: 130px;
}
@media only screen and (max-width: 640px) {
  .footer_padding {
    padding-bottom: 80px;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 768px;
  min-width: 320px;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  padding: 5px;
  z-index: 8;
  height: 130px;
}
.header--home {
  align-items: flex-start;
}
.header--bottom {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 2px 6px 10px rgba(0, 0, 0, 0.1411764706);
}
@media only screen and (max-width: 640px) {
  .header {
    height: 75px;
  }
}
.header--logo {
  transition: 0.3s;
  width: 22%;
}
.header--logo-home {
  width: 30%;
}
.header--login {
  width: 49%;
}
.header--regist {
  width: 49%;
}
.header--menu, .header--menu-close {
  width: 49%;
}
.header--mylist {
  width: 49%;
}
.header__btn-wrapper {
  width: 30%;
  display: flex;
  justify-content: space-between;
  padding-top: 3px;
}

.modal {
  display: none;
  /* 初期状態 */
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 300;
}
.modal__overlay {
  width: 100%;
  /* 黒背景も画面いっぱいに */
  height: 100vh;
  /* 黒背景も画面いっぱいに */
  background: #59d0bf;
  opacity: 0.95;
}
.modal .header {
  background-color: #fff;
}
.modal__menu {
  position: absolute;
  background-color: transparent;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
  max-width: 768px;
  min-width: 320px;
  height: auto;
}
.modal__cat-link {
  width: 95%;
  margin: 0 auto 1rem auto;
}
.modal__cat-link h2 {
  margin-bottom: 0.5rem;
}
.modal__cat-link > div {
  display: flex;
  flex-wrap: wrap;
}
.modal__cat-link .link-item {
  text-decoration: none;
  margin-left: 1rem;
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 0.5rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 1rem;
  color: #000;
}
.modal__menulist {
  padding-top: 150px;
  height: 90vh;
  overflow: auto;
}
.modal__menulist .info_menulist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.modal__menulist .info_menulist a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-right: 1rem;
  font-size: 1.2rem;
}
@media only screen and (max-width: 640px) {
  .modal__menulist {
    padding-top: 100px;
  }
}

.h2_page {
  background-color: #59d0bf;
  color: #fff;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.75rem;
  text-align: center;
}
.h2_page span {
  border-bottom: none;
}

.link_h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.link_h2 a {
  width: 5%;
}

.main_contents {
  width: 95%;
  margin: 0 auto;
}

.movielist {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2rem;
}
.movielist a p img {
  border: 1px solid #f7f7f7;
}
.movielist__not-item-his {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  background-color: #F4F8F8;
  text-align: center;
}
.movielist__not-item-his dt {
  margin-bottom: 1rem;
}
.movielist__not-item-his dd {
  font-size: 1.2rem;
}
.movielist__item {
  width: 48%;
  margin-bottom: 1.5rem;
  position: relative;
}
.movielist__item--rank {
  padding-top: 2rem;
}
.movielist__item a {
  text-decoration: none;
  display: block;
  color: #1a1a1a;
  transition: 0.3s;
}
.movielist__item a:hover {
  opacity: 0.7;
}
.movielist__cat {
  display: flex;
  flex-wrap: wrap;
}
.movielist__cat a {
  background: #f0f0f0;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: bold;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.3rem;
}
.movielist__title {
  margin-bottom: 0.5rem;
}
.movielist__rankdeco {
  position: absolute;
  width: 20%;
  top: 2%;
  z-index: 6;
}

.movie_category__wrapper {
  background-color: #EFFCFA;
  padding: 2rem 1rem 1rem 1rem;
  display: flex;
  flex-wrap: wrap;
}
.movie_category__wrapper a {
  text-decoration: none;
  margin-left: 1rem;
  background-color: #fff;
  padding: 0.5rem;
  border-radius: 0.5rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 1rem;
}
.movie_category__sort {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
}
.movie_category__sort li {
  width: 30%;
  text-align: center;
  padding: 0.5rem;
  border: 1px solid #C6C6C6;
  background-color: #F0F0F0;
  border-radius: 1rem;
  margin: 0 0.5rem;
}
.movie_category__sort li a {
  text-decoration: none;
}
.movie_category__sort .selected {
  border: 1px solid #59D0BF;
  background-color: #ffffff;
}

.movie_mylist__sort {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
}
.movie_mylist__sort li {
  width: 30%;
  text-align: center;
  padding: 0.5rem;
  background-color: #C3C3C3;
  border-radius: 0.5rem;
  margin: 0 0.5rem;
}
.movie_mylist__sort li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}
.movie_mylist__sort .selected {
  background-color: #59D0BF;
}

.pager {
  width: 95%;
  margin: 1rem auto;
  display: flex;
  justify-content: space-between;
}
.pager > div {
  width: 30%;
}

/*# sourceMappingURL=common.css.map */
