@charset "UTF-8";

html {
  font-size: 62.5%;
}

body {
  color: #4d4d4d;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*--------------------------------------------------------ヘッダー*/
header {
  background: #ff6fa3;
  text-align: center;
}

header a {
  position: relative;
  z-index: 100;
  height: 10rem;

}

header img {
  height: 10rem;
}

.logo {
    height: 10rem;
    line-height: 1px;
}

.logo a {
    display: block;
    height: 10rem;
}

.logo img {
    max-width: 100%;
    vertical-align: bottom;
    margin: auto;
}

/*-------------------------------------basic*/
.basix {
  background: #000;
}

.basic-top {
  display: flex;
  justify-content: center;
  gap: 4rem;
  align-items: center;
}

.basic-top img {
  width: 30%;
  animation: fadeIn 3s ease-out 0s 1 forwards;
}

.top-text {
  width: 30%;
}

.basic-top h1 {
  margin-bottom: 2rem;
  font-size: 3.2rem;
}

.basic-profile h2,
.basic-tag h2,
.basic-movie h2 {
  font-size: 2.4rem;
}

.basic-wrapper ul {
  margin-top: 1rem;
}

.basic-wrapper ul li {
  margin: 1rem 0;
  list-style: none;
}

.basic-profile,
.basic-tag,
.basic-movie {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.basic-tag span {
  opacity: 0;
}

.basic-movie {
  width: 90vw;
  margin: 0 auto;
}

.movie-wrap {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin: 3rem 0 0;
  text-align: center;
}

.movie-content {
  width: 30%;
}

.movie-content img {
  width: 100%;
  border: 1rem ridge brown;
  will-change: transform;
}

.movie-content img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.basic-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 10rem 0;
}

.top-text,
.basic-profile,
.basic-tag,
.basic-movie {
  background:#fff;
  padding: 3rem 3rem;
  font-size: 1.8rem;
  opacity: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.top-text {
  animation: appearance 2s ease 0s 1 forwards;
}

.top-text.animation-start.is-animated,
.basic-profile.animation-start.is-animated,
.basic-tag.animation-start.is-animated,
.basic-movie.animation-start.is-animated{
  animation: appearance 2s ease 0s 1 forwards;
}

.footer-space {
  height: 5rem;
}

footer {
  background: #7266cf;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}

footer p{
  font-size: 1.6rem;
  background: #ffe4ee;
  display: inline-block;
  padding: 5px;
  color: #000;
  border-radius: 5px;
  border-bottom: 5px solid #ff6fa3;
}

@media screen and (min-width: 2000px) {
  .basic-top h1 {
    font-size: 4rem;
  }

  .basic-profile h2,
  .basic-tag h2,
  .basic-movie h2 {
    font-size: 3.2rem;
  }

  .top-text,
  .basic-profile,
  .basic-tag,
  .basic-movie {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 1025px) {
  .top-text {
    width: 40%;
  }
}

@media screen and (max-width: 769px) {
  .top-text {
    width: 50%;
  }

  .basic-top h1 {
    font-size: 2.4rem;
  }

  .basic-profile h2,
  .basic-tag h2,
  .basic-movie h2 {
    font-size: 1.6rem;
  }

  .top-text,
  .basic-profile,
  .basic-tag,
  .basic-movie {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 426px) {
  .basic-top {
    flex-direction: column;
    justify-content: center;
  }

  .basic-top img {
    width: 80%;
    margin-top: -2rem;
    margin-bottom: -5rem;
  }

  .top-text {
    width: 95%;
    margin-top: 1rem;
  }

  .basic-wrapper {
    flex-direction: column;
    gap: 3rem;
  }

  .movie-wrap {
    flex-direction: column;
  }

  .movie-content {
    width: 80%;
    margin: 0 auto 3rem;
  }

  header {
    height: 6rem;
  }

  header img {
    height: 6rem;
  }

  .logo {
      height: 6rem;
      line-height: 1px;
  }

  .logo a {
    height: 6rem;
  }

  .movie-content {
    width: 90%;
  }
}

@supports not (gap: 1rem) {
  .basic-top > *:not(:last-child) {
    margin-right: 4rem;
  }
}