@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Yusei+Magic&display=swap");
/* fontサイズ・バリエーション */
div,
footer,
img,
li,
nav,
p,
section,
table,
table tr td,
table tr th,
ul {
  box-sizing: border-box;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  line-height: 1.8;
  word-break: break-word;
  color: #333;
  letter-spacing: 0.09em;
  overflow-x: hidden;
  opacity: 0;
}

a {
  color: #c950ff;
  text-decoration: underline;
  transition: all 0.2s;
}
a:active, a:hover {
  color: #ff20ae;
}
a img {
  transition: transform 0.3s ease;
}
a img:hover {
  transform: scale(1.05); /* 5%拡大 */
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* fontサイズ・カラーバリエーション */
.bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
  font-weight: 800;
}

.red {
  color: #e3065f;
}

ul.movieList a {
  text-decoration: none;
}
ul.movieList .linktitle {
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  padding: 5px 5px 8px 5px;
  font-size: 1.2em;
  text-align: left;
  border-bottom: 1px solid #fff;
}

/* 基本id、横幅指定など */
#wrapper {
  margin: 0 auto;
}

#wrapper img {
  max-width: 100%;
}

article {
  margin: 0 auto;
  padding: 5% 3%;
  max-width: 1280px;
}

/* ふわっと表示させる用 */
/* 下から */
.js-load_effect {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 1s;
}
.js-load_effect.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* 左から */
.js-load_effect_x {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50px);
  transition: all 1s;
}
.js-load_effect_x.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
  transition-delay: 0.4s;
}

.flex-parent {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}

.credit {
  background-color: #000;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 50px 0;
}/*# sourceMappingURL=common.css.map */