@charset "utf-8";

/* CSS Document */
#robo-sansuke {
  background-color: #d7fede;
  background-image: url("../img/body_bg.png");
  background-size: 100%;
  background-repeat: repeat;
}

#robo-sansuke a:hover {
  transform: scale(1.1, 1.1);
}

@media screen and (max-width: 768px) {
  #robo-sansuke {
    background-color: #d7fede;
    background-image: url("../img/body_bg_sp.png");
    background-size: 100%;
    background-repeat: repeat;
  }
}

/* header
----------------------------------------- */
header {
  position: fixed;
  top: 0;
  z-index: 103;
}

header .logo {
  width: 9rem;
  position: fixed;
  top: 2rem;
  left: 4.5rem;
}

header .side_fix_navi {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  opacity: 0;
  -webkit-transition: all .6s;
  transition: all .6s;
}

header .side_fix_navi.is_show {
  transform: translate(0, -50%);
  opacity: 1;
}

header .side_fix_navi .side_fix_navi_list {}

header .side_fix_navi .side_fix_navi_list>li:not(:last-child) {
  border-bottom: 1px solid #FFFFFF;
}

header .side_fix_navi .side_fix_navi_list>li a {
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: flex-end;
  flex-wrap: wrap;
  background-color: #008160;
}

header .side_fix_navi .side_fix_navi_list>li a span {
  width: 100%;
  height: 3.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.1;
  color: #cfffd6;
  text-align: center;
}

header .side_fix_navi .side_fix_navi_list>li a img {
  width: 3.4rem;
  height: auto;
}

header .side_fix_navi .side_fix_navi_list>li.opencampus a,
header .side_fix_navi .side_fix_navi_list>li.contact a {
  background-color: #ff473d;
}

header .side_fix_navi .side_fix_navi_list>li.opencampus a span,
header .side_fix_navi .side_fix_navi_list>li.contact a span {
  color: #fff096;
}

header .side_fix_navi .side_fix_navi_list>li.opencampus a img {
  width: 2.9rem;
  height: auto;
}

header .side_fix_navi .side_fix_navi_list>li.contact a img {
  width: 3.9rem;
  height: auto;
}

@media only screen and (max-width: 768px) {
  #topmain {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
  }

  header .logo {
    width: 7rem;
    top: 1.5rem;
    left: 2rem;
  }

  header .side_fix_navi {
    position: fixed;
    top: auto;
    bottom: 0;
    right: 0;
    transform: translate(0, 100%);
    width: 100%;
  }

  header .side_fix_navi.is_show {
    transform: translate(0, 0);
  }

  header .side_fix_navi .side_fix_navi_list {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    background-color: #FFFFFF;
  }

  header .side_fix_navi .side_fix_navi_list>li {
    /*width: 16.6667%;*/
    width: 25%;
  }

  header .side_fix_navi .side_fix_navi_list>li:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid #FFFFFF;
  }

  header .side_fix_navi .side_fix_navi_list>li a {
    width: 100%;
    height: 6rem;
    align-content: center;
  }

  header .side_fix_navi .side_fix_navi_list>li a span {
    width: 100%;
    height: 2.3rem;
    font-size: 0.8rem;
    letter-spacing: 0;
    line-height: 1;
  }

  header .side_fix_navi .side_fix_navi_list>li a img {
    width: 2.7rem;
    height: auto;
  }

  header .side_fix_navi .side_fix_navi_list>li.opencampus a img {
    width: 2.3rem;
    height: auto;
  }

  header .side_fix_navi .side_fix_navi_list>li.contact a img {
    width: 3.1rem;
    height: auto;
  }
}

/* #topmain
----------------------------------------- */
#topmain {
  height: 100vh;
  z-index: 1;
  position: relative;
  background: url(../img/topmain_bg.jpg) no-repeat center center;
  background-size: cover;
}

#topmain h1 {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 98%;
  max-width: 80rem;
}

#topmain .pagedown_wrap {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
  opacity: 0;
}

#topmain .pagedown {
  display: block;
  width: 9.5rem;
  height: 5.5rem;
  background: url(../img/pagedown.png) no-repeat center center;
  background-size: contain;
  -webkit-animation: pd_anim 3s linear infinite;
  animation: pd_anim 3s linear infinite;
  transform-origin: 50% 50%;
  -webkit-transition: all .6s;
  transition: all .6s;
}

#topmain .pagedown:hover {
  bottom: 1.5rem;
}

@keyframes pd_anim {
  0% {
    transform: translateY(0)
  }

  25% {
    transform: translateY(-6px)
  }

  50% {
    transform: translateY(0)
  }

  75% {
    transform: translateY(6px)
  }

  100% {
    transform: translateY(0)
  }
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media only screen and (max-width: 768px) {
  #topmain {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background: url(../img/topmain_bg_sp.jpg) no-repeat center center;
    background-size: cover;
    -webkit-transition: all .6s;
    transition: all .6s;
  }

  #topmain h1 {
    max-width: 35rem;
  }

  #topmain .pagedown_wrap {
    bottom: 2rem;
  }

  #topmain .pagedown_wrap:hover {
    bottom: 1rem;
  }

  #topmain .pagedown {
    width: 7rem;
    height: 4rem;
  }
}

/* #page_navi
----------------------------------------- */
#page_navi {
  padding-top: 10rem;
}

#page_navi .inner {
  max-width: 100rem;
}

#page_navi .page_navi_list {
  width: 100%;
  background-color: #008160;
  border-radius: 10rem;
  justify-content: center;
}

#page_navi .page_navi_list>li {}

#page_navi .page_navi_list>li:not(:last-child) {
  margin-right: 5rem;
}

#page_navi .page_navi_list>li a {
  width: 20rem;
  height: 7.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  text-align: center;
}

#page_navi .page_navi_list>li a:hover {
  opacity: 1;
  transform: scale(1.1, 1.1);
}

#page_navi .page_navi_list>li.character a img {
  width: 17.8rem;
  height: auto;
}

#page_navi .page_navi_list>li.episode a img {
  width: 13.5rem;
  height: auto;
}

#page_navi .page_navi_list>li.more a img {
  width: 10.1rem;
  height: auto;
}

#page_navi .page_navi_list>li a span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  color: #FFFFFF;
  margin-top: 0.8rem;
}

@media only screen and (max-width: 768px) {
  #page_navi {
    padding-top: 4.5rem;
  }

  #page_navi .inner {}

  #page_navi .page_navi_list {
    width: 100%;
    background-color: transparent;
    border-radius: 0;
    justify-content: center;
  }

  #page_navi .page_navi_list>li {}

  #page_navi .page_navi_list>li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  #page_navi .page_navi_list>li a {
    width: 34rem;
    height: 5rem;
    background-color: #008160;
    border: 2px solid #FFFFFF;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  #page_navi .page_navi_list>li.character a img {
    width: 12rem;
    height: auto;
  }

  #page_navi .page_navi_list>li.episode a img {
    width: 9.1rem;
    height: auto;
  }

  #page_navi .page_navi_list>li.more a img {
    width: 6.8rem;
    height: auto;
  }

  #page_navi .page_navi_list>li a span {
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }
}

/* #latest_movie
----------------------------------------- */
#latest_movie {
  padding-top: 10rem;
}

#latest_movie .inner {
  max-width: 82rem;
}

#latest_movie h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 3rem;
}

#latest_movie .top_movie {
  width: 100%;
  max-width: 72rem;
  margin: auto;
  margin-bottom: 6rem;
}

#latest_movie .movie_con {
  overflow: hidden;
  border-radius: 3rem;
}

#latest_movie .movie_con .movie_wrap {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}

#latest_movie .movie_con .movie_wrap iframe {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 102%;
  height: 102%;
}

#latest_movie .movie_con .info_wrap {
  width: 100%;
  background-color: #FFFFFF;
  padding: 1.5rem 2rem;
}

#latest_movie .movie_con .info_wrap h3 {
  font-size: 1.8rem;
  line-height: 1;
}

#latest_movie .movie_con .info_wrap h3 span {
  font-size: 1.4rem;
  display: block;
  margin-top: 0.8rem;
}

#latest_movie .top_movie .movie_con .info_wrap {
  padding: 2.5rem 4rem;
}

#latest_movie .top_movie .movie_con .info_wrap h3 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

#latest_movie .top_movie .movie_con .info_wrap h3 span {
  display: inline-block;
  font-size: 2.0rem;
  margin-left: 1rem;
}

#latest_movie .top_movie .movie_con .info_wrap .txt_wrap {
  font-size: 1.8rem;
  line-height: 1.45;
  color: #959494;
  text-align: left;
}

#latest_movie .latest_video_list {
  width: 100%;
}

#latest_movie .latest_video_list li {
  margin: 0 2rem;
}

#latest_movie .prev {
  width: 7rem;
  position: absolute;
  top: 50%;
  left: -2rem;
  transform: translate(-100%, -50%);
  z-index: 2;
}

#latest_movie .next {
  width: 7rem;
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translate(100%, -50%);
  z-index: 2;
}

@media only screen and (max-width: 768px) {
  #latest_movie {
    padding-top: 5rem;
  }

  #latest_movie .inner {
    width: 100%;
  }

  #latest_movie h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  #latest_movie .top_movie {
    width: 100%;
    max-width: 34rem;
    margin: auto;
    margin-bottom: 3.5rem;
  }

  #latest_movie .movie_con {
    overflow: hidden;
    border-radius: 1.5rem;
    background-color: #FFFFFF;
  }

  #latest_movie .movie_con .info_wrap {
    width: 100%;
    background-color: #FFFFFF;
    padding: 1.5rem;
  }

  #latest_movie .movie_con .info_wrap h3 {
    font-size: 1.5rem;
  }

  #latest_movie .movie_con .info_wrap h3 span {
    font-size: 1.2rem;
    margin-top: 0.4rem;
  }

  #latest_movie .top_movie .movie_con .info_wrap {
    padding: 2rem 2rem;
  }

  #latest_movie .top_movie .movie_con .info_wrap h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  #latest_movie .top_movie .movie_con .info_wrap h3 span {
    display: inline-block;
    font-size: 1.4rem;
    margin-left: 1rem;
  }

  #latest_movie .top_movie .movie_con .info_wrap .txt_wrap {
    font-size: 1.2rem;
  }

  #latest_movie .latest_video_list {
    width: 100%;
  }

  #latest_movie .latest_video_list li {
    max-width: 18.2rem;
    margin: 0 0.8rem;
  }

  #latest_movie .prev {
    width: 4.5rem;
    position: absolute;
    top: auto;
    bottom: -2.5rem;
    left: 2rem;
    transform: translate(0, 100%);
    z-index: 2;
  }

  #latest_movie .next {
    width: 4.5rem;
    position: absolute;
    top: auto;
    bottom: -2.5rem;
    right: 2rem;
    transform: translate(0, 100%);
    z-index: 2;
  }
}

/* #about
----------------------------------------- */
#about {
  padding-top: 12rem;
}

#about .inner {
  max-width: 72rem;
}

#about .txt_wrap {
  text-align: center;
  font-size: 2.0rem;
  margin-bottom: 5rem;
}

#about .img_wrap {}

@media only screen and (max-width: 768px) {
  #about {
    padding-top: 6rem;
  }

  #about .inner {
    width: 100%;
  }

  #about .txt_wrap {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 3.5rem;
  }

  #about .img_wrap {
    width: 100%;
  }
}

/* #character
----------------------------------------- */
#character {
  padding-top: 8rem;
}

#character .inner {
  max-width: 72rem;
}

#character h2 {
  width: 100%;
  max-width: 34.2rem;
  margin: auto;
  margin-bottom: 9rem;
}

#character .character_wrap {
  align-items: center;
}

#character .character_wrap .txt_wrap {
  width: -webkit-calc(360 / 720 * 100%);
  width: calc(360 / 720 * 100%);
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.6875;
}

#character .character_wrap .txt_wrap h3 {
  font-size: 3.8rem;
  margin-bottom: 1rem;
}

#character .character_wrap .img_wrap {
  width: -webkit-calc(340 / 720 * 100%);
  width: calc(340 / 720 * 100%);
}

#character .character_wrap.robo .img_wrap {
  text-align: left;
}

#character .character_wrap.robo .img_wrap img {
  width: 30.9rem;
  height: auto;
}

#character .character_wrap.sansuke .img_wrap {
  text-align: center;
}

#character .character_wrap.sansuke .img_wrap img {
  width: 28rem;
  height: auto;
}

#character .character_wrap.robo {
  margin-bottom: 8rem;
}

@media only screen and (max-width: 768px) {
  #character {
    padding-top: 4rem;
  }

  #character .inner {}

  #character h2 {
    max-width: 20.5rem;
    margin: auto;
    margin-bottom: 2.5rem;
  }

  #character .character_wrap {
    align-items: center;
  }

  #character .character_wrap .txt_wrap {
    width: 100%;
  }

  #character .character_wrap .txt_wrap h3 {
    font-size: 2.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  #character .character_wrap .img_wrap {
    width: 100%;
  }

  #character .character_wrap.robo .img_wrap {
    text-align: center;
  }

  #character .character_wrap.robo .img_wrap img {
    width: 21.6rem;
    height: auto;
  }

  #character .character_wrap.sansuke .img_wrap {
    text-align: center;
  }

  #character .character_wrap.sansuke .img_wrap img {
    width: 19.6rem;
    height: auto;
  }

  #character .character_wrap.robo {
    margin-bottom: 6rem;
  }

  #character .character_wrap.sansuke {
    flex-flow: column-reverse;
  }
}

/* #episode
----------------------------------------- */
#episode {
  padding-top: 16rem;
}

#episode .inner {
  max-width: 80rem;
}

#episode h2 {
  width: 100%;
  max-width: 26.4rem;
  margin: auto;
  margin-bottom: 10rem;
}

#episode .episode_navi {
  margin-bottom: 2rem;
}

#episode .episode_navi>li {
  margin: 0 1rem 1.8rem;
}

#episode .episode_navi>li a {
  width: 38rem;
  height: 5.5rem;
  padding-left: 2.5rem;
  box-sizing: border-box;
  border: 2px solid #0a6b4c;
  border-radius: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #FFFFFF;
  -webkit-transition: all .6s;
  transition: all .6s;
}

#episode .episode_navi>li:nth-child(odd) a {
  background-color: #fff38e;
}

#episode .episode_navi>li:nth-child(odd) a:hover {
  opacity: 1;
  background-color: #FFFFFF;
}

#episode .episode_navi>li:nth-child(even) a:hover {
  opacity: 1;
  background-color: #fff38e;
}

#episode .episode_navi>li a img {
  width: 3.6rem;
  height: auto;
  margin-right: 1.2rem;
}

#episode .episode_navi>li a span {
  font-size: 2rem;
  color: #0a6b4c;
}

#episode .episode_wrap {
  margin-top: 14rem;
  border-radius: 3rem;
  background-color: #FFFFFF;
  padding: 7rem 0 9rem;
}

#episode #episode4 {
  /* display: none; */
}

#episode .episode_wrap:nth-child(odd) {
  background-color: #fff38e;
}

#episode .episode_wrap .inner {
  width: 100%;
  max-width: 61rem;
  margin: auto;
  position: relative;
}

#episode .episode_wrap .number {
  width: 13.7rem;
  height: auto;
  position: absolute;
  top: -7rem;
  left: -2.5rem;
  transform: translate(0, -60%);
}

#episode .episode_wrap h3 {
  font-size: 4rem;
  letter-spacing: 0.02em;
  line-height: 1.325;
  text-align: center;
  margin-bottom: 5rem;
}

#episode .episode_wrap .movie_con:not(:last-child) {
  margin-bottom: 6rem;
}

#episode .episode_wrap .movie_wrap {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

#episode .episode_wrap .movie_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#episode .episode_wrap .coming_soon_wrap {
  margin-bottom: 3rem;
}

#episode .episode_wrap .info_wrap {}

#episode .episode_wrap .info_wrap h4 {
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 1.325;
  text-align: left;
  margin-bottom: 1.5rem;
}

#episode .episode_wrap .info_wrap h4 span {
  font-size: 2.0rem;
  margin-left: 1.0rem;
}

#episode .episode_wrap .info_wrap .tag_list {
  justify-content: flex-start;
  margin-bottom: 2rem;
}

#episode .episode_wrap .info_wrap .tag_list>li:not(:last-child) {
  margin-right: 1.5rem;
}

#episode .episode_wrap .info_wrap .tag_list>li span {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 10px;
  background-color: rgba(10, 107, 76, 0.15);
  color: #0a6b4c;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  line-height: 1;
}

#episode .episode_wrap .txt_wrap {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1.6875;
  text-align: left;
}

#episode .episode_wrap .other_movie_wrap {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

#episode .episode_wrap .other_movie_list>li:not(:last-child) {
  padding-bottom: 2rem;
}

#episode .episode_wrap .other_movie_list>li .other_movie_wrap {
  box-sizing: border-box;
  border: 2px solid #0a6b4c;
  border-radius: 2rem;
  padding: 1.5rem 2rem;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#episode .episode_wrap .other_movie_list>li .other_movie_wrap .other_movie {
  width: 13rem;
  margin-right: 2rem;
}

#episode .episode_wrap .other_movie_list>li .other_movie_wrap .movie_wrap {
  margin-bottom: 0;
}

#episode .episode_wrap .other_movie_list>li .other_movie_wrap .info_wrap {
  padding: 0;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

#episode .episode_wrap .other_movie_list>li .other_movie_wrap .info_wrap span {
  display: block;
  font-size: 1.6rem;
  margin-top: 0.8rem;
}

#episode .episode_wrap .talk_wrap {
  padding-top: 4rem;
  position: relative;
}

#episode .episode_wrap .talk_wrap .ttl {
  padding: 2rem;
  background-color: rgba(255, 71, 61, 0.20);
  text-align: center;
  font-size: 1.6rem;
  color: #ff473d;
}

#episode .episode_wrap .talk_wrap .talk_list {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

#episode .episode_wrap .talk_wrap .talk_list>li {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

#episode .episode_wrap .talk_wrap .talk_list>li:nth-child(odd) {}

#episode .episode_wrap .talk_wrap .talk_list>li:nth-child(even) {
  flex-flow: row-reverse;
}

#episode .episode_wrap .talk_wrap .talk_list>li:not(:last-child) {
  margin-bottom: 3rem;
}

#episode .episode_wrap .talk_wrap .talk_list>li .icon_wrap {
  width: 8rem;
  min-width: 8rem;
  text-align: center;
}

#episode .episode_wrap .talk_wrap .talk_list>li:nth-child(odd) .icon_wrap {
  margin-right: 3rem;
}

#episode .episode_wrap .talk_wrap .talk_list>li:nth-child(even) .icon_wrap {
  margin-left: 3rem;
}

#episode .episode_wrap .talk_wrap .talk_list>li .icon_wrap span {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 0.5rem;
}

#episode .episode_wrap .talk_wrap .talk_list>li .talk_wrap {
  width: 100%;
  padding: 2rem;
  background-color: #fff096;
  border-radius: 1rem;
  position: relative;
  text-align: left;
}

#episode .episode_wrap .talk_wrap .talk_list>li .talk_wrap::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8.5px 17px 8.5px 0;
  border-color: transparent #fff096 transparent transparent;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-98%, -50%);
}

#episode .episode_wrap .talk_wrap .talk_list>li:nth-child(even) .talk_wrap::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8.5px 0 8.5px 17px;
  border-color: transparent transparent transparent #fff096;
  position: absolute;
  top: 50%;
  left: auto;
  right: 0;
  transform: translate(98%, -50%);
}

#episode .episode_wrap:nth-child(odd) .talk_wrap .talk_list>li .talk_wrap {
  background-color: #FFFFFF;
}

#episode .episode_wrap:nth-child(odd) .talk_wrap .talk_list>li .talk_wrap::before {
  border-color: transparent #FFFFFF transparent transparent;
}

#episode .episode_wrap:nth-child(odd) .talk_wrap .talk_list>li:nth-child(even) .talk_wrap::before {
  border-color: transparent transparent transparent #FFFFFF;
}

#episode .episode_wrap .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40rem;
  height: 6rem;
  border-radius: 6rem;
  background-color: #008160;
  margin: auto;
  margin-top: 8rem;
  color: #FFFFFF;
  font-size: 1.8rem;
}

#episode .episode_wrap .btn::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 2rem;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 2.1rem;
  height: 1.5rem;
  background: url(../img/arrow.png) no-repeat center center;
  background-size: cover;
  -webkit-transition: all .6s;
  transition: all .6s;
}

#episode .character {
  position: absolute;
  -webkit-transition: all .6s;
  transition: all .6s;
  z-index: 100;
}

#episode .character1 {
  bottom: 6rem;
  left: -13rem;
  width: 17rem;
  height: 16.4rem;
}

#episode .character2 {
  bottom: 23rem;
  right: -16rem;
  width: 11.7rem;
  height: 9.7rem
}

#episode .character3 {
  bottom: 18rem;
  left: -8.5rem;
  width: 12.7rem;
  height: 13.3rem;
}

#episode .character4 {
  bottom: 31rem;
  right: -13.7rem;
  width: 13.9rem;
  height: 9.5rem
}

#episode .character5 {
  bottom: 12rem;
  left: -4.5rem;
  width: 11rem;
  height: 15.9rem;
}

#episode .character6 {
  bottom: 71rem;
  right: -7.5rem;
  width: 16rem;
  height: 6.9rem
}

#episode .character7 {
  bottom: 60rem;
  left: -9.5rem;
  width: 16rem;
  height: 10.8rem;
}

#episode .character8 {
  bottom: 26.5rem;
  right: -5rem;
  width: 13.2rem;
  height: 7.9rem
}

@media only screen and (max-width: 768px) {
  #episode {
    padding-top: 7rem;
  }

  #episode h2 {
    width: 100%;
    max-width: 15.8rem;
    margin: auto;
    margin-bottom: 3.5rem;
  }

  #episode .episode_navi {
    margin-bottom: 0;
  }

  #episode .episode_navi>li {
    margin: 0 0 1.8rem;
  }

  #episode .episode_navi>li a {
    width: 34rem;
    height: 5.5rem;
    padding-left: 2.5rem;
    box-sizing: border-box;
    border: 2px solid #0a6b4c;
    border-radius: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #FFFFFF;
    -webkit-transition: all .6s;
    transition: all .6s;
  }

  #episode .episode_navi>li a img {
    width: 2.9rem;
    height: auto;
    margin-right: 0.8rem;
  }

  #episode .episode_navi>li a span {
    font-size: 1.6rem;
    color: #0a6b4c;
  }

  #episode .episode_wrap {
    margin-top: 9rem;
    border-radius: 1.5rem;
    padding: 4rem 0 5rem;
  }

  #episode .episode_wrap .inner {
    max-width: 30rem;
  }

  #episode .episode_wrap .number {
    width: 8.4rem;
    top: -4rem;
    left: -2.0rem;
    transform: translate(0, -60%);
  }

  #episode .episode_wrap h3 {
    font-size: 2.6rem;
    letter-spacing: 0;
    margin-bottom: 2.5rem;
  }

  #episode .episode_wrap .movie_con:not(:last-child) {
    margin-bottom: 3rem;
  }

  #episode .episode_wrap .movie_wrap {
    margin-bottom: 1.5rem;
  }

  #episode .episode_wrap .coming_soon_wrap {
    margin-bottom: 3rem;
  }

  #episode .episode_wrap .info_wrap {}

  #episode .episode_wrap .info_wrap h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  #episode .episode_wrap .info_wrap h4 span {
    font-size: 1.4rem;
    margin-left: 0.5rem;
  }

  #episode .episode_wrap .info_wrap .tag_list {
    justify-content: flex-start;
    margin-bottom: 1rem;
  }

  #episode .episode_wrap .info_wrap .tag_list>li:not(:last-child) {
    margin-right: 1.0rem;
  }

  #episode .episode_wrap .info_wrap .tag_list>li span {
    padding: 0.5rem 0.8rem;
    background-color: rgba(10, 107, 76, 0.15);
    color: #0a6b4c;
    font-size: 1.0rem;
  }

  #episode .episode_wrap .txt_wrap {
    font-size: 1.3rem;
  }

  #episode .episode_wrap .other_movie_wrap {
    padding-top: 2rem;
    padding-bottom: 0;
  }

  #episode .episode_wrap .other_movie_list>li:not(:last-child) {
    padding-bottom: 1.5rem;
  }

  #episode .episode_wrap .other_movie_list>li .other_movie_wrap {
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
  }

  #episode .episode_wrap .other_movie_list>li .other_movie_wrap .other_movie {
    width: 7.2rem;
    margin-right: 1.5rem;
  }

  #episode .episode_wrap .other_movie_list>li .other_movie_wrap .movie_wrap {
    margin-bottom: 0;
  }

  #episode .episode_wrap .other_movie_list>li .other_movie_wrap .info_wrap {
    font-size: 1.4rem;
  }

  #episode .episode_wrap .other_movie_list>li .other_movie_wrap .info_wrap span {
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }

  #episode .episode_wrap .talk_wrap {
    padding-top: 2.5rem;
  }

  #episode .episode_wrap .talk_wrap .ttl {
    padding: 1.5rem;
    background-color: rgba(255, 71, 61, 0.20);
    text-align: center;
    font-size: 1.2rem;
    color: #ff473d;
  }

  #episode .episode_wrap .talk_wrap .talk_list {
    margin-top: 2.5rem;
  }

  #episode .episode_wrap .talk_wrap .talk_list>li:not(:last-child) {
    margin-bottom: 1.5rem;
  }

  #episode .episode_wrap .talk_wrap .talk_list>li .icon_wrap {
    width: 4.3rem;
    min-width: 4.3rem;
  }

  #episode .episode_wrap .talk_wrap .talk_list>li:nth-child(odd) .icon_wrap {
    margin-right: 2rem;
  }

  #episode .episode_wrap .talk_wrap .talk_list>li:nth-child(even) .icon_wrap {
    margin-left: 2rem;
  }

  #episode .episode_wrap .talk_wrap .talk_list>li .icon_wrap span {
    font-size: 1.0rem;
    margin-top: 0.25rem;
  }

  #episode .episode_wrap .talk_wrap .talk_list>li .talk_wrap {
    padding: 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.3rem;
  }

  #episode .episode_wrap .talk_wrap .talk_list>li .talk_wrap::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 10px 5px 0;
    border-color: transparent #fff096 transparent transparent;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-98%, -50%);
  }

  #episode .episode_wrap .talk_wrap .talk_list>li:nth-child(even) .talk_wrap::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #fff096;
    position: absolute;
    top: 50%;
    left: auto;
    right: 0;
    transform: translate(98%, -50%);
  }

  #episode .episode_wrap:nth-child(odd) .talk_wrap .talk_list>li .talk_wrap {
    background-color: #FFFFFF;
  }

  #episode .episode_wrap:nth-child(odd) .talk_wrap .talk_list>li .talk_wrap::before {
    border-color: transparent #FFFFFF transparent transparent;
  }

  #episode .episode_wrap:nth-child(odd) .talk_wrap .talk_list>li:nth-child(even) .talk_wrap::before {
    border-color: transparent transparent transparent #FFFFFF;
  }

  #episode .episode_wrap .btn {
    width: 30rem;
    height: 5.5rem;
    margin-top: 5rem;
    font-size: 1.5rem;
  }

  #episode .episode_wrap .btn::after {
    width: 1.8rem;
    height: 1.2rem;
  }

  #episode .character {
    position: absolute;
    -webkit-transition: all .6s;
    transition: all .6s;
  }

  #episode .character1 {
    bottom: 8rem;
    left: -2.5rem;
    width: 9.8rem;
    height: 9.3rem;
  }

  #episode .character2 {
    bottom: 21rem;
    right: -2rem;
    width: 8.6rem;
    height: 3.7rem
  }

  #episode .character3 {
    bottom: 6rem;
    left: -1.8rem;
    width: 7.9rem;
    height: 8.1rem;
  }

  #episode .character4 {
    bottom: 32.5rem;
    right: -1rem;
    width: 7.5rem;
    height: 5.3rem
  }

  #episode .character5 {
    bottom: 7.5rem;
    left: -2.5rem;
    width: 6.3rem;
    height: 9.1rem;
  }

  #episode .character6 {
    bottom: 21.5rem;
    right: -2rem;
    width: 8.6rem;
    height: 3.7rem;
  }

  #episode .character7 {
    bottom: 8rem;
    left: -0.8rem;
    width: 9.4rem;
    height: 6.3rem;
  }

  #episode .character8 {
    bottom: 35.8rem;
    right: -2.3rem;
    width: 7.6rem;
    height: 4.6rem
  }
}

/* #more
----------------------------------------- */
#more {
  padding-top: 14rem;
}

#more .inner {
  max-width: 80rem;
}

#more h2 {
  width: 100%;
  max-width: 19.5rem;
  margin: auto;
  margin-bottom: 5rem;
}

#more .more_list {}

#more .more_list>li {
  width: -webkit-calc(380 / 800 * 100%);
  width: calc(380 / 800 * 100%);
}

#more .more_list>li:not(:last-child) {}

#more .more_list>li a {
  display: block;
}

@media only screen and (max-width: 768px) {
  #more {
    padding-top: 9rem;
  }

  #more .inner {
    width: 21rem;
  }

  #more h2 {
    max-width: 11.6rem;
    margin-bottom: 3rem;
  }

  #more .more_list {}

  #more .more_list>li {
    width: 100%;
  }

  #more .more_list>li:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}

/*-- FRQ追加　22/05/13 --*/
#episode #episode5 {
  /* display: none; */
}

#latest_movie .movie_con .info_wrap1 {
  width: 100%;
  background-color: #fff;
  padding: 1.5rem 2rem;
}

#latest_movie .top_movie .movie_con .info_wrap1 h3 {
  font-size: 2.4rem;
}

.info_wrap2 {
  width: 100%;
  height: 66px;
  background-color: #fff;
  padding: 1.5rem 2rem;
}

#latest_movie .movie_con .info_wrap2 h3 {
  font-size: 1.5rem;
  line-height: 1.2;
}

@media only screen and (max-width: 768px) {
  #latest_movie .movie_con .info_wrap2 h3 {
    font-size: 1.4rem;
  }

  #latest_movie .top_movie .movie_con .info_wrap1 h3 {
    font-size: 1.8rem;
  }
}
