.slide {
  position: relative;
}

.slide-char {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  width: 40%;
  font-size: 200%;
  color: rgb(var(--blue));
  font-weight: bold;
  text-shadow:
    2px 2px 0 rgb(var(--white)),
    -2px 2px 0 rgb(var(--white)),
    2px -2px 0 rgb(var(--white)),
    -2px -2px 0 rgb(var(--white)),
    1px 1px 0 rgb(var(--white)),
    -1px 1px 0 rgb(var(--white)),
    1px -1px 0 rgb(var(--white)),
    -1px -1px 0 rgb(var(--white));
}

.slide-modal {
  display: flex;
  background-color: rgba(var(--blue), 0.7);
  position: absolute;
  bottom: 0;
  width: 100%;
  color: rgb(var(--white));
  z-index: 10;
}

.slide-modal-char {
  padding: 20px 0 20px 30px;
  width: 70%;
}

.slide-modal-btn-area {
  width: 30%;
  background-image: url("../image/world-map-all.png");
  background-repeat: no-repeat;
  background-size: 180%;
  background-position: left;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-modal-btn {
  width: 80%;
  max-width: 200px;
  margin: auto 0px;
  text-align: center;
  display: block;
  padding: 8px 0;
  font-weight: bold;
  color: rgb(var(--blue));
  background-color: rgb(var(--white));
  border-radius: 24px;
  border: 1.6px solid rgb(var(--blue));
  z-index: 10;
}

.category-world-logo {
  position: absolute;
  max-width: 90vw;
  top: 0;
  right: 0;
  object-fit: cover;
}

.category-body {
  padding: 50px;
  background-image: url("../image/world-map-all-content.png");
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: center;
  background-color: rgba(var(--white), var(--opacity));
}

.category-contents {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.category-content {
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
  width: calc((100% / 3) - 20px);
  box-sizing: border-box;
}

.category-content a:hover {
  opacity: var(--opacity);
}

.img-deco1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: rgb(var(--blue));
}

.img-deco2 {
  position: absolute;
  width: 20px;
  height: 20px;
  top: -10px;
  left: -10px;
  background: rgb(var(--green));
  opacity: var(--opacity);
}

.category-content-title {
  font-weight: bold;
  font-size: 120%;
  line-height: 1.1;
}

.category-content-body {
  margin: 0 0 8px 0;
  font-size: 100%;
  line-height: 25px;
  color: #333333;
}

.movie-body {
  padding: 5% 0 5% 0;
  background-image: url("../image/world-map-all.png");
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center;
}

  .five-contents-size {
   margin: 0 50px;
  }

/* news-list */
.news-img {
  background-image: url("../image/world-map-all-black.png");
  background-position: left -300px top -20px;
  background-repeat: no-repeat;
  background-size: 600px;
}

.news-area {
  padding: 50px 50px 20px 50px;
}

.news-title {
    width: 100px;
    font-size: 150%;
    padding-left: 3%;
}

.news-list {
  z-index: 10;
  width: 80%;
  margin-top: 0;
  list-style: none;
}

.news-list-item {
  opacity: 1;
  line-height: 1.4;
  padding: 20px 20px 20px 5px;
  transition: 0.3s;
  border-bottom: 1px solid;
}

.news-list-item.is-hidden {
  opacity: 0;
  line-height: 0;
  padding: 0px 10px;
  transition: 0.3s;
}

.open-news-btn,
.close-news-btn {
  text-align: center;
}

.is-btn-hidden {
  display: none;
}

.open-news-btn button,
.close-news-btn button {
  color: rgb(var(--blue));
  border: none;
  cursor: pointer;
}

.close-news-btn button {
}

.news-title-font{
  
}

.news-category-font{
  font-style: italic;
  font-size: smaller;
}

.iframe-responsive {
  border-radius: 16px;
}
.iframe-responsive iframe {
  border-radius: 16px;
}

.movie-description{
  padding: 0 22% 0 22%;
  font-size: 100%;
  line-height: 25px;
  color: #333333;
}

/* SPサイズ */
@media screen and (max-width: 960px) {
  .slide-char {
    width: 60%;
    top: 60%;
    right: 10px;
    font-size: 150%;
    text-shadow:
       2px  2px 0px rgb(var(--white)),
      -2px  2px 0px rgb(var(--white)),
       2px -2px 0px rgb(var(--white)),
      -2px -2px 0px rgb(var(--white)),
       2px  0px 0px rgb(var(--white)),
       0px  2px 0px rgb(var(--white)),
      -2px  0px 0px rgb(var(--white)),
       0px -2px 0px rgb(var(--white));
  }

  .slide-modal {
    position: relative;
    flex-wrap: wrap;
    background-image: url("../image/world-map-gray.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: left;
    background-color: rgb(var(--blue));
    mix-blend-mode: multiply;
  }
  .slide-modal::before {
    content: "";
    /*background-color: rgba(0, 0, 0, 0.2);*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
  }

  .slide-modal-char {
    width: 100%;
    font-size: 130%;
    z-index: 10;
    text-align: center;
    padding: 3% 8% 3% 8%;
  }

  .slide-modal-btn-area {
    width: 100%;
    background: none;
    padding-bottom: 20px;
  }

  /* news-list */
  .news-list {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }

  .news-list-item {
    line-height: 1.5;
    padding: 5% 5% 5% 1%;
  }

  .news-area > .flex {
    flex-wrap: wrap;
  }

  .news-img {
    background: none;
  }

.news-title {
    padding-left: 0;
}

.news-area {
    padding: 10% 5% 5% 5%;
}

  .open-news-btn,
  .close-news-btn {
    margin-left: 0;
  }

  .category-content {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 0px;
	gap: 0;
  }

  .movie-body .width-half {
    width: 100%;
  }

  .category-body,
  .movie-body {
    background-position: top;
    background-size: 150%;
    padding: 10% 1% 10% 1%;
  }

  .iframe-responsive {
    position: relative;
    margin-left: 10%;
    padding: calc(540 / 960 * 100%) 0 0;
  }

  .iframe-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
  }

.movie-description{
  padding: 0 8% 0 8%;
}

}
