@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Cabin&display=swap');

/* ------------------------------
	common
------------------------------ */

@media screen and (min-width: 641px), print {
  html,
  body {
    min-width: 1100px;
  }
}

.page_wrapper{
  margin-top: 88px;
}
@media screen and (max-width: 640px) {
  .page_wrapper{
    margin-top: 50px;
  }
}

#content_wrap {
  font-feature-settings: "palt";
  font-family: "Noto Sans JP";
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #000;
}

#content_wrap * {
  margin: 0;
  padding: 0;
}

#content_wrap img {
  vertical-align: middle !important;
}

#content_wrap .cont_inner {
  margin: 0 auto;
  position: relative;
}

@media screen and (min-width: 641px), print {
  #content_wrap .cont_inner {
    max-width: 1100px;
  }
}

@media screen and (max-width: 640px) {
  #content_wrap .cont_inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ---------- img ---------- */

.img-fluid {
	max-width: 100%;
	height: auto;
}

.img-full {
	width: 100%;
	height: auto;
}

/* ---------- fadein ---------- */

.element {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ---------- modal - movie ---------- */

.modal-video-close-btn {
  right: 0;
  top: -45px;
}

.modal-video-close-btn::before,
.modal-video-close-btn::after {
  margin-top: 0;
}

/* ---------- header ---------- */

#movie header h2,
#comics header h2,
#making header h2,
#chara header h2,
#interview header h2{
  position: absolute;
  z-index: 15;
}

@media screen and (min-width: 641px), print {
  #movie header h2,
  #comics header h2,
  #making header h2,
  #chara header h2,
  #interview header h2{
    width: 296px;
    position: absolute;
    left: -15px;
  }
}

@media screen and (max-width: 640px) {
  #movie header h2,
  #comics header h2,
  #making header h2,
  #chara header h2,
  #interview header h2{
    width: 160px;
    left: -10px;
    top: -50px;
  }
}

/*--------------------------------
	mainv
--------------------------------*/

#mainv {
  position: relative;
  width: 100%;
}

#mainv::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.20);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 10;
}

#mainv #mainv_video {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

#mainv #mainv_video video {
  width: auto;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: 0;
  right: 0;
  transform: translateX(-50%) translateY(-50%);
}

#mainv #mainv_video.is-landscape video {
  height: auto;
  width: 100%;
}

#mainv .mainv_text {
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 15;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
}

#mainv .mainv_text p:first-child {
  font-weight: 700;
  line-height: 1.5;
}

#mainv .mainv_text p:not(:first-child) {
  font-weight: 500;
  line-height: 2;
}

#mainv .mainv_scroll {
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
}

@media screen and (min-width: 641px), print {
  #mainv .mainv_text {
    margin-top: -40px;
    text-shadow: 0px 0px 50px rgba(0,0,0,0.8);
  }
  
  #mainv .mainv_text p:first-child {
    margin-bottom: 25px;
    font-size: 56px;
  }

  #mainv .mainv_text p:nth-child(2) {
    margin-bottom: 30px;
    font-size: 24px;
  }
  
  #mainv .mainv_text p:nth-child(3) {
    font-size: 20px;
  }
  
  #mainv .mainv_scroll {
    width: 46px;
    bottom: 30px;
  }
}

@media screen and (max-width: 640px) {
  #mainv {
    height: 100vw !important;
  }
  
  #mainv .mainv_text {
    margin-top: -20px;
    text-shadow: 0px 0px 25px rgba(0,0,0,0.8);
  }
  
  #mainv .mainv_text p:first-child {
    margin-bottom: 10px;
    font-size: 30px;
  }

  #mainv .mainv_text p:nth-child(2) {
    margin-bottom: 10px;
    font-size: 14px;
  }
  
  #mainv .mainv_text p:nth-child(3) {
    font-size: 12px;
  }
  
  #mainv .mainv_scroll {
    width: 36px;
    bottom: 15px;
  }
}

/* --------- アニメーション ---------- */

@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.anime-fuwafuwa {
  animation: 0.85s fuwafuwa ease-in infinite;
}

/*--------------------------------
	movie
--------------------------------*/

#movie {
  background: #028cd6;
  background: -moz-linear-gradient(45deg,  #0298da 0%, #0280d2 100%);
  background: -webkit-linear-gradient(45deg,  #0298da 0%,#0280d2 100%);
  background: linear-gradient(45deg,  #0298da 0%,#0280d2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0298da', endColorstr='#0280d2', GradientType=1 );
  position: relative;
}

#movie::before {
  content: "";
  display: block;
  position: absolute;
  background: url("../images/movie_bg_title.png") no-repeat center;
  background-size: contain;
}

#movie .movie_wrap {
  background: url("../images/bg_arrow.png") no-repeat right bottom;
  position: relative;
}

#movie .movie_wrap::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
}

#movie .movie_wrap::after {
  border-color: transparent transparent transparent #c6e4ff;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 641px), print {
  #movie::before {
    width: 571px;
    height: 132px;
    margin-right: -583px; 
    right: 50%;
    top: 111px;
  }
  
  #movie .movie_wrap {
    background-size: 535px auto;
    padding-bottom: 175px;
  }
  
  #movie .movie_wrap::after {
    border-width: 110px 0 0 110px;
  }
  
  #movie .cont_inner {
    padding-top: 235px;
  }
  
  #movie .cont_inner header h2 {
    top: -50px;
  }
}

@media screen and (max-width: 640px) {
  #movie::before {
    width: 286px;
    height: 66px;
    right: 0;
    top: 40px;
  }
  
  #movie .movie_wrap {
    background-size: 268px auto;
    padding-bottom: 60px;
  }
  
  #movie .cont_inner {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  
  #movie .movie_wrap::after {
    border-width: 60px 0 0 60px;
  }
}

/* --------- movie_slide ---------- */

#movie_slide .movie_inner .movie_title {
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
  color: #fff;
}

#movie_slide .movie_inner .movie_text {
  font-weight: 400;
  color: #fff;
}

#movie_slide .movie_inner .movie_btn {
  margin: 0 auto;
}

#movie_slide .movie_inner .movie_btn button {
  display: block;
  width: 100%;
  border: none !important;
  position: relative;
  text-decoration: none;
  text-align: center;
}

#movie_slide .movie_inner .movie_btn div:first-child button {
  background-color: #fff;
  color: #000;
}
  
#movie_slide .movie_inner .movie_btn div:last-child button {
  background-color: #000;
  color: #fff;
}

#movie_slide .movie_inner .movie_btn div button::before {
  display: block;
  background-color: #0a52b6;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  color: #fff;
}

#movie_slide .movie_inner .movie_btn div:first-child button::before,
#movie_slide .movie_inner .movie_btn div:last-child button::before {
  min-width: 50px;
  padding: 2px 10px;
}

#movie_slide .movie_inner .movie_btn div:first-child button::before {
  content: "本編";
}

#movie_slide .movie_inner .movie_btn div:last-child button::before {
  content: "Another Story";
}

@media all and (-ms-high-contrast: none) {
  #movie_slide .movie_inner .movie_btn div:last-child button::before {
    letter-spacing: 0;
  }
}

@media screen and (min-width: 641px), print {
  #movie_slide {
    width: 1000px;
    margin: 0 auto;
  }

  #movie_slide .movie_inner .movie_thumb {
    margin-bottom: 35px;
    background-color: #fff;
    cursor: pointer;
  }
  
  #movie_slide .movie_inner .movie_thumb img {
    transition: opacity 0.3s;
  }
  
  #movie_slide .movie_inner .movie_thumb:hover img {
    opacity: 0.75;
  }
  
  #movie_slide .movie_inner .movie_title {
    margin-bottom: 20px;
    font-size: 30px;
  }
  
  #movie_slide .movie_inner .movie_text {
    width: 820px;
    margin: 0 auto 45px;
    font-size: 18px;
    line-height: 2.45;
    letter-spacing: 0.1em;
  }
  
  #movie_slide .movie_inner .movie_btn {
    display: flex;
    justify-content: space-between;
    width: 870px;
  }
  
  #movie_slide .movie_inner .movie_btn div {
    width: 410px;
  }

  #movie_slide .movie_inner .movie_btn button {
    box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 0.2);
    font-size: 22px;
    line-height: 80px;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  
  #movie_slide .movie_inner .movie_btn button:hover {
    opacity: 0.75;
  }
  
  #movie_slide .movie_inner .movie_btn div button::before {
    font-size: 14px;
    line-height: 24px;
  }
}

@media screen and (max-width: 640px) {
  #movie_slide {
    padding: 0 10px;
  }
  
  #movie_slide .movie_inner .movie_thumb {
    margin-bottom: 15px;
  }
  
  #movie_slide .movie_inner .movie_title {
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  #movie_slide .movie_inner .movie_text {
    padding: 0 15px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 2.25;
  }
  
  #movie_slide .movie_inner .movie_btn {
    width: 240px;
  }
  
  #movie_slide .movie_inner .movie_btn div:not(:last-child) {
    margin-bottom: 15px;
  }
  
  #movie_slide .movie_inner .movie_btn button {
    box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.2);
    font-size: 14px;
    line-height: 50px;
  }
  
  #movie_slide .movie_inner .movie_btn div:first-child button::before,
  #movie_slide .movie_inner .movie_btn div:last-child button::before{
    padding: 0px 6px;
  }
  
  #movie_slide .movie_inner .movie_btn div button::before {
    font-size: 11px;
    line-height: 22px;
  }
}

/*--------------------------------
	comics
--------------------------------*/

#comics {
  background-color: #c6e4ff;
}

#comics .comics_inner h3 {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  line-height: 1.5;
  color: #0a52b6;
}

#comics .comics_inner h3::before,
#comics .comics_inner h3::after {
  content: "";
  display: block;
  width: 2px;
  background-color: #0a52b6;
}

#comics .comics_inner h3::before {
  transform: rotate(-28deg);
  margin-right: 0.75em;
}

#comics .comics_inner h3::after {
  transform: rotate(28deg);
  margin-left: 0.75em;
}

#comics .comics_inner .comics_btn button {
  display: block;
  margin: 0 auto;
  background-color: #0a52b6;
  position: relative;
  text-decoration: none;
  text-align: center;
  color: #fff;
}

#comics .comics_inner .comics_btn button::before,
#comics .comics_inner .comics_btn button::after {
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#comics .comics_inner .comics_btn button::before {
  width: 2px;
}

#comics .comics_inner .comics_btn button::after {
  height: 2px;
}

@media screen and (min-width: 641px), print {
  #comics {
    background-image: url("../images/comics_bg_title.png"), url("../images/comics_bg.jpg");
    background-repeat: no-repeat, no-repeat;
    background-position: left center, center bottom;
    background-size: 132px auto, contain;
  }
  
  #comics .comics_inner {
    width: 1000px;
    padding: 165px 0 100px;
    margin: 0 auto;
  }
  
  #comics .cont_inner header h2 {
    top: -100px;
  }
  
  #comics .comics_inner h3 {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 600;
  }
  
  #comics .comics_inner h3::before,
  #comics .comics_inner h3::after {
    height: 33px;
  }
  
  #comics .comics_inner .comics_thumb {
    margin-bottom: 35px;
    background-color: #fff;
    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
  }
  
  #comics .comics_inner .comics_thumb img {
    transition: opacity 0.3s;
  }
  
  #comics .comics_inner .comics_thumb img:hover {
    opacity: 0.75;
  }
  
  #comics .comics_inner .comics_btn{
    display: block;
  }
  
  #comics .comics_inner .comics_btn button {
    width: 410px;
    border: none !important;
    font-size: 22px;
    line-height: 80px;
    transition: opacity 0.3s;
    box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }
  
  #comics .comics_inner .comics_btn button:hover {
    opacity: 0.75;
  }
  
  #comics .comics_inner .comics_btn button::before {
    height: 20px;
    right: 29px;
  }
  
  #comics .comics_inner .comics_btn button::after {
    width: 20px;
    right: 20px;
  }
}

@media screen and (max-width: 640px) {
  #comics {
    background: url("../images/comics_bg_sp.jpg") no-repeat center;
    background-size: cover;
    position: relative;
  }
  
  #comics::before {
    content: "";
    display: block;
    background: url("../images/comics_bg_title.png") no-repeat center;
    background-size: contain;
    width: 66px;
    height: 346px;
    transform: rotate(90deg);
    position: absolute;
    right: 140px;
    top: -120px;
  }
  
  #comics .cont_inner {
    padding-top: 90px;
    padding-bottom: 60px;
  }
  
  #comics .comics_inner h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  #comics .comics_inner h3::before,
  #comics .comics_inner h3::after {
    height: 24px;
  }
  
  #comics .comics_inner .comics_thumb {
    margin-bottom: 20px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.15);
  }
  

  #comics .comics_inner .comics_btn button {
    width: 240px;
    font-size: 14px;
    line-height: 50px;
    box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.2);
  }
  
  #comics .comics_inner .comics_btn button::before {
    height: 16px;
    right: 22px;
  }
  
  #comics .comics_inner .comics_btn button::after {
    width: 16px;
    right: 15px;
  }
}

/* ---------- modal - comics ---------- */

@media screen and (min-width: 641px), print {
  .modal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: opacity 0.3s;
    pointer-events: none;
    opacity: 0;
  }
  
  .modal.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 9999;
  }
  
  .modal__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  
  .modal__content {
    width: calc( 100% - 200px );
    max-width: 1100px;
    position: relative;
  }
  
  .modal__close-btn {
    border: none;
    background: url("../images/icon_close.png") no-repeat center;
    background-size: contain;
    position: absolute;
    right: 0;
    top: -47px;
    width: 27px;
    height: 27px;
    cursor: pointer;
    z-index: 10;
  }
}

/* ---------- slide ---------- */
  
#comics .slide_inner .slide_num {
  font-family: 'Cabin', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 641px), print {
  #comics .slide_inner .slide_img {
    margin-bottom: 7px;
  }
  
  #comics .slide_inner .slide_num {
    font-size: 18px;
    color: #fff;
  }
}

@media screen and (max-width: 640px) {
  #comics .modal-sp{
    display: block;
  }

  #comics .slide_inner{
    width: 100%!important;
    margin: auto;
  }
  #comics .slide_inner .slide_img {
    width: 100%;
    margin-bottom: 5px;
  }
  
  #comics .slide_inner .slide_num {
    font-size: 14px;
  }
  
  #comics .comics_slide .slide_img {
    border: 5px solid #028cd6;
  }
}

/* ---------- swiper ---------- */

.swiper-button-prev,
.swiper-button-next {
  top: 50% !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important;
}

.swiper-button-prev {
  background: url("../images/arrow_prev.png") no-repeat center;
  background-size: contain;
  left: 0 !important;
}

.swiper-button-next {
  background: url("../images/arrow_next.png") no-repeat center;
  background-size: contain;
  left: auto !important;
}

@media screen and (min-width: 641px), print {
  .swiper-button-prev-pc,
  .swiper-button-next-pc {
    width: 70px;
    height: 70px;
    margin-top: -68px !important;
    transition: opacity 0.3s;
  }
	
  .swiper-button-prev-pc {
    left: -100px !important;
  }
  
  .swiper-button-next-pc {
    right: -100px !important;
  }
}

@media screen and (max-width: 640px) {
  .swiper-pagination {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
  }
  
  .swiper-button-prev-sp,
  .swiper-button-next-sp {
    width: 40px;
    height: 40px;
  }
	
  .swiper-button-prev-sp {
    right: auto !important;
  }
  
  .swiper-button-next-sp {
    right: 0 !important;
  }
}


/*--------------------------------
	interview
--------------------------------*/
#interview{
  background: #dbeeff;
}
#interview .cont_inner h3 {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  line-height: 1.5;
  color: #0a52b6;
}
#interview .cont_inner h3::before,
#interview .cont_inner h3::after {
  content: "";
  display: block;
  width: 2px;
  background-color: #0a52b6;
}
#interview .cont_inner h3::before {
  transform: rotate(-28deg);
  margin-right: 0.75em;
}
#interview .cont_inner h3::after {
  transform: rotate(28deg);
  margin-left: 0.75em;
}

@media screen and (min-width: 641px), print {
  #interview .cont_inner{
    padding: 185px 0 135px;
  }
  #interview header h2{
    top: -75px;
  }
  #interview .cont_inner h3{
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 600;
  }
  #interview .cont_inner h3::before,
  #interview .cont_inner h3::after {
    height: 33px;
  }
  .interview_list{
    display: flex;
    justify-content: center;
  }
  .interview_list li{
    width: 47%;
  }
  .interview_list li img{
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .interview_list li img:hover{
    opacity: 0.75;
  }
  .interview_list li .interview_txt{
    margin-top: 15px!important;
    font-size: 18px;
    line-height: 1.9;
    letter-spacing: 0.08em;
  }
}
@media screen and (max-width: 640px) {
  #interview .cont_inner{
    padding-top: 90px;
    padding-bottom: 70px;
  }
  #interview .cont_inner h3::before,
  #interview .cont_inner h3::after {
    height: 24px;
  }
  #interview .cont_inner h3{
    margin-bottom: 15px;
    font-size: 18px;
  }
  .interview_list li .interview_txt{
    margin-top: 10px!important;
  }
  .interview_list li + li{
    margin-top: 20px!important;
  }
}


/*--------------------------------
	making
--------------------------------*/

#making {
  background: #028cd6;
  background: -moz-linear-gradient(45deg,  #0298da 0%, #0280d2 100%);
  background: -webkit-linear-gradient(45deg,  #0298da 0%,#0280d2 100%);
  background: linear-gradient(45deg,  #0298da 0%,#0280d2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0298da', endColorstr='#0280d2', GradientType=1 );
  position: relative;
}

#making::before {
  content: "";
  display: block;
  position: absolute;
  background: url("../images/making_bg_title.png") no-repeat center;
  background-size: contain;
}

#making .making_wrap {
  background: url("../images/bg_arrow.png") no-repeat right bottom;
  position: relative;
}

#making .making_wrap::before,
#making .making_wrap::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
}

#making .making_wrap::before {
  border-color: transparent #dbeeff transparent transparent;
  top: 0;
  right: 0;
}

#making .making_wrap::after {
  border-color: transparent transparent transparent #c6e4ff;
  bottom: 0;
  left: 0;
}

#making .making_inner h3 {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  line-height: 1.5;
  color: #fff;
}

#making .making_inner h3::before,
#making .making_inner h3::after {
  content: "";
  display: block;
  width: 2px;
  background-color: #fff;
}

#making .making_inner h3::before {
  transform: rotate(-28deg);
  margin-right: 0.75em;
}

#making .making_inner h3::after {
  transform: rotate(28deg);
  margin-left: 0.75em;
}

@media screen and (min-width: 641px), print {
  #making::before {
    width: 702px;
    height: 132px;
    margin-right: -583px; 
    right: 50%;
    top: 65px;
  }
  
  #making .making_wrap {
    background-size: 535px auto;
  }
  
  #making .making_wrap::before {
    border-width: 0 110px 110px 0;
  }
  
  #making .making_wrap::after {
    border-width: 110px 0 0 110px;
  }
  
  #making .cont_inner {
    padding: 170px 0 140px;
  }
  
  #making .cont_inner header h2 {
    top: -75px;
  }
  
  #making .making_inner {
    width: 1000px;
    margin: 0 auto;
  }
  
  #making .making_inner h3 {
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 600;
  }
  
  #making .making_inner h3::before,
  #making .making_inner h3::after {
    height: 33px;
  }
  
  #making .making_inner .making_thumb {
    background-color: #fff;
    cursor: pointer;
  }
  
  #making .making_inner .making_thumb img {
    transition: opacity 0.3s;
  }
  
  #making .making_inner .making_thumb img:hover {
    opacity: 0.75;
  }
}

@media screen and (max-width: 640px) {
  #making::before {
    width: 351px;
    height: 66px;
    right: 0;
    top: 40px;
  }
  
  #making .making_wrap {
    background-size: 268px auto;
  }
  
  #making .cont_inner {
    padding-top: 90px;
    padding-bottom: 60px;
  }
  
  #making .making_wrap::before {
    border-width: 0 60px 60px 0;
  }
  
  #making .making_wrap::after {
    border-width: 60px 0 0 60px;
  }
  
  #making .making_inner h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  #making .making_inner h3::before,
  #making .making_inner h3::after {
    height: 24px;
  }
}

/*--------------------------------
	character
--------------------------------*/

#chara {
  background-color: #c6e4ff;
  background-image: url("../images/chara_bg_title.png");
  background-repeat: no-repeat;
}

#chara .chara_role {
  display: flex;
  align-items: flex-end;
  line-height: 1.5;
}

#chara .chara_name {
  font-weight: 700;
  line-height: 1.5;
}

#chara .chara_name .en {
  font-family: 'Cabin', sans-serif;
  font-weight: 400;
}

#chara .chara_actor {
  line-height: 1.5;
  color: #0a52b6;
}

#chara .chara_list {
  display: flex;
  flex-wrap: wrap;
}

#chara .chara_main .chara_text,
#chara .chara_list .chara_text {
  line-height: 2;
}

@media screen and (min-width: 641px), print {
  #chara {
    background-position:right top 30px;
    background-size: 132px auto;
  }
  
  #chara .cont_inner {
    padding: 200px 0 110px;
  }
  
  #chara .cont_inner header h2 {
    top: -90px;
  }
  
  #chara .chara_main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  
  #chara .chara_main dt {
    width: 480px;
  }
  
  #chara .chara_main dd {
    width: 575px;
  }
  
  #chara .chara_main .chara_role {
    margin-bottom: 6px;
    font-size: 20px;
  }
  
  #chara .chara_main .chara_name {
    margin-bottom: 10px;
    font-size: 30px;
  }
  
  #chara .chara_main .chara_name span {
    font-size: 24px;
  }

  #chara .chara_main .chara_actor {
    margin-bottom: 24px;
    font-size: 18px;
  }
  
  #chara .chara_main .chara_text {
    font-size: 20px;
  }
  
  #chara .chara_list li {
    width: 204px;
    margin-right: 20px;
  }

  #chara .chara_list li:nth-child(5n){
    margin-right: 0;
  }

  #chara .chara_list li:nth-child(n+6){
    margin-top: 40px;
  }

  #chara .chara_list .chara_img {
    margin-bottom: 15px;
  }
  
  #chara .chara_list .chara_role {
    min-height: 3em;
    margin-bottom: 8px;
    font-size: 18px;
  }
  
  #chara .chara_list .chara_name {
    margin-bottom: 17px;
    font-size: 26px;
  }

  #chara .chara_list .chara_name .small{
    font-size: 15px;
  }
  
  #chara .chara_list .chara_name .en {
    display: block;
    font-size: 16px;
  }

  #chara .chara_list .chara_actor {
    margin-bottom: 20px;
    font-size: 17px;
  }
  
  #chara .chara_list .chara_text {
    font-size: 16px;
  }
}

@media screen and (max-width: 640px) {
  #chara {
    background-position: right 20px;
    background-size: 66px auto;
  }
  
  #chara .cont_inner {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  
  #chara .chara_main {
    margin-bottom: 25px;
  }
  
  #chara .chara_main dt {
    margin-bottom: 10px;
  }
  
  #chara .chara_main dd * {
    text-align: center;
  }
  
  #chara .chara_main .chara_role {
    margin-bottom: 5px;
    font-size: 13px;
  }
  
  #chara .chara_main .chara_name {
    margin-bottom: 5px;
    font-size: 18px;
  }
  
  #chara .chara_main .chara_name span {
    font-size: 15px;
  }

  #chara .chara_main .chara_actor {
    margin-bottom: 10px;
    font-size: 12px;
  }
  
  #chara .chara_main .chara_text {
    font-size: 13px;
  }
  
  #chara .chara_list li {
    width: 48.5%;
    margin-right: 3%;
  }

  #chara .chara_list li:nth-child(2n){
    margin-right: 0;
  }

  #chara .chara_list li:nth-child(n+3){
    margin-top: 25px;
  }
  
  #chara .chara_list .chara_img {
    margin-bottom: 10px;
  }
  
  #chara .chara_list .chara_role {
    margin-bottom: 5px;
    font-size: 12px;
    letter-spacing: 0.05em;
  }
  
  #chara .chara_list li:nth-child(1) .chara_role,
  #chara .chara_list li:nth-child(2) .chara_role,
  #chara .chara_list li:nth-child(3) .chara_role,
  #chara .chara_list li:nth-child(4) .chara_role{
    min-height: 3em;
  }
  
  #chara .chara_list .chara_name {
    margin-bottom: 5px;
    font-size: 18px;
  }
  
  #chara .chara_list .chara_name .en {
    display: block;
    font-size: 15px;
  }

  #chara .chara_list .chara_actor {
    margin-bottom: 10px;
    font-size: 12px;
  }
  
  #chara .chara_list .chara_text {
    font-size: 13px;
  }
}

/*--------------------------------
	more
--------------------------------*/

#more {
  background: url("../images/more_bg.png") repeat;
  background-size: 4px 4px;
}

#more header h2 {
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #0a52b6;
}

#more .more_lead .more_text div {
  display: inline-block;
  background-color: #0a52b6;
  position: relative;
  font-weight: 700;
  color: #fff;
}

#more .more_lead .more_text div::before {
  content: "";
  display: block;
  margin: auto;
  background: url("../images/more_emphasis.png") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  right: 0;
}

#more .more_lead .more_text p {
  line-height: 1.75;
}

#more .more_lead .more_text p strong {
  font-weight: 700;
  color: #0a52b6;
}

#more .more_list dd {
  box-sizing: border-box;
  background-color: #c6e4ff;
}

#more .more_list dd h3 {
  font-weight: 700;
}

#more .more_list dd div a {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 2px solid #0a52b6;
  font-weight: bold;
  line-height: 1.5;
  text-decoration: none;
  color: #0a52b6;
}

#more .more_list dd div a::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin-right: 0.5em;
  background: url("/cmn/images/icon/icon_circle_primary.png") no-repeat center;
}

#more .more_text .light-blue-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  /* border: 2px solid #0a52b6; */
  background: #0294d9;
  font-weight: bold;
  line-height: 1.5;
  text-decoration: none;
  color: #fff;
}

#more .more_text .light-blue-btn a::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin-right: 0.5em;
  background: url("../images/icon_circle_blue.png") no-repeat center / contain;
}

@media screen and (min-width: 641px), print {
  #more .cont_inner {
    padding: 80px 0 100px;
  }
  
  #more header h2 {
    margin-bottom: 37px;
    font-size: 39px;
  }
  
  #more .more_lead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    margin-bottom: 60px;
  }
  
  #more .more_lead .more_img {
    width: 410px;
  }
  
  #more .more_lead .more_text {
    width: 530px;
  }
  
  #more .more_lead .more_text div {
    padding: 0px 23px;
    margin-bottom: 30px;
    font-size: 48px;
    line-height: 88px;
    letter-spacing: 3px;
  }
  
  #more .more_lead .more_text div::before {
    width: 103px;
    height: 36px;
    top: -60px;
  }
  
  #more .more_lead .more_text p {
    font-size: 24px;
  }
  
  #more .more_lead .more_text p strong {
    font-size: 26px;
  }

  #more .more_list {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    overflow: hidden;
  }
  
  #more .more_list:nth-of-type(1) {
    margin-bottom: 50px;
    padding-left: 50px;
  }
  
  #more .more_list:nth-of-type(2) {
    margin-bottom: 50px;
    padding-right: 50px;
    flex-direction: row-reverse;
  }

  #more .more_list:nth-of-type(3) {
    padding-left: 50px;
  }
  
  #more .more_list dt {
    width: 443px;
    z-index: 5;
  }
  
  #more .more_list dd {
    width: 620px;
    height: 324px;
    padding: 0 50px;
  }
  
  #more .more_list:nth-of-type(1) dt {
    margin-right: -50px;
  }
  
  #more .more_list:nth-of-type(2) dt {
    margin-left: -50px;
  }
  
  #more .more_list dd {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
  }
  
  #more .more_list dd h3 {
    width: 100%;
    margin-bottom: 20px;
    font-size: 30px;
  }
  
  #more .more_list dd p {
    width: 100%;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 2;
  }
  
  #more .more_list dd div {
    width: 100%;
  }
  
  #more .more_list dd div a {
    width: 100%;
    height: 70px;
    font-size: 18px;
    transition: background 0.3s;
  }
  
  #more .more_list dd div a:hover {
    background-color: rgba(255,255,255,0.50);
  }
  #more .more_text .light-blue-btn{
    margin-top: 30px;
  }

  #more .more_text .light-blue-btn a {
    width: 95%;
    height: 70px;
    font-size: 18px;
    transition: opacity 0.3s;
  }

  #more .more_text .light-blue-btn a:hover{
    opacity: 0.7;
  }
}

@media screen and (max-width: 640px) {
  #more .cont_inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  #more header h2 {
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  #more .more_lead {
    margin-bottom: 30px;
  }
  
  #more .more_lead .more_img {
    width: 240px;
    margin: 0 auto 45px;
  }
  
  #more .more_lead .more_text {
    text-align: center;
  }
  
  #more .more_lead .more_text div {
    padding: 0 15px;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 40px;
  }
  
  #more .more_lead .more_text div::before {
    width: 70px;
    height: 24px;
    top: -34px;
  }
  
  #more .more_lead .more_text p {
    font-size: 16px;
  }
  
  #more .more_lead .more_text p strong {
    font-size: 18px;
  }

  #more .more_text .light-blue-btn{
    margin-top: 15px;
  }
  
  #more .more_list:nth-of-type(1),
  #more .more_list:nth-of-type(2) {
    margin-bottom: 15px;
  }
  
  #more .more_list dd {
    padding: 15px;
  }
  
  #more .more_list dd h3 {
    margin-bottom: 5px;
    font-size: 18px;
  }
  
  #more .more_list dd p {
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.75;
  }
  
  #more .more_list dd div a {
    height: 50px;
    font-size: 14px;
  }

  #more .more_text .light-blue-btn a {
    height: 50px;
    font-size: 14px;
  }
}

/*--------------------------------
	link
--------------------------------*/

#link .link_bnr {
  display: flex;
  justify-content: space-between;
}

#link .top_back_btn .m-btn-ellipse{
  margin: auto;
  background: #0a52b6;
  border-color: #0a52b6;
}

@media screen and (min-width: 641px), print {
  #link .cont_inner {
    padding: 85px 0 120px;
  }
  
  #link .link_bnr {
    margin-bottom: 100px;
  }
  
  #link .link_bnr li {
    width: 500px;
  }
  
  #link .link_bnr li a {
    transition: opacity 0.3s;
  }
  
  #link .link_bnr li a:hover {
    opacity: 0.75;
  }

  #link .top_back_btn{
    margin-top: 100px;
  }
  #link .top_back_btn .m-btn-ellipse{
    font-size: 18px;
  }
  #link .top_back_btn .m-btn-ellipse:hover{
    background: #fff;
    color: #0a52b6;
  }
}

@media screen and (max-width: 640px) {
  #link .cont_inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  #link .link_bnr {
    margin-bottom: 20px;
  }
  
  #link .link_bnr li {
    width: calc( ( 100% - 10px ) / 2 );
  }

  #link .top_back_btn .m-btn-ellipse{
    font-size: 14px;
  }
}
