* {
  margin: 0;
  padding: 0;
}

.auto_story {
  margin-top: 20px;
}
.auto_story span {
  margin-bottom: 10px;
}

span.ai_label {
  display: flex;
  background: #888;
  color: #222 !important;
  padding: 2px 5px !important;
  font-size: 0.7rem !important;
  border-radius: 5px;
  width: 62px;
  gap: 5px;
}
span.ai_label::before {
  content: "";
  background-image: url("../img/icon_robot.png");
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}

body {
  background-color: #024a73;
  font-family: "Montserrat", "Noto Sans JP", monospace;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.loading {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #024a73;
}
.loading .anim {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  overflow: hidden;
}
.loading .anim span {
  display: block;
  font-size: 100px;
  transform-origin: 50% bottom;
  transform: translate(0, 105%);
  color: #e5361f;
  transition: transform ease-out 0.5s;
}
.loading.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s;
}

.mark {
  color: #e5361f;
  position: absolute;
  background-image: url("../img/mark.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 60px;
  height: 60px;
  text-align: center;
  font-weight: 900;
  line-height: 1;
  font-size: 12px;
  top: -25px;
  right: -10px;
  z-index: 10;
  transition: 0.5s;
}
.mark:hover {
  transform: translate(-2px, -2px);
  filter: drop-shadow(2px 2px 0 #de3f0c);
}
.mark p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mark.gachi {
  background-image: url("../img/mark_gachi.svg");
  color: #ddbc08;
}
.mark.gachi:hover {
  filter: drop-shadow(2px 2px 0 #ddbc08);
}

.com_cnt {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  margin-top: 7px;
}
.com_cnt::before {
  content: "";
  background-image: url("../img/comment.svg");
  background-size: contain;
  width: 17px;
  height: 17px;
  display: inline-block;
  margin-right: 5px;
}

.wrapper {
  color: #d6cead;
  max-width: 100vw;
  padding: 0 4%;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

header {
  width: 100vw;
  text-align: center;
}

h1 {
  font-size: 50px;
  font-weight: 700;
  font-style: normal;
  margin: 10px auto;
}
h1 a {
  color: #de3f0c;
  text-decoration: none;
}
h1 a:hover {
  color: #de3f0c;
  text-decoration: none;
}

.btn {
  margin: 15px 3px;
}

.tag {
  width: 100vw;
  min-height: 80px;
  text-align: center;
  overflow-x: auto;
  transform: translateY(-160px);
  z-index: 0;
  position: sticky;
}
.tag ul {
  padding: 16px;
  white-space: nowrap;
}
.tag ul a {
  background-color: #de3f0c;
  text-decoration: none;
  display: inline-block;
  max-width: 100px;
  border-radius: 5px;
  padding: 12px 32px;
  margin-right: 3px;
  transition: 0.5s;
  position: relative;
}
.tag ul a span {
  color: #d6cead;
  display: block;
  max-width: 136px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 700;
  line-height: 24px;
  font-size: 12px;
}
.tag ul a:hover {
  cursor: pointer;
  filter: drop-shadow(2px 2px 0 #d6cead);
  transform: translate(-2px, -2px);
}
.tag::-webkit-scrollbar {
  display: none;
}

.page-header {
  display: flex;
  box-sizing: border-box;
  justify-content: space-between;
}
.page-header span {
  color: #e5361f;
  font-weight: 700;
  font-style: normal;
}
.page-header-txt {
  transform: translateY(-80px);
  position: relative;
  z-index: 10;
  transition: 1s;
}
.page-header-txt:hover {
  transform: translate(-1.5px, -1.5px);
  filter: drop-shadow(1.5px 1.5px 0 #d6cead);
}

.form-control {
  margin-top: 30px;
  margin-right: 5%;
  width: 40vw;
  border-radius: 30px;
}

form {
  font-family: "Montserrat", "Noto Sans JP", monospace;
}

.btn {
  margin-left: 50vw;
}

#home {
  background-image: url(images/interstellar.jpg);
  min-height: 100vh;
  background-blend-mode: hard-light;
}
#home .page-title {
  text-transform: none;
}

.big-bg {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.home-content {
  text-align: center;
  margin-top: 10%;
}

.page-title {
  color: #d6cead;
  font-size: 5rem;
  font-family: "Courier New", Courier, monospace;
  text-transform: uppercase;
  font-weight: normal;
}

.main-contents {
  position: relative;
  overflow: hidden;
}

.contents {
  display: flex;
  margin: 0 auto;
  padding: 40px 0;
  opacity: 0;
  visibility: hidden;
  position: relative;
}

.category-list {
  width: 15%;
  height: 100vh;
  position: sticky;
  top: 10px;
}
.category-list .category-item {
  display: inline-block;
  padding: 5px;
  text-decoration: none;
  color: #fff;
  background-color: #de3f0c;
  font-size: 0.7rem;
  border-radius: 3px;
}
.category-list .category-item.selected {
  background-color: #ddbc08;
  color: #de3f0c;
}
.category-list .category-item + .category-item {
  margin-top: 10px;
}

.movie-grid {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
}

.movie-item {
  margin-bottom: 20px;
  width: 160px;
  position: relative;
}

.movie-item_jacket {
  width: 150px;
  height: 210px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  transition: 0.5s;
  border-radius: 5px;
}
.movie-item_jacket img {
  width: 150px;
  height: 210px;
}
.movie-item_jacket:hover {
  cursor: pointer;
  filter: drop-shadow(3px 3px 0 #d6cead);
  transform: translate(-3px, -3px);
}
.movie-item_jacket:hover .movie-item_title p {
  color: #ddbc08;
}

.movie-item_title {
  color: #d6cead;
  font-size: 13px;
  text-align: center;
  padding: 10px 2px;
}
.movie-item_title p {
  line-height: 1.5;
  letter-spacing: 0.05em;
  white-space: pre-wrap;
}
.movie-item_title .published_year {
  color: #d6cead;
  background-color: #277851;
  font-size: 0.6rem;
  text-decoration: none;
  margin-top: 3px;
  padding: 0.1em 0.6em;
  border-radius: 2px;
  display: inline-block;
  transition: 0.5s;
  transform-origin: 50% bottom;
}
.movie-item_title .published_year:hover {
  cursor: pointer;
  filter: drop-shadow(2px 2px 0 #d6cead);
  transform: translate(-2px, -2px);
}
.movie-item_title a {
  color: #d6cead;
  text-decoration: none;
  transition: 0.5s;
}

footer {
  width: 100%;
}

.category-type {
  margin-left: 80px;
  color: gray;
  padding-top: 20px;
}

.movie-wrap {
  width: 100%;
  margin: 0;
  padding: 0;
}
.movie-wrap .movie-content {
  width: 90%;
  max-width: 854px;
  margin: 0 auto;
  display: block;
}
.movie-wrap .movie-data {
  display: flex;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
}
.movie-wrap .movie-img {
  width: 40%;
  filter: drop-shadow(3px 3px #d6cead);
}
.movie-wrap .movie-img img {
  width: 100%;
  max-height: 540px;
}
.movie-wrap .movie-info {
  width: 55%;
  display: block;
}
.movie-wrap .movie-ttl {
  color: #d6cead;
}
.movie-wrap h1 {
  letter-spacing: 0.15em;
  padding-bottom: 5px;
  margin: 0;
  text-align: justify;
  white-space: pre-wrap;
  font-size: 2rem;
}
.movie-wrap h3 {
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  margin: 0;
  text-align: justify;
}
.movie-wrap p {
  letter-spacing: 0.1rem;
  text-align: justify;
}
.movie-wrap ul {
  list-style: none;
  padding: 0;
}
.movie-wrap ul li {
  color: #d6cead;
}
.movie-wrap ul li a {
  color: #d6cead;
  background-color: #277851;
  padding: 0.3em 0.7em;
  border-radius: 5px;
  display: inline-block;
  text-decoration: none;
  font-size: 0.8rem;
  transition: 0.5s;
  transform-origin: 50% bottom;
}
.movie-wrap ul li a:hover {
  cursor: pointer;
  filter: drop-shadow(2px 2px 0 #d6cead);
  transform: translate(-2px, -2px);
}
.movie-wrap ul li span {
  color: #d6cead;
  font-size: 0.8rem;
  pointer-events: none;
}
.movie-wrap ul.hashtags {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
}
.movie-wrap ul.hashtags li {
  margin-bottom: 0;
}
.movie-wrap .movie-review {
  background-color: #d6cead;
  position: relative;
  opacity: 0;
  visibility: hidden;
}
.movie-wrap .review-txt {
  margin: 0 auto;
  padding: 30px 0;
  position: relative;
}
.movie-wrap .review-txt pre {
  white-space: pre-wrap;
  line-height: 2em;
  letter-spacing: 0.1rem;
  font-family: "Montserrat", "Noto Sans JP", monospace;
  text-align: justify;
}
.movie-wrap .review-txt::before {
  content: "Review";
  position: absolute;
  top: -17px;
  left: -21%;
  font-size: 1rem;
  padding: 0.5em 1.3em;
  color: #d6cead;
  background-color: #de3f0c;
}
.movie-wrap .movie-date {
  font-size: 0.8rem;
  text-align: right;
}

.movie-hashtags {
  opacity: 0;
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  align-items: center;
}
.movie-hashtags .hashtag {
  color: #e9dab2;
}
.movie-hashtags .ai-badge {
  background: #888;
  border-radius: 0.3rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.8rem;
  color: #222;
}

.comment-wrap {
  opacity: 0;
  visibility: hidden;
}

.post {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 50px;
}
.post + .post {
  margin-top: 15px;
}

.post-wrap {
  display: none;
  align-items: flex-end;
  margin-top: 30px;
  margin-bottom: -20px;
}

.post-icon {
  margin-right: 20px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: relative;
}
.post-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 75%;
}

.post-comment {
  padding: 10px 15px;
  background-color: #d6cead;
  border-radius: 10px;
  max-width: 70%;
}
.post-comment pre {
  white-space: pre-wrap;
}

.post-date {
  margin-top: 5px;
  font-size: 0.6rem;
}

.post-btn {
  border-radius: 50px;
  background-color: #277851;
  color: #d6cead;
  padding: 5px 15px;
  cursor: pointer;
  border: none;
  margin-left: 20px;
  transition: 0.5s;
}
.post-btn:hover {
  cursor: pointer;
  filter: drop-shadow(2px 2px 0 #d6cead);
  transform: translate(-2px, -2px);
}

.icon {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: relative;
  margin-right: 20px;
}
.icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 75%;
}

textarea {
  width: 400px;
  padding: 10px 15px;
  background-color: transparent;
  border: transparent;
  border-bottom: 1px solid #d6cead;
  resize: none;
  color: #d6cead;
  letter-spacing: 0.05em;
}
textarea:focus {
  outline: 0;
}

@media screen and (min-width: 960px) {
  .visible-sp {
    display: none;
  }
  .contents {
    width: 80%;
  }
  .movie-wrap .movie-content {
    padding: 60px 0;
  }
  .movie-wrap .movie-img {
    width: 40%;
  }
  .movie-wrap ul {
    margin-top: 20px;
  }
  .movie-wrap ul li {
    margin-bottom: 1em;
  }
  .movie-wrap ul li span {
    padding-bottom: 0.5em;
  }
  .movie-wrap ul li a {
    margin: 0.5em 5px 0 0;
  }
  .movie-wrap .movie-info {
    margin-top: 0;
  }
  .movie-wrap .movie-review {
    margin-top: 40px;
  }
  .movie-wrap .movie-review .review-txt {
    width: 73%;
    padding: 2em 0;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 2rem;
    margin-top: 5vw;
  }
  .visible-pc {
    display: none;
  }
  /* 20231123update */
  .wrapper {
    padding: 0;
  }
  .contents {
    width: 90%;
    padding: 30px 0;
  }
  .contents .movie-grid {
    justify-content: space-between;
  }
  .category-list {
    display: none;
  }
  .movie-item_title {
    font-size: 0.7rem;
  }
  .movie-grid {
    display: grid;
    grid-template-columns: repeat(3, 30%);
    row-gap: 1.5rem;
    width: 100%;
  }
  .movie-item {
    width: 100%;
    margin-bottom: 0;
  }
  .movie-item_jacket {
    width: 100%;
    height: 37vw;
    min-height: 145px;
  }
  .movie-item_jacket img {
    width: 100%;
    height: 100%;
  }
  .movie-img-wrap {
    display: flex;
    margin-top: 20px;
    justify-content: space-between;
  }
  .movie-img-wrap .movie-about {
    width: 55%;
    color: #d6cead;
  }
  .movie-wrap .movie-content {
    padding: 30px 0;
    max-width: unset;
  }
  .movie-wrap .movie-img {
    width: 45%;
  }
  .movie-wrap .movie-ttl {
    font-size: 0.9rem;
  }
  .movie-wrap h3 {
    font-size: 0.85rem;
  }
  .movie-wrap ul {
    width: 50%;
    margin-top: 0;
  }
  .movie-wrap ul li {
    margin-bottom: 0.5em;
  }
  .movie-wrap ul li span {
    padding-bottom: 0;
  }
  .movie-wrap ul li a {
    margin: 0.1em 5px 0 0;
    line-height: 1.2;
  }
  .movie-wrap ul.hashtags {
    margin-top: 20px;
    flex-wrap: wrap;
    font-size: 0.85rem;
  }
  .movie-wrap .movie-info {
    display: flex;
    margin-top: 20px;
    justify-content: space-between;
    width: 100%;
  }
  .movie-wrap .movie-about {
    margin-top: 20px;
    color: #d6cead;
  }
  .movie-wrap .movie-review {
    width: 100vw;
    transform: translateX(-5%);
    position: relative;
    margin-top: 4rem;
    font-size: 0.85rem;
  }
  .movie-wrap .movie-review .review-txt {
    padding: 2em 20px;
    box-sizing: border-box;
  }
  .movie-wrap .review-txt {
    margin: 0;
  }
  .movie-wrap .review-txt::before {
    top: -17px;
    left: -2%;
    font-size: 0.9rem;
  }
  .movie-data p {
    font-size: 0.85rem;
  }
}/*# sourceMappingURL=style.css.map */