html {
  font-size: 100px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.16rem;
  background-color: #000;
}

a {
  text-decoration: none;
}

a:focus {
  outline: none;
}
li {
  list-style: none;
}
li:focus {
  outline: none;
}
video:focus {
  outline: none;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
@font-face {font-family:"font";src:url(../images/common/font.ttf);}
img {
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

@media screen and (max-width: 750px) {
  .pc_only {
    display: none !important;
  }
}

.sp_only {
  display: none !important;
}

@media screen and (max-width: 750px) {
  .sp_only {
    display: block !important;
  }
}

.header_inner {
  width: 980px;
  margin: 0 auto;
  display: flex;
  padding-top: 20px;
  position: relative;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  .header_inner {
    flex-direction: column;
    padding: 0;
  }
}

.subpage_header {
  min-width: 1300px;
  margin: 0 auto;
}

@media screen and (max-width: 750px) {
  .subpage_header {
    min-width: auto;
  }
}

.subpage_header .header_inner {
  justify-content: flex-end;
  padding-top: 9px;
}

main {
  min-width: 1300px;
  margin: 0 auto;
}

.header_list_wrap {
  display: none;
  z-index: 20;
  position: relative;
  border-top: 1px solid #FEE533;
  border-bottom: 1px solid #FEE533;
  margin-top: 9px;
}

.header_list {
  background-color: rgba(0, 0, 0, 0.74);
  border-bottom: 1px solid #FEE533;
  width: 345px;
}

@media screen and (max-width: 750px) {
  .header_list {
    width: 100%;
  }
}

.header_list a {
  font-size: 16px;
  padding-left: 23px;
  font-weight: bold;
  color: #fff;
  height: 70px;
  display: flex;
  align-items: center;
}

.header_list span {
  color: #FEE533;
  font-size: 12px;
  font-weight: normal;
  margin-left: 9px;
}

@media screen and (min-width: 750px) {
  .header_list a {
    transition: .2s opacity;
  }
  .header_list a:hover {
    opacity: 0.75;
  }
}
.header_nav_wrap{position: absolute;right: 0;top: 20px;}
@media screen and (max-width: 750px) {
  .header_nav_wrap {
    position: absolute;
    top: 20px;
    width: calc(100% - 32px);
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: 30;
  }
  .header_nav_wrap2{
    top: 95px;
  }
}
.header_nav_btn {
  position: relative;
  z-index: 9999;
  display: block;
  text-decoration: none;
  appearance: none;
  border: none;
  background-color: transparent;
  width: 48px;
  height: 32px;
  margin: 0 0 0 auto;
  outline: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  padding-left: 34px;
  color: #fff;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0.74);
}


@media screen and (min-width: 750px) {
  .header_nav_btn {
    border: 1px solid #fff;
    margin-top: 16px;
    transition: .2s opacity;
  }
  .header_nav_btn:hover {
    opacity: 0.75;
  }
}

.subpage_header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 35;
}

.header_nav_line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 14px;
  margin: auto;
  width: 18px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: inherit;
  transition: 0.2s all;
}

.header_nav_line::before, .header_nav_line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: '';
  -webkit-transition: inherit;
  transition: inherit;
}

.header_nav_line::before {
  top: -5px;
}

.header_nav_line::after {
  top: 5px;
}

.header_nav_btn[aria-expanded="true"] .header_nav_line {
  background-color: transparent;
}

.header_nav_btn[aria-expanded="true"] .header_nav_line::before, .header_nav_btn[aria-expanded="true"] .header_nav_line::after {
  top: 0;
  background-color: #fff;
}

.header_nav_btn[aria-expanded="true"] .header_nav_line::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header_nav_btn[aria-expanded="true"] .header_nav_line::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}


.cbt_banner_wrap {
  padding: 144px 0 300px;
  background-color: #ffffff;
  position: relative;
}
@media screen and (max-width: 750px) {
  .cbt_banner_wrap {
    padding: 50px 16px 7px;
    width: calc(100% + 32px);
    position: relative;
    left: -16px;
    max-width: calc(100% + 32px);
  }
}
.cbt_banner_bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 43vw;
  background: linear-gradient(to bottom, transparent 0%, transparent 0%, #fff 100%), url(../images/top/top_bg_000.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size:100% auto;
}
@media screen and (max-width: 750px) {
  .cbt_banner_bg{
    height: 175vw;
    background:url(../images/top/top_bg_000_sp.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size:100% auto;
    width: 100%;
  }
}

.cbt_banner_inner {
  width: 980px;
  margin: 0 auto;
  position: relative;
}

.cbt_banner_title{
  height: 113px;
  position: relative;
}
.cbt_banner_title img{
  position: relative;
  z-index: 10;
}
.cbt_banner_title::after{
  position: absolute;
  content: "";
  width: 820px;
  height: 50px;
  background-color: #FEE533;
  bottom: 0;
  left: 0;
}
.cbt_banner_title2{
  font-size: 64px;
  color: #000;
  line-height: 80px;
  padding-left: 435px;
  font-family:"font";
}
.cbt_banner_txt{
  font-size: 20px;
  color: #000;
  padding: 16px 0;
  line-height: 24px;
}

.cbt_banner_box{
  width: 1500px;
 max-width: 1500px;
 background:url(../images/top/cbt_img_bg.png) top center/cover no-repeat;
 position: relative;
 padding-top: 79px;
 padding-left: 36px;
}
@media screen and (max-width: 1500px) {
  .cbt_banner_box{
    width: 1350px;
   max-width: 1350px;
  }
}
.cbt_list{
  position: relative;
  z-index: 10;
}
.cbt_list li{
  display: block;
  width: 697px;
  height: 147px;
  margin-top: -27px;
}
.cbt_li{display: none;}
.cbt_list li.on .cbt_li{display: block;}
.cbt_list li.on .cbt_gy{display: none;}
.cbt_img_bg{
  width: 869px;
  height: 1238px;
  position: absolute;
  right: 0;
  top: -165px;
}
@media screen and (max-width: 750px) {
  .cbt_banner_title{
    height: 60px;
  }
  .cbt_banner_title img{
    width: 310px;
  }
  .cbt_banner_title::after{
    position: absolute;
    content: "";
    width: 340px;
    height: 28px;
    background-color: #FEE533;
    bottom: 0;
    left: 0;
  }
  .cbt_banner_title2{
    font-size: 34px;
    color: #000;
    line-height: 50px;
    padding-left:135px;
  }
  .cbt_banner_txt{
    padding: 30px 0 20px;
    color: #fff;
  }
  .cbt_banner_txt span{
    display: block;
  }
  .cbt_banner_box{
    background:none;
    width: 100%;
    padding-top:0px;
    padding-left:0px;
  }
  .cbt_list{
    width: calc(100% + 32px);
    position: relative;
    left: -16px;
    max-width: calc(100% + 32px);
  }
  .cbt_list li{
    width:100%;
    height: auto;
    margin-top: -10px;
  }
  .cbt_img_bg{display: none;}
}
.app_area_wrap {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #ffffff url(../images/common/bg_app_area_001.png) top center/cover no-repeat;
}

@media screen and (max-width: 750px) {
  .app_area_wrap {
    width: calc(100% + 32px);
    position: relative;
    left: -16px;
    max-width: calc(100% + 32px);
    padding: 32px 16px;
    background: #ffffff url(../images/common/bg_app_area_001_sp.png) top center/cover no-repeat;
  }
}
.app_area_wrap.bg-black {
  background: url(../images/top/top_bg_005.png) top center/cover no-repeat;
}
.app_area_wrap .inner {
  width: 980px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .app_area_wrap .inner {
    left: 0;
  }
}
.store_list {
  display: flex;
  position: absolute;
  bottom: 36px;
  left: 36px;
  width: 374px;
}

@media screen and (max-width: 750px) {
  .store_list {
    width: 100%;
    margin: auto;
    position: relative;
    left: 0;
    bottom: 24px;
    justify-content: center;
    padding: 116px 0 2px;
  }
}

@media screen and (min-width: 750px) {
  .store_list a {
    transition: .2s opacity;
  }
  .store_list a:hover {
    opacity: 0.75;
  }
}

.appstore {
  width: 160px;
  margin-right: 16px;
}

@media screen and (max-width: 750px) {
  .appstore {
    width: 105px;
    margin-right: 13px;
  }
}

.googleplay {
  width: 198px;
}

@media screen and (max-width: 750px) {
  .googleplay {
    width: 131px;
  }
}

.app_area_text01 {
  position: absolute;
  bottom: -155px;
  left: -271px;
  width: 319px;
}

@media screen and (max-width: 750px) {
  .app_area_text01 {
    display: none;
  }
}

.app_area_img02 {
  position: absolute;
  bottom: -130px;
  right: -52px;
  width: 577px;
}

@media screen and (max-width: 750px) {
  .app_area_img02 {
    display: none;
  }
}

@media screen and (max-width: 750px) {
  .app_area_wrap02 .app_area_img02 {
    display: block;
    top: -60px;
    bottom: 0;
    right: -20px;
    width: 173px;
  }
}

.snslist {
  display: flex;
  width: 680px;
  margin: 0 auto;
}

.snslist .item {
  /* flex: 1; */
}

.snslist .item:not(:first-child) {
  margin-left: 8px;
}

@media screen and (min-width: 750px) {
  .snslist .item a {
    transition: .2s opacity;
  }
  .snslist .item a:hover {
    opacity: 0.75;
  }
}

.footer_area {
  background: url(../images/common/footer_bg_001.jpg) center top/cover no-repeat;
  padding: 144px 0 100px;
}

@media screen and (max-width: 750px) {
  .footer_area {
    width: calc(100% + 32px);
    position: relative;
    left: -16px;
    max-width: calc(100% + 32px);
    padding: 80px 16px 180px;
    background: url(../images/common/footer_bg_001_sp.png) center top/cover no-repeat;
  }
}

.footer_area .inner {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}

.footer_area_logo01 {
  width: 460px;
  margin-bottom:40px;
}

@media screen and (max-width: 750px) {
  .footer_area_logo01 {
    width: 340px;
    margin: 0 auto 20px;
    padding-top: 210px;
  }
}
.footer_text{
  font-size: 48px;
  color: #fff;
  line-height: 56px;
  text-shadow:0 0 0.2em #ae9a08,-0 -0 0.2em #ae9a08;
  font-weight: bold;
  font-style: italic;    
  font-family:"font";          
}
@media screen and (max-width: 750px) {
  .footer_text{
    font-size: 36px;
    line-height:40px;
    text-align: center;         
  }
}
.footer_area_btn_wrap {
  margin-bottom: 10px;
  width: 200px;
  padding-top: 40px;
}
@media screen and (max-width: 750px) {
  .footer_area_btn_wrap {
    flex-direction: column;
    margin-bottom: 10px;
  }
}
.footer_area_btn_wrap a {
  display: block;
  font-size: 16px;
  color: #fee533;
  line-height: 50px;
}
@media screen and (max-width: 750px) {
  .footer_area_btn_wrap a{
   text-align: center;
  }
}
.footer_area .inner .snslist{
  width: 1000px;
}
@media screen and (max-width: 750px) {
  .footer_area .inner .snslist{
    width: 345px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer_area .inner .snslist li{
    width: 49%;
    margin-left: 0;
    margin-top: 6px;
  }
}


.fadein {
  opacity: 0;
}

.fadein.scrollin {
  transform: translate(0, 50px);
}

.fadein.scrollin.delay500 {
  animation: fadeInAnime01 700ms 500ms ease forwards;
}

.fadein.scrollin.phase01 {
  animation: fadeInAnime01 700ms 500ms ease forwards;
}

.fadein.scrollin.phase02 {
  animation: fadeInAnime01 700ms 700ms ease forwards;
}

.fadein.scrollin.phase03 {
  animation: fadeInAnime01 700ms 900ms ease forwards;
}

.fadein.scrollin.phase04 {
  animation: fadeInAnime01 700ms 1100ms ease forwards;
}

.fadein.scrollin.phase05 {
  animation: fadeInAnime01 700ms 1300ms ease forwards;
}

.fadein.scrollin.toLeft {
  animation: fadeInAnime01 700ms 300ms ease forwards;
}

.fadein.scrollin.toRight {
  animation: fadeInAnime01 700ms 300ms ease forwards;
}

@keyframes fadeInAnime01 {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.top_header {
  width: 100%;
  height: 104px;
  min-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 52;
  background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 750px) {
  .top_header {
    min-width: auto;
    height: auto;
    position: absolute;
  }
}

.top_header .header_sp_image {
  width: 100%;
}

@media screen and (min-width: 750px) {
  .top_header .header_sp_image {
    display: none;
  }
}

.top_header .header_sp_image img {
  width: 100%;
}

.top_header .header_sp_logo {
  margin-top: -180px;
}

@media screen and (min-width: 750px) {
  .top_header .header_sp_logo {
    display: none;
  }
}

.top_header .header_sp_text01 {
  display: none;
}

@media screen and (max-width: 750px) {
  .top_header .header_sp_text01 {
    display: block;
    color: #fff;
    white-space: nowrap;
    font-family: 'Noto Serif JP',serif;
    font-size: 40px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    margin: -38px auto 78px;
    text-align: center;
    position: relative;
    left: 4%;
  }
}

.top_header .header_sp_text01 span {
  font-size: 34px;
}

.top_header .top_scroll_wrap {
  width: 980px;
  margin: 0 auto;
  position: relative;
}

.top_header .top_scroll {
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: 11px;
  width: 45px;
  position: absolute;
  opacity: 0;
  animation: blink 800ms ease-in-out infinite alternate;
}

@media screen and (max-width: 750px) {
  .top_header .top_scroll {
    bottom: -620px;
  }
}

.top_main {
  background-color: #000;
  overflow: hidden;
  min-width: 1300px;
}

@media screen and (min-width: 750px) {
  .top_main {
    margin-top: -104px;
  }
}

@media screen and (max-width: 750px) {
  .top_main {
    min-width: auto;
    height: auto;
    padding: 0 16px;
    overflow: visible;
    overflow-x: hidden;
  }
  .advertising_main .top_main{
    overflow: hidden;
  }
}

.top_main .main_inner {
  overflow: visible;
}

.top_main .top_fv {
  height: 42vw;
  position: relative;
  background: #000;
}

@media screen and (max-width: 750px) {
  .top_main .top_fv {
    background:#000000 url(../images/top/top_fv_sp.jpg) center top no-repeat;
    background-size: 100% auto;
    height: 640px;
    width: calc(100% + 32px);
    position: relative;
    left: -16px;
    max-width: calc(100% + 32px);
  }
}

.top_title {
  position: absolute;
  top: 0;
  left: -110px;
  width:200px;
  z-index: 2;
}

.top_anniversary {
  left: 110px;
  transform: scale(.85);
}

@media screen and (max-width: 750px) {
  .top_title {
    bottom: auto;
    width:100%;
    max-width:100%;
    right:auto;
    left: 0;
    top: 0;
    height: 80px;
    background: #000;
    padding-top: 10px;
    display: none;
  }
  .top_title img{
    display: block;
    margin: 0 auto;
    width: 150px;
  }
}
.top_slogan{
  width: 1200px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 8vw;
  z-index: 30;
}
@media screen and (max-width: 750px) {
  .top_slogan{
    display: none;
  }
}
/* top */
.top_links{
  width: 537px;
  height:260px;
  background:url(../images/top/top_lbg.png) 0 0 no-repeat;
  position: absolute;
  left: 50%;
  margin-left: -269px;
  top: 19vw;
  z-index: 50;
  padding-top: 31px;
}
.top_links_tit{
  width: 420px;
  margin: 0 auto;
  text-align: center;
}
.top_links_down{
  display: flex;
  justify-content: center;
  margin-top: -10px;

}
.top_links_down a{
  margin: 0 0;
  position: relative;
  width: 165px;
}
.top_links_ddm:hover,.top_down_ddm:hover{animation:breath infinite 3s ease-in-out;-webkit-animation:breath infinite 3s ease-in-out;}
@keyframes breath{from{opacity:1.0;}50%{opacity:1;transform:scale(1.2);-webkit-transform:scale(1.2);}to{opacity:1.0;}}
@-webkit-keyframes breath{from{opacity:1.0;}50%{opacity:1;transform:scale(1.2);-webkit-transform:scale(1.2);}to{opacity:1.0;}}
.ios_ewm2,.and_ewm2{
  display: none;
  width: 200px;
  position: absolute;
  top: -50px;
  z-index: 3;
}
.ios_ewm2{left: -165px;}
.and_ewm2{right: -165px;}
.top_links_down a:hover .ios_ewm2{display: block;animation:fadeOutLeft 0.3s linear;-webkit-animation:fadeOutLeft 0.3s linear;}
.top_links_down a:hover .and_ewm2{display: block;animation:fadeOutLeft 0.3s linear;-webkit-animation:fadeOutLeft 0.3s linear;}
@media screen and (max-width: 750px) {
  .top_links_down a:hover .ios_ewm2{display: none;}
.top_links_down a:hover .and_ewm2{display: none;}
}
@-webkit-keyframes fadeOutLeft{0%{opacity:0}to{opacity:1;}}
@keyframes fadeOutLeft{0%{opacity:0}to{opacity:1;}}

.top_links .snslist{
  width: 420px;
  margin: 0 auto 0;
  justify-content:center;
}

@media screen and (max-width: 750px) {
  .top_links{
    width: calc(100% + 32px);
    height: 165px;
    background:url(../images/top/top_lbg_sp.png) 0 0 no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: 270px;
    top: 400px;
    z-index: 50;
    padding-top: 20px;
 
  }
  .top_links_tit{
    width: 270px;
  }
  .top_links_down{
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
    margin-top: -5px;
  }
  .top_links_down a{
    margin: 0 8px;
    display: none;
  }
  .top_links_and{
  width: 195px;
  }
  .top_links_ioss{
  width: 160px;
  }
  .top_links .snslist{
    width: 310px;
    margin: 0px auto 0;
  }
}

.top_main .top_scroll_wrap {
  width: 980px;
  margin: 0 auto;
  position: absolute;
  bottom: 60px;
  right: 0;
  height: 236px;
  left: 0;
  pointer-events: none;
  z-index: 5;
}

.top_main .top_scroll {
  position: absolute;
  top: 60px;
  right: -88px;
  width: 80px;
  animation: blink 800ms ease-in-out infinite alternate;
}

@media screen and (max-width: 750px) {
  .top_main .top_scroll {
    right: 0;
    left: 0;
    margin: 0 auto;
    top: -68px;
    width: 45px;
  }
}

@media screen and (max-width: 750px) {
  .top_main .contents_section {
    overflow: hidden;
  }
}

.top_main .contents_section .inner {
  width: 980px;
  margin: 0 auto;
}

.top_main .contents_section.twitter {
  background-color: #000000;
  position: relative;
}

.top_main .contents_section.twitter .inner {
  position: relative;
  z-index: 20;
}

.top_main .contents_section.world {
  position: relative;
}

.top_main .contents_section.character {
  position: relative;
  min-height: 1450px;
  background-color: #000000;
  overflow: hidden;
}

@media screen and (max-width: 750px) {
  .top_main .contents_section.character {
    min-height: 100%;
    padding: 0 16px;
  }
}

.top_main .contents_section.system {
  position: relative;
}

@media screen and (max-width: 750px) {
  .top_main .contents_section.system {
    width: calc(100% + 32px);
    position: relative;
    left: -16px;
    max-width: calc(100% + 32px);
    padding: 0 16px;
  }
}

.top_main .contents_section.special {
  position: relative;
  background: #000;
  min-height: 890px;
}

@media screen and (max-width: 750px) {
  .top_main .contents_section.special {
    width: calc(100% + 32px);
    position: relative;
    left: -16px;
    max-width: calc(100% + 32px);
    padding: 0 16px 75px;
    min-height: 900px;
  }
}
.top_main .section_title {
  position: relative;
  font-size: 125px;
  color: #000000;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 40px;
  z-index: 30;
}

@media screen and (max-width: 750px) {
  .top_main .section_title {
    font-size: clamp(48px, 58px, 15vw);
  }
}
.section_title img{
  position: relative;
  z-index: 10;
}
.top_main .section_title::after {
  position: absolute;
  content: "";
  width: 800px;
  height: 50px;
  background-color: #FEE533;
  bottom: 40px;
  left: 0;
}
.top_main .white.section_title::after {
  position: absolute;
  content: "";
  width: 142px;
  height: 8px;
  background-color: #FEE533;
  bottom: 0px;
  left: 0;
}

@media screen and (max-width: 750px) {
  .top_main .section_title img {
    position: relative;
    top: -14px;
  }
  .top_main .section_title::after {
    position: absolute;
    content: "";
    width: 340px;
    height: 25px;
    background-color: #FEE533;
    bottom: 30px;
    left: 0;
  }
  .top_main .white.section_title::after {
    position: absolute;
    content: "";
    width: 142px;
    height: 8px;
    background-color: #FEE533;
    bottom: 0px;
    left: 0;
  }
}
.top_main .news {
  height: 1135px;
  overflow-y: auto;
}
@media screen and (max-width: 750px) {
  .top_main .news {
    padding: 20px 0 25px;
    width: calc(100% + 32px);
    position: relative;
    left: -16px;
    max-width: calc(100% + 32px);
    height: 900px;
  }
}


.top_main .more_btn_wrap {
  width: 274px;
}

.top_main .more_btn_wrap a {
  display: block;
}

@media screen and (min-width: 750px) {
  .top_main .more_btn_wrap a {
    transition: .2s opacity;
  }
  .top_main .more_btn_wrap a:hover {
    opacity: 0.75;
  }
}

.top_main .twitter {
  padding: 88px 0 115px;
}

@media screen and (max-width: 750px) {
  .top_main .twitter {
    padding: 62px 0 56px;
  }
}

.top_main .twitter .section_title {
  width: 571px;
}

@media screen and (max-width: 750px) {
  .top_main .twitter .section_title {
    width: 263px;
  }
}

.top_main .timeline_wrap {
  width: 682px;
  height: 541px;
  overflow-y: scroll;
  padding-right: 19px;
  background-color: rgba(43, 43, 43, 0.9);
  position: relative;
  z-index: 30;
  scrollbar-width: thin;
  scrollbar-color: #FEE533 #191919;
}

@media screen and (max-width: 750px) {
  .top_main .timeline_wrap {
    height: 425px;
    padding-right: 7px;
    width: 100%;
    max-width: calc(140% + 15px);
  }
}

.top_main .timeline_wrap::-webkit-scrollbar {
  border-radius: 9999px;
  width: 4px;
}

.top_main .timeline_wrap::-webkit-scrollbar-track {
  background: #191919;
  border-radius: 9999px;
}

.top_main .timeline_wrap::-webkit-scrollbar-thumb {
  background: #FEE533;
  border-radius: 9999px;
}

.top_main .tweet_head {
  color: #fff;
  font-size: 16px;
  padding: 10px;
  border-radius: 5px 5px 0 0;
  background-color: rgba(43, 43, 43, 0.6) !important;
}

.top_main .tweet_head .twitter_account {
  color: #1DA1F2;
  font-size: 24px;
}

.top_main .twitter_image {
  position: absolute;
  z-index: 10;
  top: -115px;
  right: -398px;
  width: 1054px;
  max-width: none;
  pointer-events: none;
}

@media screen and (max-width: 750px) {
  .top_main .twitter_image {
    top: 9px;
    right: -141px;
    width: 513px;
    max-width: none;
  }
}

.top_main .follow_btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 274px;
  z-index: 12;
}

@media screen and (max-width: 750px) {
  .top_main .follow_btn {
    position: relative;
    bottom: 6px;
    left: 0;
    margin-top: 32px;
    
  }
}

@media screen and (min-width: 750px) {
  .top_main .follow_btn a {
    transition: .2s opacity;
  }
  .top_main .follow_btn a:hover {
    opacity: 0.75;
  }
}

.top_main .follow_btn .tag {
  font-family:"font";
  font-size: 32px;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
  color: #fff;
  margin-bottom: 28px;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .top_main .follow_btn .tag {
    margin-bottom: 30px;
  }
}

.top_main .world {
  background-color: #fff;
}

.top_main .world .world_full {
  padding: 94px 0 120px;
}

@media screen and (max-width: 750px) {
  .top_main .world .world_full {
    padding: 0;
  }
}

.top_main .world .world_bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 43vw;
  opacity: 0.8;
  background: linear-gradient(to bottom, transparent 0%, transparent 0%, #fff 100%), url(../images/top/top_bg_001.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size:100% auto;
}
@media screen and (max-width: 750px) {
  .top_main .world .world_bg {
    height: 134vw;
    background: linear-gradient(to bottom, transparent 0%, transparent 0%, #fff 100%), url(../images/top/top_bg_001_sp.png);
    background-size:100% auto;
  }
}

.top_main .world .inner {
  position: relative;
}

@media screen and (max-width: 750px) {
  .top_main .world {
    width: calc(100% + 32px);
    position: relative;
    left: -16px;
    max-width: calc(100% + 32px);
    padding: 62px 16px 65px;
    background-size: 290%;
  }
}

.top_main .world .section_title {
  width: 523px;
}

@media screen and (max-width: 750px) {
  .top_main .world .section_title {
    width: 241px;
  }
}

.top_main .world_image {
  position: absolute;
  z-index: 30;
  top: -32px;
  right: -232px;
  width: 676px;
}

@media screen and (max-width: 750px) {
  .top_main .world_image {
    width: 212px;
    top: 41px;
    right: -17px;
  }
}

.top_main .world_block {
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.16);
  padding-bottom: 40px;
  background: #fff;
}

@media screen and (max-width: 750px) {
  .top_main .world_block {
    margin-top: 0;
    padding-bottom: 30px;
    overflow: hidden;
  }
}

.top_main .world_block .image {
  padding: 20px 8px 18px;
  background: url(../images/top/top_bg_010.png) top center/contain no-repeat;
}

@media screen and (max-width: 750px) {
  .top_main .world_block .image {
    background: url(../images/top/top_bg_010_sp.png) top center/contain no-repeat;
    padding: 7px 2px 23px;
  }
}

.top_main .world_block .image img {
  width: 539px;
}

@media screen and (max-width: 750px) {
  .top_main .world_block .image img {
    width: 240px;
  }
}

.top_main .world_block .text_wrap {
  background: #fff;
  font-size: 16px;
  padding-left: 40px;
  position: relative;
}

@media screen and (max-width: 750px) {
  .top_main .world_block .text_wrap {
    padding: 0 16px;
  }
}

.top_main .world_block .text_wrap .text {
  padding-top: 62px;
  margin-bottom: 34px;
  line-height: 1.7;
}

@media screen and (max-width: 750px) {
  .top_main .world_block .text_wrap .text {
    padding-top: 38px;
    margin-bottom: 25px;
  }
}

.top_main .world_block .world_block_text {
  position: absolute;
  top: -31px;
  left: 40px;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0) 50%, #ffffff 50%);
}

@media screen and (max-width: 750px) {
  .top_main .world_block .world_block_text {
    top: -17px;
    left: -4%;
    right: 0;
    margin: 0 auto;
  }
}

.top_main .world_block .world_block_text p {
  line-height: 1;
  font-size: 60px;
  font-weight: bold;
  position: relative;
  font-family:"font";
}

.top_main .world_block .world_block_text p::before {
  content: attr(data-inverted);
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  height: 50%;
  color: #fff;
  text-shadow: 0 0 8px #fff;
}

@media screen and (max-width: 750px) {
  .top_main .world_block .world_block_text p::before {
    text-shadow: 0 0 4px #fff;
    left: 18px;
  }
}

@media screen and (max-width: 750px) {
  .top_main .world_block .world_block_text p {
    font-size: 34px;
    padding-left: 18px;
  }
}

.top_main .world_btn {
  width: 274px;
}


.top_main .character {
  padding-bottom: 120px;
}

@media screen and (max-width: 750px) {
  .top_main .character {
    width: calc(100% + 32px);
    position: relative;
    left: -16px;
    max-width: calc(100% + 32px);
  }
}

.top_main .character .section_title {
  width: 791px;
}

@media screen and (max-width: 750px) {
  .top_main .character .section_title {
    width: 345px;
  }
}

.top_main .character_video_wrap {
  width: 100%;
  height: 800px;
  overflow: hidden;
  background:url(../images/top/top_bg_0011.gif) center top no-repeat;
  background-size: 100% auto
}

@media screen and (max-width: 750px) {
  .top_main .character_video_wrap {
    width: calc(100% + 32px);
    position: relative;
    left: -16px;
    height:900px;
    opacity: 0.6;
    max-width: calc(100% + 32px);
    
  }
}

.top_main .character_video {
  min-width: 100%;
  min-height: 590px;
  z-index: 1;
}

@media screen and (max-width: 750px) {
  .top_main .character_video {
    min-height: auto;
    max-width: 200%;
  }
  .character_video_wrap .character_video,.special_video_wrap .character_video{
    display: none;
  }
}

.top_main .character_full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 95px 0 120px;
  z-index: 10;
}

@media screen and (max-width: 750px) {
  .top_main .character_full {
    padding: 68px 16px 68px;
  }
}

.top_main .character_full .inner {
  width: 980px;
  margin: 0 auto;
}

.top_main .characterlist_wrap {
  position: relative;
  margin-bottom: 50px;
}

@media screen and (max-width: 750px) {
  .top_main .characterlist_wrap {
    margin-bottom: 40px;
  }
}

.top_main .characterlist_wrap .slick-track {
  width: 1500px !important;
  display: flex;
}

@media screen and (max-width: 750px) {
  .top_main .characterlist_wrap .slick-track {
    width: 130px !important;
    margin-left: 0;
    box-sizing: content-box;
  }
}

.top_main .characterlist_wrap .thumbnail {
  display: block;
  width: 100%;
  margin-bottom: 16px;
}

.top_main .characterlist_wrap .head {
  display: flex;
}

.top_main .characterlist_wrap .category {
  background-color: #FEE533;
  color: #000000;
  text-decoration: none;
  margin-right: 8px;
  font-size: 14px;
}

.top_main .characterlist_wrap .slick-list {
  overflow: visible;
}

@media screen and (max-width: 750px) {
  .top_main .characterlist_wrap .slick-list {
    padding: 0 !important;
  }
}

.top_main .characterlist_wrap .character_nav {
  position: absolute;
  top: -78px;
  right: 0;
  width: 200px;
}

@media screen and (max-width: 750px) {
  .top_main .characterlist_wrap .character_nav {
    display: none;
  }
}

.top_main .characterlist_wrap .character_next {
  top: 0;
  position: absolute;
  right: 0;
  width: 84px;
  height: 56px;
}

.top_main .characterlist_wrap .character_next span::before {
  position: absolute;
  left: 0;
  top: 18px;
  display: block;
  content: "";
  width: 84px;
  height: 2px;
  background: #414141;
}

.top_main .characterlist_wrap .character_next span::after {
  position: absolute;
  right: 6px;
  top: 5px;
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  border-right: 3px solid #414141;
  border-top: 3px solid #414141;
  transform: rotate(45deg);
}

.top_main .characterlist_wrap .character_prev {
  top: 0;
  position: absolute;
  left: 0;
  width: 84px;
  height: 56px;
}

.top_main .characterlist_wrap .character_prev span::before {
  position: absolute;
  left: 0;
  top: 18px;
  display: block;
  content: "";
  width: 84px;
  height: 2px;
  background: #414141;
}

.top_main .characterlist_wrap .character_prev span::after {
  position: absolute;
  left: 6px;
  top: 5px;
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  border-right: 3px solid #414141;
  border-top: 3px solid #414141;
  transform: rotate(225deg);
}

@media screen and (max-width: 750px) {
  .top_main .characterlist_wrap .slick-disabled {
    display: none !important;
  }
}

.top_main .characterlist_wrap .slick-arrow[aria-disabled="false"] {
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .top_main .characterlist_wrap .slick-arrow[aria-disabled="false"] {
    display: none !important;
  }
}

.top_main .characterlist_wrap .slick-arrow[aria-disabled="false"] span::before {
  background: #fff;
}

.top_main .characterlist_wrap .slick-arrow[aria-disabled="false"] span::after {
  border-color: #fff;
}

@media screen and (max-width: 750px) {
  .top_main .characterlist {
    width: calc(100% + 16px);
    max-width: calc(100% + 16px);
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overscroll-behavior-y: none;
    height: 311px;
    overflow-y: hidden;
  }
  .top_main .characterlist::-webkit-scrollbar{width:5px;height:5px}
  .top_main .characterlist::-webkit-scrollbar-button{width:0;height:0}
  .top_main .characterlist::-webkit-scrollbar-corner{display:block}
  .top_main .characterlist::-webkit-scrollbar-thumb{background-clip:padding-box;background-color:#fff;border-radius:4px}
}

@media screen and (max-width: 750px) {
  .top_main .characterlist > div {
    display: flex;
    width: 670px;
    max-width: none;
    height: 311px;
    overscroll-behavior-y: none;
  }
}

.top_main .characterlist_item {
  text-align: center;
  width: 290px !important;
  border-bottom: 1px solid #000000;
  height: 690px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  pointer-events: all;
}

@media screen and (max-width: 750px) {
  .top_main .characterlist_item {
    width: 131px !important;
    height: 311px;
  }
}

.top_main .characterlist_item::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: #000;
  opacity: 0.7;
  width: 100%;
  height: 101%;
  transition: 0.2s all;
}

@media screen and (max-width: 750px) {
  .top_main .characterlist_item::after {
    opacity: 0;
  }
}

@media screen and (min-width: 750px) {
  .top_main .characterlist_item.hover::after, .top_main .characterlist_item:hover::after {
    opacity: 0;
  }
}

.top_main .characterlist_item .inner {
  padding-bottom: 38px;
}

@media screen and (max-width: 750px) {
  .top_main .characterlist_item .inner {
    padding-bottom: 16px;
  }
}

.top_main .characterlist_item .inner,
.top_main .characterlist_item a {
  margin-top: auto;
  width: 290px;
  position: relative;
  z-index: 20;
}

.top_main .characterlist_item a {
  height: 690px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 750px) {
  .top_main .characterlist_item a {
    height: 311px;
  }
}

.top_main .characterlist_item .name {
  background: #fff;
  width: 250px;
  height: 40px;
  margin: 0 auto;
  transition: 0.2s all;
  z-index: 10;
  position: relative;
  font-size: 28px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-bottom: 2px;
}

@media screen and (max-width: 750px) {
  .top_main .characterlist_item .name {
    width: 112px;
    height: 18px;
    font-size: 12px;
    padding-bottom: 0;
  }
}

.top_main .characterlist_item .name::before {
  position: absolute;
  right: 16px;
  top: 18px;
  display: block;
  content: "";
  width: 16px;
  height: 2px;
  background: #000;
}

@media screen and (max-width: 750px) {
  .top_main .characterlist_item .name::before {
    right: 6px;
    top: 7px;
    width: 8px;
    height: 2px;
  }
}

.top_main .characterlist_item .name::after {
  position: absolute;
  right: 15px;
  top: calc(50% - 6px);
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 3px solid #000;
  border-top: 3px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 750px) {
  .top_main .characterlist_item .name::after {
    right: 6px;
    top: calc(50% - 4px);
    width: 4px;
    height: 4px;
    border-right: 2px solid #000;
    border-top: 2px solid #000;
  }
}

@media screen and (max-width: 750px) {
  .top_main .characterlist_item .name {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
  }
  .top_main .characterlist_item .name::before {
    background: #fff;
  }
  .top_main .characterlist_item .name::after {
    border-color: #fff;
  }
}

.top_main .characterlist_item .image {
  z-index: 10;
  position: relative;
}

.top_main .characterlist_item:nth-child(1) {
  background: url(../images/top/top_character_img_001.png) top left/cover no-repeat;
}

.top_main .characterlist_item:nth-child(1) .image {
  width: 248px;
  margin: 0 auto -18px;
}

.top_main .characterlist_item:nth-child(2) {
  background: url(../images/top/top_character_img_002.png) top left/cover no-repeat;
}

.top_main .characterlist_item:nth-child(2) .image {
  width: 304px;
  margin: 0 auto -10px;
  max-width: 304px;
  left: -6px;
}

@media screen and (max-width: 750px) {
  .top_main .characterlist_item:nth-child(2) .image {
    max-width: 100%;
    left: 0;
  }
}

.top_main .characterlist_item:nth-child(3) {
  background: url(../images/top/top_character_img_003.png) top left/cover no-repeat;
}

.top_main .characterlist_item:nth-child(3) .image {
  width: 236px;
  margin: 0 auto -24px;
  max-width: 236px;
  left: 0px;
}

@media screen and (max-width: 750px) {
  .top_main .characterlist_item:nth-child(3) .image {
    max-width: 100%;
  }
}

.top_main .characterlist_item:nth-child(4) {
  background: url(../images/top/top_character_img_004.png) top left/cover no-repeat;
}

.top_main .characterlist_item:nth-child(4) .image {
  width: 290px;
  margin: 0 auto -13px;
}

.top_main .characterlist_item:nth-child(5) {
  background: url(../images/top/top_character_img_005.png) top left/cover no-repeat;
}

.top_main .characterlist_item:nth-child(5) .image {
  width: 275px;
  margin: 0 auto -14px;
}
.top_main .characterlist_item:nth-child(6) {
  background: url(../images/top/top_character_img_006.png) top left/cover no-repeat;
}

.top_main .characterlist_item:nth-child(6) .image {
  width: 275px;
  margin: 0 auto -14px;
}

@media screen and (min-width: 750px) {
  .top_main .characterlist_item:hover .name {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
  }
  .top_main .characterlist_item:hover .name::before {
    background: #fff;
  }
  .top_main .characterlist_item:hover .name::after {
    border-color: #fff;
  }
}

.top_main .character_text01 {
  font-family:"font";
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0px 0px 29px white;
  margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
  .top_main .character_text01 {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

.top_main .character_text02 {
  color: #fff;
  width:620px;
  font-size: 16px;
  margin-bottom: 52px;
  line-height: 1.7;
}

@media screen and (max-width: 750px) {
  .top_main .character_text02 {
    margin-bottom: 42px;
  }
}

.top_main .system {
  background: #fff;
}

@media screen and (max-width: 750px) {
  .top_main .system {
    background-size: 326%;
  }
}

.top_main .system .section_title {
  width: 531px;
}

@media screen and (max-width: 750px) {
  .top_main .system .section_title {
    width: 245px;
  }
}

.top_main .system_image {
  position: absolute;
  z-index: 10;
  bottom: 39px;
  right: -178px;
  width: 578px;
  pointer-events: none;
}

.top_main .system_image img {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.32);
}

@media screen and (max-width: 750px) {
  .top_main .system_image {
    bottom: 118px;
    right: 0;
    width: calc(100% + 0px);
    max-width: calc(100% + 0px);
    left: 0;
    margin: 0 auto;
  }
}

.top_main .system_full {
  padding: 98px 0 120px;
}

@media screen and (max-width: 750px) {
  .top_main .system_full {
    position: relative;
    padding: 55px 0 56px;
  }
}

.top_main .system_full .inner {
  width: 980px;
  margin: 0 auto;
  position: relative;
}

.top_main .system_bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 43vw;
  background: linear-gradient(to bottom, transparent 0%, transparent 0%, #fff 100%), url(../images/top/top_bg_002.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size:100% auto;
}
@media screen and (max-width: 750px) {
  .top_main .system_bg {
    height: 134vw;
    background: linear-gradient(to bottom, transparent 0%, transparent 0%, #fff 100%), url(../images/top/top_bg_002_sp.png);
    background-size:100% auto;
  }
}
.top_main .system_block {
  background: #fff url(../images/top/top_system_img_002.jpg) top left/contain no-repeat;
  padding: 300px 40px 40px;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 750px) {
  .top_main .system_block {
    background: #fff url(../images/top/top_system_img_002_sp.png) top left/contain no-repeat;
    padding: 300px 18px 30px;
  }
}

.top_main .system_block .image {
  background-color: rgba(0, 0, 0, 0.8);
}

.top_main .system_block .image img {
  width: 539px;
}

.top_main .system_block .text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 33px;
  width: 515px;
}

@media screen and (max-width: 750px) {
  .top_main .system_block .text {
    margin-bottom: 270px;
  }
}

.top_main .system_block .text_wrap {
  background: #fff;
  font-size: 16px;
  padding-left: 40px;
  position: relative;
}

.top_main .system_block .system_block_text p {
  line-height: 1;
  font-family:"font";
  font-size: 40px;
  font-weight: bold;
  color: #000000;
  position: relative;
  display: inline-block;
}

@media screen and (max-width: 750px) {
  .top_main .system_block .system_block_text p {
    line-height: 1.4;
    font-size: 38px;
    text-align: center;
    display: block;
  }
  .top_main .system_block .system_block_text p span{
    display: block;
  }
}

.top_main .system_block_text {
  position: relative;
  top: -20px;
  margin-bottom: 6px;
}

@media screen and (max-width: 750px) {
  .top_main .system_block_text {
    top: 0;
    margin-top: 30px;
    margin-bottom: 10px;
  }
}

.top_main .system_btn {
  width: 274px;
}

.top_main .system_btn a {
  position: relative;
  z-index: 30;
  display: block;
}

@media screen and (min-width: 750px) {
  .top_main .system_btn a {
    transition: .2s opacity;
  }
  .top_main .system_btn a:hover {
    opacity: 0.75;
  }
}

.top_main .special {
  padding-bottom: 120px;
  background: #000;
}

.top_main .special .section_title {
  width: 534px;
}

@media screen and (max-width: 750px) {
  .top_main .special .section_title {
    width: 246px;
  }
}

.top_main .special_image {
  position: absolute;
  z-index: 10;
  bottom: 250px;
  right: 0;
  width: 676px;
}

.top_main .special_video_wrap {
  width: 100%;
  height: 800px;
  overflow: hidden;
  background:url(../images/top/top_bg_0011.gif) center top no-repeat;
  background-size: 100% auto
}

@media screen and (max-width: 750px) {
  .top_main .special_video_wrap {
    width: calc(100% + 32px);
    position: relative;
    left: -16px;
    
    height: 134vw;
    max-width: calc(100% + 32px);
  }
}

@media screen and (max-width: 750px) {
  .top_main .special_video {
    min-height: auto;
    max-width: 160%;
    z-index: -10;
    opacity: 0.4;
  }
}

.top_main .special_full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 94px 0 120px;
  z-index: 10;
}

@media screen and (max-width: 750px) {
  .top_main .special_full {
    padding: 54px 16px 63px;
  }
}

.top_main .special_full .inner {
  width: 980px;
  margin: 0 auto;
}

.top_main .special_block {
  width: 958px;
  max-width: 1110px;
  background: #000 url(../images/top/top_special_img_001.jpg) top right/contain no-repeat;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 750px) {
  .top_main .special_block {
    padding-top: 285px;
    position: relative;
    left: -16px;
    max-width: calc(100% + 32px);
  }
}

.top_main .special_block .image {
  background-color: rgba(0, 0, 0, 0.8);
}

.top_main .special_block .image img {
  width: 539px;
}

.top_main .special_block .special_text_wrap {
  width: 520px;
  background: #2B2B2B;
  padding: 54px 38px 111px;
}

@media screen and (max-width: 750px) {
  .top_main .special_block .special_text_wrap {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 35px 13px 30px;
  }
}

.top_main .special_block .special_text01 {
  font-family:"font";
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  position: relative;
  text-shadow: 0px 0px 29px white;
  margin-bottom: 30px;
}

@media screen and (max-width: 750px) {
  .top_main .special_block .special_text01 {
    font-size: 42px;
    margin-bottom: 22px;
  }
}

.top_main .special_block .special_text02 {
  margin-bottom: 50px;
  width: 444px;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.7;
}

@media screen and (max-width: 750px) {
  .top_main .special_block .special_text02 {
    margin-bottom: 27px;
  }
}

.top_main .special_btn {
  width: 274px;
}

.top_main .special_btn a {
  display: block;
}

@media screen and (min-width: 750px) {
  .top_main .special_btn a {
    transition: .2s opacity;
  }
  .top_main .special_btn a:hover {
    opacity: 0.75;
  }
}

.top_foot_movie {
  position: relative;
  width: 100%;
  height: 42vw;
  overflow: hidden;
}
.top_foot_movie .video {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 100%;
  transform: translateX(-50%) translateY(-50%);
  position: relative;
}

.top_foot_movie::after {
  content: '';
  display: block;
  width: 100%;
  min-width: 900px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/top/movie_dots.png);

}


.top_main .white_filter {
  position: relative;
}

.top_main .white_filter::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 50%, white 100%);
  opacity: 0.8;
}

.black_filter {
  position: relative;
}

 .black_filter::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent 0%, transparent 0%, #000000 100%);
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.subpage_main {
  min-width: 1300px;
  margin: 0 auto;
  background: #0f0f10 url(../images/common/subpage_bg_001.png) left top/cover no-repeat;
}

@media screen and (max-width: 750px) {
  .subpage_main {
    min-width: auto;
    background-size: contain;
    overflow: hidden;
  }
}

.subpage_main .subpage_title_wrap {
  height: 56.25vw;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 750px) {
  .subpage_main .subpage_title_wrap {
    padding: 0 16px;
  }
}

.subpage_main .subpage_title {
  width: 980px;
  margin: 0 auto;
  position: relative;
  padding-top: 16px;
}

.subpage_main .subpage_title img {
  position: relative;
  top: 46px;
  left: -46px;
}

@media screen and (max-width: 750px) {
  .subpage_main .subpage_title img {
    top: 20px;
    left: -20px;
  }
}

.subpage_main .subpage_title.world_title img {
  width: 613px;
}

@media screen and (max-width: 750px) {
  .subpage_main .subpage_title.world_title img {
    width: 282px;
  }
}

.subpage_main .subpage_title.privacy_title img {
  width: 689px;
}

@media screen and (max-width: 750px) {
  .subpage_main .subpage_title.privacy_title img {
    width: 310px;
  }
}

@media screen and (min-width: 750px) {
  .subpage_main .subpage_title.privacy_title::after {
    bottom: -5px;
  }
}

.subpage_main .subpage_title.news_title img {
  width: 509px;
}

@media screen and (max-width: 750px) {
  .subpage_main .subpage_title.news_title img {
    width: 222px;
  }
}

@media screen and (min-width: 750px) {
  .subpage_main .subpage_title.news_title::after {
    bottom: -5px;
  }
}

.subpage_main .subpage_title.character_title {
  padding-top: 0;
}

.subpage_main .subpage_title.character_title img {
  width: 900px;
}

@media screen and (max-width: 750px) {
  .subpage_main .subpage_title.character_title img {
    width: 382px;
    max-width: 200%;
  }
}

@media screen and (min-width: 750px) {
  .subpage_main .subpage_title.character_title::after {
    bottom: -6px;
  }
}

@media screen and (max-width: 750px) {
  .subpage_main .subpage_title.system_title {
    margin-bottom: 66px;
  }
}

.subpage_main .subpage_title.system_title img {
  width: 623px;
}

@media screen and (max-width: 750px) {
  .subpage_main .subpage_title.system_title img {
    width: 382px;
    max-width: 200%;
  }
}

@media screen and (min-width: 750px) {
  .subpage_main .subpage_title.system_title::after {
    bottom: -6px;
  }
}

@media screen and (max-width: 750px) {
  .subpage_main .subpage_title.special_title {
    margin-bottom: 66px;
  }
}

.subpage_main .subpage_title.special_title img {
  width: 639px;
}

@media screen and (max-width: 750px) {
  .subpage_main .subpage_title.special_title img {
    width: 240px;
    max-width: 200%;
  }
}

@media screen and (min-width: 750px) {
  .subpage_main .subpage_title.special_title::after {
    bottom: -6px;
  }
}

@media screen and (max-width: 750px) {
  .subpage_main .subpage_title.about_title {
    margin-bottom: 66px;
    padding-left: 16px;
  }
}

.subpage_main .subpage_title.about_title img {
  width: 570px;
}

@media screen and (max-width: 750px) {
  .subpage_main .subpage_title.about_title img {
    width: 240px;
    max-width: 200%;
  }
}

@media screen and (min-width: 750px) {
  .subpage_main .subpage_title.about_title::after {
    bottom: -6px;
  }
}

.subpage_main .subpage_title::after {
  position: absolute;
  content: "";
  width: 142px;
  height: 8px;
  background-color: #FEE533;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 750px) {
  .subpage_main .subpage_title::after {
    bottom: -12px;
  }
}

.subpage_main .subpage_scroll_wrap {
  width: 980px;
  margin: 0 auto;
  position: relative;
}

.subpage_main .subpage_scroll {
  position: absolute;
  top: -54px;
  right: -88px;
  width: 81px;
  opacity: 0;
  animation: blink 800ms ease-in-out infinite alternate;
}

@media screen and (max-width: 750px) {
  .subpage_main .subpage_scroll {
    top: -66px;
    right: 0;
    left: 0;
    width: 44px;
    margin: 0 auto;
  }
}

.subpage_main .footer_area {
  padding-right: 32px;
  padding-left: 32px;
}

.subpage_main .footer_area_btn_wrap {
  margin-bottom: 43px;
}

@media screen and (max-width: 750px) {
  .subpage_main .app_area_wrap {
    width: 100%;
    margin-left: 16px;
  }
}

.privacy_main{
  overflow: hidden;
  background: #000000 ;
}

.subpage_main.privacy_main .subpage_title_wrap{
  background:url(../images/privacy/privacy_bg_001.png) center top/cover no-repeat;
}
@media screen and (max-width: 750px) {
  .subpage_main.privacy_main .subpage_title_wrap{
    background:url(../images/privacy/privacy_bg_001_sp.png) center top no-repeat;
    background-size: 100% auto;
  }
}

@media screen and (max-width: 750px) {
  .privacy_main .subpage_scroll {
    top: 0;
  }
}

.privacy_main .privacy_contents_wrap {
  width: 980px;
  margin: 0 auto;
  margin-top: calc(-56.25vw + 330px);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 20;
}

@media screen and (max-width: 750px) {
  .privacy_main .privacy_contents_wrap {
    margin-top: calc(-56.25vw + 226px);
  }
}
.privacy_list{
  display: flex;
}
.privacy_list li{
  width: 239px;
  margin-right: 12px;
  height: auto;
}
@media screen and (max-width: 750px) {
  .privacy_list{
    display: flex;
    margin: 0 auto;
    width: 310px;
  }
  .privacy_list li{
    width: 97px;
    margin-right: 6px;
  }
}
.privacy_main .privacy_content {
  background: #fff url(../images/privacy/privacy_img_001.png) top center/contain no-repeat;
  padding: 300px 40px 43px;
  margin: 60px 0 130px;
}

@media screen and (max-width: 750px) {
  .privacy_main .privacy_content {
    width: calc(100% - 32px);
    margin: 30px auto 62px;
    padding: 114px 16px 37px;
  }
}

.privacy_main .privacy_content_title {
  font-size: 60px;
  font-weight: bold;
  margin: 40px 0 40px;
  letter-spacing: -0.04em;
  z-index: 20;
  color: #000000;
  font-family:"font";
}

@media screen and (max-width: 750px) {
  .privacy_main .privacy_content_title {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 12px;
    margin-top: 12px;
  }
}
.privacy_main .privacy_text_wrap {
  margin-bottom: 30px;
  color: #000000;
}
.privacy_main .privacy_text_wrap h3{
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 4px;
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .privacy_main .privacy_text_wrap h3{
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: 10px;
  }
}
.privacy_main .privacy_text_wrap p {
  font-size: 16px;
  line-height: 1.7;
}
.privacy_main .pagination {
  display: flex;
  justify-content: center;
  padding: 44px 0 13px;
}
@media screen and (max-width: 750px) {
  .privacy_main .pagination {
    padding: 40px 0 3px;
  }
}
.privacy_main .pagination li:not(:first-child) {
  margin-left: 10px;
}
.privacy_main .pagination li.active a {
  background-color: transparent;
  border-color: #FEE533;
  color: #000000;
}
.privacy_main .pagination li a {
  display: block;
  color: #fff;
  border-bottom: 1px solid transparent;
  background-color: #000;
  font-size: 20px;
  height: 32px;
  width: 24px;
  padding: 2px 0 6px;
  text-align: center;
  text-decoration: none;
}
@media screen and (min-width: 750px) {
  .privacy_main .pagination li a {
    transition: .2s opacity;
  }
}
@media screen and (min-width: 750px) {
  .privacy_main .pagination li a:hover {
    opacity: 0.75;
  }
}

/* ????????? */

.subpage_main.world_main .subpage_title_wrap{
  z-index: 0;
}

@media screen and (max-width: 750px) {
  .world_main .subpage_scroll {
    top: 0;
  }
}
.world_main .world_list_wrap_outer {
  background: linear-gradient(180deg, #000 0%, #000 70px, #fff 70px, #fff 100%);
  padding-bottom: 55px;
}
@media screen and (max-width: 750px) {
  .world_main .world_list_wrap_outer {
    background: linear-gradient(180deg, #000 0%, #000 54px, #fff 54px, #fff 100%);
    padding-bottom: 52px;
  }
}
.world_main .world_list_wrap {
  width: 980px;
  margin: -71px auto 52px;
  margin-top: calc(-56.25vw + 330px);
  display: flex;
  justify-content: space-between;
  height: auto;
}
@media screen and (max-width: 750px) {
  .world_main .world_list_wrap {
    flex-wrap: wrap;
    padding: 0 16px;
    margin: -30px auto 52px;
  }
}
.world_main .world_list_wrap.list02 {
  margin-top: 70px;
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .world_main .world_list_wrap.list02 {
    margin-top: 51px;
  }
}
.world_main .world_list_outer {
  align-self: flex-start;
  width: 218px;
  overflow: hidden;
  height: 123px;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(85, 130, 176, 0.8);
}
@media screen and (max-width: 750px) {
  .world_main .world_list_outer {
    width: calc(50% - 9px);
    height: auto;
  }
}

.world_main .world_list_outer:nth-child(3), .world_main .world_list_outer:nth-child(4) {
  pointer-events: none;
}

@media screen and (max-width: 750px) {
  .world_main .world_list_outer:nth-child(-n + 2) {
    margin-bottom: 14px;
  }
}

.world_main .world_list_outer .world_list {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 218px;
}

@media screen and (max-width: 750px) {
  .world_main .world_list_outer .world_list img {
    height: 92px;
    width: 100%;
  }
}

.world_main .world_list_outer .world_list_text {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  height: 26px;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  font-size: 16px;
}

@media screen and (max-width: 750px) {
  .world_main .world_list_outer .world_list_text {
    height: 20px;
    font-size: 12px;
  }
}

.world_main .world_list_outer.active .world_list_text {
  background-color: #FEE533;
  color: #000000;
}

@media screen and (min-width: 750px) {
  .world_main .world_list_outer img {
    transition: all 250ms ease-out;
    height: 123px;
    width: 218px;
  }
  .world_main .world_list_outer:hover img {
    transform: scale(1.2, 1.2);
  }
}

.world_main .world_contents_wrap {
  width: 980px;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.16);
  /* background: linear-gradient(180deg, #000 0%, #000 300px, #fff 300px, #fff 100%); */
}

@media screen and (max-width: 750px) {
  .world_main .world_contents_wrap {
    width: calc(100% - 32px);
    /* background: linear-gradient(180deg, #000 0%, #000 240px, #fff 240px, #fff 100%); */
  }
}

.world_main .world_content {
  display: none;
  padding: 300px 0 0;
}
.world_main .world_content .world_bg1{
  background:url(../images/world/p1-bg1.png) top center no-repeat;
  margin-top: 48px;
  padding: 0 40px;
}
@media screen and (max-width: 750px) {
  .world_main .world_content {
    padding: 114px 0 50px;
    background-color: #fff;
  }
  .world_main .world_content .world_bg1{
    background:url(../images/world/p1-bg1_sp.png) top center no-repeat;
    margin-top: 20px;
    padding: 0 10px;
  }
}
.world_main .world_content.content01 {
  background:url(../images/world/world_img_005.png) top center/contain no-repeat;
}
.world_main .world_content.content02 {
  background:url(../images/world/world_img_009.png) top center/contain no-repeat;
  padding: 410px 0 0;
}
@media screen and (max-width: 750px) {
  .world_main .world_content.content02 {
    padding: 150px 0 30px;
  }
}
.world_main .world_content.content02 .team_list li {
  padding: 50px 0;
  margin-top: 45px;
}
.world_main .world_content.content02 .team_list li:nth-child(1) {
  background:url(../images/world/p2-bg1.png) top center no-repeat;
}
.world_main .world_content.content02 .team_list li:nth-child(2) {
  background:url(../images/world/p2-bg2.png) top center no-repeat;
}
.world_main .world_content.content02 .team_list li:nth-child(3) {
  background:url(../images/world/p2-bg3.png) top center no-repeat;
}
.world_main .world_content.content02 .team_list li:nth-child(4) {
  background:url(../images/world/p2-bg4.png) top center no-repeat;
}
.world_main .world_content.content02 .team_list li:nth-child(5) {
  background:url(../images/world/p2-bg5.png) top center no-repeat;
}
.world_main .world_content.content02 .team_list li:nth-child(6) {
  background:url(../images/world/p2-bg6.png) top center no-repeat;
}
@media screen and (max-width: 750px) {
  .world_main .world_content.content02 .team_list li {
    padding: 25px 16px;
    margin-top: 32px;
  }
  .world_main .world_content.content02 .team_list li:nth-child(1) {
    background:url(../images/world/p2-bg1_sp.png) top center no-repeat;
  }
  .world_main .world_content.content02 .team_list li:nth-child(2) {
    background:url(../images/world/p2-bg2_sp.png) top center no-repeat;
  }
  .world_main .world_content.content02 .team_list li:nth-child(3) {
    background:url(../images/world/p2-bg3_sp.png) top center no-repeat;
  }
  .world_main .world_content.content02 .team_list li:nth-child(4) {
    background:url(../images/world/p2-bg4_sp.png) top center no-repeat;
  }
  .world_main .world_content.content02 .team_list li:nth-child(5) {
    background:url(../images/world/p2-bg5_sp.png) top center no-repeat;
  }
  .world_main .world_content.content02 .team_list li:nth-child(6) {
    background:url(../images/world/p2-bg6_sp.png) top center no-repeat;
  }
}
.world_main .world_content.content02 .team_list .team_name {
  font-size: 60px;
  font-weight: bold;
  position: relative;
  color: #ffffff;
  text-align: center;
  line-height: 80px;
  
}
.world_main .world_content.content02 .team_list li p{
  font-size: 16px;
  color: #ffffff;
  width: 810px;
  margin: 0 auto;
  line-height: 20px;
  
}
.world_main .world_content.content02 .team_list li p.a_center{
  text-align: center;
}
.world_main .world_content.content02 .team_list li .image_block{
  margin: 36px auto 0;
}
.image_block img{
  display: block;margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .world_main .world_content.content02 .team_list .team_name{
    font-size: 34px;
    font-weight: normal;
  }
  .world_main .world_content.content02 .team_list li .image_block{
    margin: 50px auto 20px;
  }
  .world_main .world_content.content02 .team_list li p{
    text-align: left;
  }
}

.world_main .world_content.show {
  display: block;
  opacity: 0;
  animation: world_content_anime 1s 0s ease forwards;
}

@keyframes world_content_anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.world_main .world_content_copy {
  font-size: 60px;
  font-weight: bold;
  width: calc(100% + 60px);
  max-width: none;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 20;
  padding: 40px 0;
  color: #ffffff;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .world_main .world_content_copy {
    font-size: 32px;
    width: 100%;
    line-height: 1.25;
    margin-bottom: 13px;
    text-align: center;
    font-weight: normal;
  }
  .world_main .world_content_copy span{display: block;}
}

.world_main .image_side_box {
  position: relative;
  padding-bottom: 30px;
}

.world_main .image_side_box .text_area {
  width: 715px;
  z-index: 20;
  position: relative;
  margin: 0 auto;
}
.world_main .image_side_box .text_area.telsn p{
  text-align: center;
}
@media screen and (max-width: 750px) {
  .world_main .image_side_box .text_area {
    width: 100%;
  }
}

.world_main .image_side_box .world_text01 {
  line-height: 1.65;
  color: #ffffff;
  text-align: center;
}

.world_main .image_side_box .world_text01:not(:last-child) {
  margin-bottom: 15px;
  font-size: 16px;
}

@media screen and (max-width: 750px) {
  .world_main .image_side_box .text_area.telsn p{
    text-align: left;
  }
  .world_main .image_side_box .world_text01:not(:last-child) {
    margin-bottom: 15px;
  }
}



.world_main .image_side_box .image_area {
  position: absolute;
}
.world_main .image_side_box img{
  margin: 0 auto;
  display: block;
}



/* ???? */

.character_main {
  background: #000000;
  overflow: hidden;
  position: relative;
}
.character_main .character_video_wrap{
  width: 100%;
  min-height: 800px;
  position: absolute;
  left: 0;
  top: 0;
  background:url(../images/top/top_bg_0011.gif) center top no-repeat;
  background-size: 100% auto
}
@media screen and (max-width: 750px) {
  .character_main .character_video_wrap{
    
  }
}
.character_main .character_video {
  min-width: 100%;
  min-height: 590px;
  z-index: 1;
}

@media screen and (max-width: 750px) {
  .character_main .special_video_wrap {
    width: calc(100% + 32px);
    position: absolute;
    left: -16px;
    background:url(../images/top/top_bg_0011_sp.png) center top no-repeat;
    background-size: 100% auto;
    height: 134vw;
    max-width: calc(100% + 32px);
  }
}
@media screen and (max-width: 750px) {
  .character_main .character_video {
    min-height: auto;
    max-width: 160%;
    z-index: -10;
    opacity: 0.4;
    display: none;
  }
}


.character_main .subpage_scroll {
  top: 0;
}
.character_main .character_body {
  width: 980px;
  background: #111111 url(../images/character/character_head_bg_001.png) top center/contain no-repeat;
  padding: 300px 0 30px;
  box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.1);
  margin: calc(-56.25vw + 330px) auto 30px;
  transition: 0.2s all;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 750px) {
  .character_main .character_body {
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.3);
    padding: 106px 0 0;
    width: calc(100% - 32px);
    margin: -44px auto 30px;
  }
}

.character_main .character_tab_list_wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 37px;
  padding: 7px 5px 0;
  border-bottom: 1px solid #707070;
}

@media screen and (max-width: 750px) {
  .character_main .character_tab_list_wrap {
    padding: 0 1px;
    margin-bottom: 36px;
  }
}

.character_main .character_tab_outer {
  width: 20%;
  border-bottom: 1px solid #707070;
  margin-bottom: 41px;
}

.character_main .character_tab {
  display: flex;
  flex-direction: column;
  padding-bottom: 25px;
  border-bottom: 4px solid transparent;
  width: 168px;
  height: 207px;
  transition: .2s all;
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .character_main .character_tab {
    width: 59px;
    height: 121px;
    padding-bottom: 13px;
  }
}

.character_main .character_tab.active {
  border-bottom: 4px solid #FEE533;
}

.character_main .character_tab:not(:first-child) {
  margin-left: 17px;
}

@media screen and (max-width: 750px) {
  .character_main .character_tab:not(:first-child) {
    margin-left: 6px;
  }
}

.character_main .character_tab img {
  position: relative;
  width: 137px;
}

@media screen and (max-width: 750px) {
  .character_main .character_tab img {
    width: 50px;
  }
}

.character_main .character_tab:nth-child(1) img {
  top: 23px;
}

@media screen and (max-width: 750px) {
  .character_main .character_tab:nth-child(1) img {
    top: 34px;
  }
}

.character_main .character_tab:nth-child(2) img {
  top: 17px;
}

@media screen and (max-width: 750px) {
  .character_main .character_tab:nth-child(2) img {
    top: 32px;
  }
}

.character_main .character_tab:nth-child(3) img {
  top: 32px;
}

@media screen and (max-width: 750px) {
  .character_main .character_tab:nth-child(3) img {
    top: 38px;
  }
}

.character_main .character_tab:nth-child(4) img {
  top: 23px;
}

@media screen and (max-width: 750px) {
  .character_main .character_tab:nth-child(4) img {
    top: 35px;
  }
}

.character_main .character_tab:nth-child(5) img {
  top: 26px;
}

@media screen and (max-width: 750px) {
  .character_main .character_tab:nth-child(5) img {
    top: 36px;
  }
}

.character_main .character_tab:nth-child(6) img {
  top: 26px;
}

@media screen and (max-width: 750px) {
  .character_main .character_tab:nth-child(6) img {
    top: 36px;
  }
}

.character_main .character_tab .character_tab_text {
  font-size: 18px;
  color: #FFFFFF;
  margin: auto auto 0;
  text-align: center;
  font-family:"font";
}

@media screen and (max-width: 750px) {
  .character_main .character_tab .character_tab_text {
    font-size: 12px;
  }
}

.character_main .character_area_wrap {
  padding: 0 40px;
}

@media screen and (max-width: 750px) {
  .character_main .character_area_wrap {
    padding: 0 16px;
  }
}

.character_main .character_area {
  display: none;
}

.character_main .character_area.show {
  display: block;
}

.character_main .area_title_wrap {
  text-align: center;
}

.character_main .area_title {
  font-size: 24px;
  color: #FFFFFF;
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  font-family:"font";
}

.character_main .area_title::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background-color: #FEE533;
  bottom: -18px;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}

.character_main .character_list_wrap {
  display: flex;
}

@media screen and (max-width: 750px) {
  .character_main .character_list_wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}




.character_main .character_list {
  cursor: pointer;
  flex: 1;
}

@media screen and (max-width: 750px) {
  .character_main .character_list {
    flex: none;
    width: calc(50% - 10px);
  }
}

.character_main .character_list:not(:first-child) {
  margin-left: 32px;
}

@media screen and (max-width: 750px) {
  .character_main .character_list:not(:first-child) {
    margin-left: 20px;
  }
}

@media screen and (max-width: 750px) {
  .character_main .character_list:nth-child(3) {
    margin-top: 20px;
  }
}

.character_main .character_list.active .character_name {
  background-color: #FEE533;
}

.character_main .character_list.active .image_wrap {
  opacity: 1;
}

.character_main .character_list .image_wrap {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  margin-bottom: 13px;
  position: relative;
  opacity: 0.7;
  overflow: hidden;
  transition: .2s all;
}

.character_main .character_list .character_name {
  background-color: #fff;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  height: 31px;
  display: flex;
  align-items: center;
  padding: 0px 9px 1px;
  transition: .2s all;
}

@media screen and (max-width: 750px) {
  .character_main .character_list .character_name {
    height: 28px;
  }
}

@media screen and (min-width: 750px) {
  .character_main .character_list img {
    transition: all 250ms ease-out;
    height: 154px;
    width: 154px;
  }
  .character_main .character_list:hover .image_wrap img {
    transform: scale(1.2, 1.2);
  }
}

@media screen and (max-width: 750px) {
  .character_main .slick-list {
    overflow: visible;
  }
}

.character_main .slick-list div {
  max-width: none !important;
}

.character_main .character_list_wrap {
  width: 100%;
}

.character_main .character_list img {
  width: 100%;
  vertical-align: bottom;
}

.character_main .character_detail_wrap {
  width: 1262px;
  margin-left: -132px;
  max-width: 1262px;
}

@media screen and (max-width: 750px) {
  .character_main .character_detail_wrap {
    width: calc(100% + 32px);
    margin-left: -16px;
  }
}

.character_main .character_detail {
  position: relative;
  width: 980px;
  margin: 0 auto;
}

.character_main .character_detail_inner {
  width: 980px;
  margin: 0 auto;
  position: relative;
  left: -50px;
  padding: 160px 40px 30px;
}

@media screen and (max-width: 750px) {
  .character_main .character_detail_inner {
    width: 100%;
    padding: 32px 16px 0;
    left: 0;
  }
}

.character_main .character_banner {
  margin-bottom: 25px;
  width: calc(100% + 80px);
  position: relative;
  left: -40px;
  max-width: calc(100% + 80px);
}

@media screen and (max-width: 750px) {
  .character_main .character_banner {
    width: calc(100% + 32px);
    left: -18px;
    margin-bottom: 362px;
    height: 343px;
  }
}

.character_main .character_image {
  position: absolute;
  top: 48px;
  right: -63px;
  width: 694px;
}

@media screen and (max-width: 750px) {
  .character_main .character_image {
    top: 320px;
    right: -46px;
    width: 506px;
    max-width: 300%;
  }
}

@media screen and (max-width: 750px) {
  .character_main .character_image.sharona, .character_main .character_image.hiiro, .character_main .character_image.michael, .character_main .character_image.sheol, .character_main .character_image.sinsa, .character_main .character_image.kafka, .character_main .character_image.jona, .character_main .character_image.bethlehem, .character_main .character_image.louise, .character_main .character_image.noah {
    right: -80px;
  }
}

@media screen and (max-width: 750px) {
  .character_main .character_image.raphael, .character_main .character_image.istvan, .character_main .character_image.kleken {
    right: -60px;
  }
}

@media screen and (max-width: 750px) {
  .character_main .character_image img {
    width: 100%;
  }
}

.character_main .character_detail_text,
.character_main .character_sex,
.character_main .character_age,
.character_main .character_birthday {
  color: #fff;
  font-size: 16px;
  font-family: 'Noto Serif JP',
 serif;
}

.character_main .character_data {
  display: flex;
  font-family: 'Gothic',serif;
}

@media screen and (max-width: 750px) {
  .character_main .character_data {
    flex-direction: column;
  }
}

.character_main .character_age,
.character_main .character_birthday {
  margin-left: 20px;
}

@media screen and (max-width: 750px) {
  .character_main .character_age,
  .character_main .character_birthday {
    margin-left: 0;
  }
}

.character_main .character_age,
.character_main .character_birthday,
.character_main .character_sex {
  margin-bottom: 10px;
}

.character_main .character_detail_text {
  width: 444px;
  line-height: 1.65;
  margin-bottom: 20px;
  position: relative;
  z-index: 20;
  font-family: 'Gothic',serif;
}

@media screen and (max-width: 750px) {
  .character_main .character_detail_text {
    margin-bottom: 26px;
  }
}

.character_main .character_voice_btn_wrap {
  display: flex;
}

@media screen and (max-width: 750px) {
  .character_main .character_voice_btn_wrap {
    flex-direction: column;
  }
}

@media screen and (min-width: 750px) {
  .character_main .character_voice_btn_wrap li:not(:first-child) {
    margin-left: 10px;
  }
}

.character_main .character_voice_btn {
  width: 190px;
  margin-bottom: 38px;
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .character_main .character_voice_btn {
    margin-bottom: 42px;
  }
}

.character_main .character_gallery_title {
  font-size: 24px;
  color: #FFFFFF;
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.character_main .character_gallery_title::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background-color: #FEE533;
  bottom: -18px;
  left: 0;
}

.character_main .character_gallery {
  display: flex;
}

@media screen and (min-width: 750px) {
  .character_main .character_gallery {
    padding-bottom: 5px;
  }
}

@media screen and (max-width: 750px) {
  .character_main .character_gallery {
    flex-direction: column;
  }
}

@media screen and (min-width: 750px) {
  .character_main .character_gallery li:not(:first-child) {
    margin-left: 40px;
  }
}

@media screen and (max-width: 750px) {
  .character_main .character_gallery li:not(:first-child) {
    margin-top: 16px;
  }
}

.character_main .character_gallery .image_wrap {
  width: 274px;
  height: 173px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 750px) {
  .character_main .character_gallery .image_wrap {
    width: 100%;
    height: auto;
  }
}

.character_main .slick-prev,
.character_main .slick-next {
  pointer-events: all;
  top: 30.2%;
  z-index: 20;
  cursor: pointer;
}

@media screen and (min-width: 750px) {
  .character_main .slick-prev,
  .character_main .slick-next {
    transition: .2s opacity;
  }
  .character_main .slick-prev:hover,
  .character_main .slick-next:hover {
    opacity: 0.75;
  }
}

@media screen and (max-width: 750px) {
  .character_main .slick-prev,
  .character_main .slick-next {
    top: 340px;
  }
}

.character_main .slick-prev::before,
.character_main .slick-next::before {
  position: absolute;
  content: "";
}

.character_main .slick-prev {
  background: #333333;
  opacity: 1;
  border-radius: 50%;
  width: 77px;
  height: 77px;
  left: -48px;
}

@media screen and (max-width: 750px) {
  .character_main .slick-prev {
    width: 48px;
    height: 48px;
    left: -15px;
  }
}

.character_main .slick-prev::before {
  content: "";
  width: 23px;
  height: 23px;
  border-top: 1px solid #fff;
  opacity: 1;
  border-left: 1px solid #fff;
  transform: rotate(-45deg);
  top: calc(50% - 12px);
  bottom: auto;
  right: calc(50% - 16px);
  position: absolute;
}

@media screen and (max-width: 750px) {
  .character_main .slick-prev::before {
    width: 13px;
    height: 13px;
    top: calc(50% - 7px);
    right: calc(50% - 8px);
  }
}

.character_main .slick-next {
  background: #333333;
  opacity: 1;
  border-radius: 50%;
  width: 77px;
  height: 77px;
  right: 48px;
}

@media screen and (max-width: 750px) {
  .character_main .slick-next {
    width: 48px;
    height: 48px;
    right: -15px;
  }
}

.character_main .slick-next::before {
  content: "";
  width: 23px;
  height: 23px;
  border-top: 1px solid #fff;
  opacity: 1;
  border-left: 1px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: calc(50% - 12px);
  left: calc(50% - 16px);
  bottom: auto;
  position: absolute;
}

@media screen and (max-width: 750px) {
  .character_main .slick-next::before {
    width: 13px;
    height: 13px;
    top: calc(50% - 7px);
    left: calc(50% - 8px);
  }
}


.character_voice{
display: flex;
margin-top: 20px;
}
.character_voice a{
  display: block;
  width: 190px;
  height: 46px;
  background:url(../images/character/character_btn_001.png) center top/cover no-repeat;
  margin:0 20px 0 0;
  font-size: 20px;
  color: #000;
  font-weight: bold;
  line-height: 46px;
  text-align: center;
  position: relative;
}
.character_voice a.on{
  background:url(../images/character/character_btn_002.jpg) center top/cover no-repeat;
 
}
.character_voice a.on::before{
width: 24px;
height: 24px;
background:url(../images/character/btns.gif) center top/cover no-repeat;
position: absolute;
top: 11px;
right: 10px;
content: "";
z-index: 5;
}
.character_voice a:hover{
  opacity: 0.7;
}
@media screen and (max-width: 750px) {
  .character_voice{
    flex-wrap:wrap;
  }
  .character_voice a{
    margin:0 0 15px 0;
  }
}

.system_main {
  background-color: #000;
}

.system_main .subpage_title_wrap {
  background: url(../images/system_bg_001.png) top center/cover no-repeat;
}

@media screen and (max-width: 750px) {
  .system_main .subpage_scroll {
    top: 0;
  }
}

.system_main .system_contents_wrap {
  width: 980px;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.16);
  background: linear-gradient(180deg, #000 0%, #000 300px, #fff 300px, #fff 100%);
}

@media screen and (max-width: 750px) {
  .system_main .system_contents_wrap {
    width: calc(100% - 32px);
    background: linear-gradient(180deg, #000 0%, #000 240px, #fff 240px, #fff 100%);
  }
}

.system_main .system_content {
  padding: 340px 40px 55px;
  background: #fff url(../images/system_img_001.png) top center/contain no-repeat;
  margin-top: calc(-56.25vw + 346px);
}

@media screen and (max-width: 750px) {
  .system_main .system_content {
    padding: 114px 16px 353px;
    margin-top: calc(-56.25vw + 226px);
  }
}

.system_main .image_side_box {
  position: relative;
}

.system_main .image_side_box.box01 {
  margin-bottom: 88px;
}

.system_main .image_side_box.box02 {
  margin-bottom: 126px;
}

.system_main .image_side_box.box03 {
  margin-bottom: 156px;
}

.system_main .image_side_box.box04 {
  margin-bottom: 124px;
}

.system_main .image_side_box .text_area {
  width: 578px;
  z-index: 20;
  position: relative;
}

@media screen and (max-width: 750px) {
  .system_main .image_side_box .text_area {
    width: 100%;
  }
}

.system_main .image_side_box .box_title {
  font-size: 48px;
  margin-bottom: 18px;
  font-family: 'Noto Serif JP',
 serif;
  font-weight: bold;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.system_main .image_side_box .system_text01 {
  line-height: 1.65;
  margin-bottom: 28px;
  font-size: 16px;
}

.system_main .image_side_box .image_area {
  position: absolute;
}

.system_main .image_side_box .image_area.image01 {
  top: -25px;
  right: -104px;
  width: 527px;
}

@media screen and (max-width: 750px) {
  .system_main .image_side_box .image_area.image01 {
    top: -8px;
    right: -56px;
    width: 189px;
  }
}

.system_main .image_side_box .image_area.image02 {
  width: 559px;
  top: -60px;
  left: -164px;
}

@media screen and (max-width: 750px) {
  .system_main .image_side_box .image_area.image02 {
    width: 372px;
    top: auto;
    left: -29px;
    bottom: -358px;
    right: 0;
    margin: 0 auto;
    max-width: none;
  }
}

.system_main .image_side_box .image_area.image03 {
  width: 649px;
  top: -49px;
  right: -260px;
}

@media screen and (max-width: 750px) {
  .system_main .image_side_box .image_area.image03 {
    width: 311px;
    top: auto;
    left: 0;
    bottom: -34px;
    right: 0;
    margin: 0 auto;
    max-width: none;
  }
}

.system_main .image_side_box .image_area.image04 {
  top: -169px;
  width: 541px;
  left: -192px;
}

@media screen and (max-width: 750px) {
  .system_main .image_side_box .image_area.image04 {
    width: 311px;
    top: auto;
    left: 0;
    bottom: -2px;
    right: 0;
    margin: 0 auto;
    max-width: none;
  }
}

.system_main .image_side_box .image_area.image05 {
  top: -98px;
  width: 754px;
  right: -284px;
}

@media screen and (max-width: 750px) {
  .system_main .image_side_box .image_area.image05 {
    width: 200px;
    top: -6px;
    right: -68px;
    margin: 0 auto;
    max-width: none;
  }
}

.system_main .image_side_box .image_area.image06 {
  top: -13px;
  width: 475px;
  left: -149px;
}

@media screen and (max-width: 750px) {
  .system_main .image_side_box .image_area.image06 {
    width: 202px;
    top: -5px;
    left: -67px;
    max-width: none;
  }
}



.special_main{
  overflow: hidden;
  position: relative;
  background: #000;
}
.special_video_wrap{
  width: 100%;
  height: 800px;
  overflow: hidden;
  position: absolute;
  left: 0;top: 0;
  background:url(../images/top/top_bg_0011.gif) center top no-repeat;
  background-size: 100% auto
}
.special_main .character_video {
  min-width: 100%;
  min-height: 590px;
  z-index: 1;
}


@media screen and (max-width: 750px) {
  .special_main .special_video_wrap {
    width: calc(100% + 32px);
    position: absolute;
    left: -16px;
    height: 134vw;
    max-width: calc(100% + 32px);
  }
}

@media screen and (max-width: 750px) {
  .special_main .character_video {
    min-height: auto;
    max-width: 160%;
    z-index: -10;
    opacity: 0.4;
    display: none;
  }
}

.special_main .special_body {
  width: 980px;
  margin: -60px auto 30px;
  margin-top: calc(-56.25vw + 330px);
  background: #111111 url(../images/special/special_img_001.png) top center/contain no-repeat;
  box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.1);
  padding: 300px 0 0;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 750px) {
  .special_main .special_body {
    padding: 106px 0 0;
    width: calc(100% - 32px);
    margin: -44px auto 30px;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.3);
  }
}

.special_main .special_body_text {
  padding: 40px 40px 50px;
  color: #fff;
  font-size: 20px;
  line-height:1.15;
}

@media screen and (max-width: 750px) {
  .special_main .special_body_text {
    padding: 40px 16px 40px;
    font-size: 16px;
  }
}

.special_main .special_tab_list_wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 33px;
  padding: 0 35px;
  border-bottom: 1px solid #707070;
}

@media screen and (max-width: 750px) {
  .special_main .special_tab_list_wrap {
    padding: 0 12px;
    margin-bottom: 36px;
  }
}

.special_main .special_tab_outer {
  width: 20%;
  border-bottom: 1px solid #707070;
  margin-bottom: 41px;
}

.special_main .special_tab {
  display: flex;
  flex-direction: column;
  padding-bottom: 25px;
  border-bottom: 4px solid transparent;
  width: 215px;
  transition: .2s all;
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .special_main .special_tab {
    width: 75px;
    padding-bottom: 13px;
  }
}

.special_main .special_tab.active {
  border-bottom: 4px solid #FEE533;
}

.special_main .special_tab:not(:first-child) {
  margin-left: 17px;
}

@media screen and (max-width: 750px) {
  .special_main .special_tab:not(:first-child) {
    margin-left: 6px;
  }
}

.special_main .special_tab .special_tab_text {
  font-size: 18px;
  color: #FFFFFF;
  margin: auto auto 0;
  text-align: center;
  /* display: flex; */
  align-items: center;
  min-height: 2.2em;
  line-height: 1.15;
}

.special_main .special_tab .special_tab_text.new {
  position: relative;
}

.special_main .special_tab .special_tab_text.new::before {
  content: "NEW";
  position: absolute;
  top: -15px;
  left: 0;
  margin: 0 auto;
  right: 0;
  width: 45px;
  background: #fee533;
  font-size: 12px;
  padding: 3px 0px;
  text-align: center;
  font-weight: bold;
  color: #000;
}

@media screen and (max-width: 750px) {
  .special_main .special_tab .special_tab_text {
    font-size: 12px;
  }
  .special_main .special_tab .special_tab_text span{
    display: block;
  }
}

.special_main .special_area_wrap {
  padding: 0 40px 14px;
}

@media screen and (max-width: 750px) {
  .special_main .special_area_wrap {
    padding: 0 16px 48px;
  }
}

.special_main .special_area {
  display: none;
}

.special_main .special_area.show {
  display: block;
}

.special_main .area_title_wrap {
  text-align: center;
}

.special_main .special_content_wrap {
  padding-bottom: 45px;
}

.special_main .js_special_content {
  display: none;
}

.special_main .js_special_content.show {
  display: block;
}

.special_main .special_content {
  padding: 0 40px;
}

@media screen and (max-width: 750px) {
  .special_main .special_content {
    padding: 0 16px;
  }
}

.special_main .content_title {
  font-size: 24px;
  color: #FFFFFF;
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  font-family:"font";
}

.special_main .content_title::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background-color: #FEE533;
  bottom: -18px;
  left: 0;
}

.special_main .dl_label {
  margin-top: 12px;
  height: 30px;
  background: #fff url(../images/special/ico_download.png) center right 12px/16px no-repeat;
  color: #000;
  padding: 4px 36px 4px 12px;
  font-weight: bold;
  line-height: 1.15;
}

.special_main .content01 .content_list {
  display: flex;
  flex-wrap: wrap;
  height: 450px;
  flex-grow: 1;
  justify-content:space-between;
  flex-direction: column;
}

@media screen and (max-width: 750px) {
  .special_main .content01 .content_list {
    height: auto;
    flex-direction: row;
    justify-content: space-between;
  }
}

.special_main .content01 .content_list li {
  width: calc(100% / 5 - 24px);
  position: relative;
}

@media screen and (max-width: 750px) {
  .special_main .content01 .content_list li {
    width: calc(50% - 10px);
    margin-bottom: 18px;
  }
}

.special_main .content01 .content_list li.new::before {
  content: "NEW";
  position: absolute;
  top: -6px;
  left: -5px;
  width: 45px;
  background: #fee533;
  font-size: 12px;
  padding: 3px 0px;
  text-align: center;
  font-weight: bold;
}

.special_main .content01 .content_list li:nth-child(even) {
  /* margin-top: 30px; */
}

@media screen and (max-width: 750px) {
  .special_main .content01 .content_list li:nth-child(even) {
    margin-top: 0;
  }
}

.special_main .content02 .content_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  .special_main .content02 .content_list {
    height: auto;
    flex-direction: row;
    justify-content: space-between;
  }
}

.special_main .content02 .content_list li {
  width: calc(100% / 3 - 26px);
  position: relative;
}

.special_main .content02 .content_list li:nth-child(n + 4) {
  margin-top: 30px;
}

@media screen and (max-width: 750px) {
  .special_main .content02 .content_list li:nth-child(n + 4) {
    margin-top: 0;
  }
}

@media screen and (max-width: 750px) {
  .special_main .content02 .content_list li:not(:first-child) {
    margin-top: 20px;
  }
}

@media screen and (max-width: 750px) {
  .special_main .content02 .content_list li {
    width: 100%;
  }
}

.special_main .content03 .content_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  .special_main .content03 .content_list {
    height: auto;
    flex-direction: row;
    justify-content: space-between;
  }
}

.special_main .content03 .content_list li {
  width: calc(100% / 3 - 26px);
  position: relative;
}

@media screen and (max-width: 750px) {
  .special_main .content03 .content_list li:not(:first-child) {
    margin-top: 20px;
  }
}

@media screen and (max-width: 750px) {
  .special_main .content03 .content_list li {
    width: 100%;
  }
}

.special_main .content03 .chara_name {
  margin-top: 8px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
.special_main .content04 .content_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  .special_main .content04 .content_list {
    height: auto;
    flex-direction: row;
    justify-content: space-between;
  }
}

.special_main .content04 .content_list > li {
  width: calc(100% / 2 - 16px);
  position: relative;
}

.special_main .content04 .content_list > li:nth-child(even) {
  margin-left: 32px;
}

@media screen and (max-width: 750px) {
  .special_main .content04 .content_list > li:nth-child(even) {
    margin-left: 0;
  }
}

.special_main .content04 .content_list > li:nth-child(n + 3) {
  margin-top: 34px;
}

@media screen and (max-width: 750px) {
  .special_main .content04 .content_list > li:nth-child(n + 3) {
    margin-top: 0;
  }
}

@media screen and (max-width: 750px) {
  .special_main .content04 .content_list > li:not(:first-child) {
    margin-top: 24px;
  }
}

@media screen and (max-width: 750px) {
  .special_main .content04 .content_list > li {
    width: 100%;
  }
}

@media screen and (max-width: 750px) {
  .special_main .content04 .content_list .dl_label {
    margin-top: 8px;
  }
}

.special_main .content04 .dl_list {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
}

.special_main .content04 .dl_list > li {
  width: calc(100% / 2 - 4px);
}

@media screen and (max-width: 750px) {
  .special_main .content04 .dl_list > li {
    width: 100%;
  }
}

.special_main .content04 .dl_list > li:nth-child(even) {
  margin-left: 8px;
}

@media screen and (max-width: 750px) {
  .special_main .content04 .dl_list > li:nth-child(even) {
    margin-left: 0;
  }
}


.special_main .comics_new_wrap {
  width: 430px;
  margin: 0 auto;
}

.special_main .comics_label {
  display: block;
  margin-top: 12px;
  height: 30px;
  background: #fff;
  color: #000;
  padding: 4px 36px 4px 12px;
  font-weight: bold;
  font-size: 18px;
}

/* about */
.about_main{
  overflow: hidden;
  position: relative;
}
.about_main .system_bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 43vw;

  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 750px) {
  .about_main .system_bg {
    height: 134vw;

  }
}

.about_main .about_contents_wrap {
  width: 980px;
  margin: calc(-56.25vw + 330px) auto 0;
  position: relative;
  padding-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .about_main .about_contents_wrap {
    width: calc(100% - 32px);
    margin-top: calc(-56.25vw + 226px);
   
  }
}
.about_main .about_content {
  background: #000 url(../images/about/about_img_001.png) top center/contain no-repeat;
  padding: 330px 0 66px;
}

@media screen and (max-width: 750px) {
  .about_main .about_content {
    padding: 126px 0 34px;
    margin: -48px auto 40px;
  }
}

.about_main .image_side_box {
  position: relative;
  margin-top: 45px;
  padding: 60px 0 30px;
}
.about_main .image_side_box.box01{
  background:url(../images/about/about_bg001.jpg) top center no-repeat;
}
.about_main .image_side_box.box02 {
  background:url(../images/about/about_bg002.jpg) top center no-repeat;
}
.about_main .image_side_box.box03 {
  background:url(../images/about/about_bg003.jpg) top center no-repeat;
}
.about_main .image_side_box.box04 {
  background:url(../images/about/about_bg004.jpg) top center no-repeat;
}
.about_main .image_side_box.box05 {
  background:url(../images/about/about_bg005.jpg) top center no-repeat;
}
.about_main .image_side_box.box06 {
  background:url(../images/about/about_bg006.jpg) top center no-repeat;
}
.about_main .image_side_box .box_main {
  z-index: 20;
  position: relative;
}
@media screen and (max-width: 750px) {
  .about_main .image_side_box{
    margin-top: 20px;
    padding: 30px 0 40px;
  }
  .about_main .image_side_box.box01{
    background:url(../images/about/about_bg001_sp.jpg) top center no-repeat;
    background-size: 100% auto;
  }
  .about_main .image_side_box.box02 {
    background:url(../images/about/about_bg002_sp.jpg) top center no-repeat;
    background-size: 100% auto;
  }
  .about_main .image_side_box.box03 {
    background:url(../images/about/about_bg003_sp.jpg) top center no-repeat;
    background-size: 100% auto;
  }
  .about_main .image_side_box.box04 {
    background:url(../images/about/about_bg004_sp.jpg) top center no-repeat;
    background-size: 100% auto;
  }
  .about_main .image_side_box.box05 {
    background:url(../images/about/about_bg005_sp.jpg) top center no-repeat;
    background-size: 100% auto;
  }
  .about_main .image_side_box.box06 {
    background:url(../images/about/about_bg006_sp.jpg) top center no-repeat;
    background-size: 100% auto;
  }
}

.about_main .image_side_box .box_title {
  color: #fff;
  font-size: 60px;
  margin-bottom: 10px;
  text-align: center;
  position: relative;
  padding: 0 100px;
  font-family: "font";
  line-height: 1.15;
}
.about_main .image_side_box .box_title span{
  display: block;
}
@media screen and (max-width: 750px) {
  .about_main .image_side_box .box_title {
    font-size: 18px;
    padding: 0 20px;
    margin-bottom:5px;
  }
  .about_main .image_side_box .box_title span{
    display: inline;
  }
}
.about_main .image_side_box .box_text01 {
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
  padding: 0 65px;
}
.about_main .image_side_box .box_text01 span{display: block;}
@media screen and (max-width: 750px) {
  .about_main .image_side_box .box_text01 {
    padding: 0 15px;
    line-height: 1.2;
    text-align: left;
    text-indent: 32px;
  }
  .about_main .image_side_box .box_text01 span{
    display: inline;
  }
}

.about_main .image_side_box .box_side {
  width: 630px;
  margin: 30px auto 0;
}

@media screen and (max-width: 750px) {
  .about_main .image_side_box .box_side {
    width: 310px;
    margin: 40px auto 0;
  }
}
/*  */


.advertising_main{
  background: #ffffff;
  overflow: hidden;
}

.subpage_main.advertising_main .subpage_title_wrap{
  background:#000 url(../images/ua/ua_bg_001.jpg) center top no-repeat;
  background-size: 100% auto;
}

/* UA H5 */
@media screen and (max-width: 750px) {
  .subpage_main.advertising_main .subpage_title_wrap{
    background:#000000 url(../images/ua/ua_bg_001_sp.jpg) center top no-repeat;
    background-size: 100% auto;
    min-height:910px;
  }
}

.advertising_main .subpage_scroll{
  top: 700px;
}
.advertising_body22 .snslist{
  width: 400px;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .advertising_main .subpage_scroll{
    top: 820px;
  }
  .advertising_body22 .snslist{
    width: 310px;
  }
}
.advertising_body{
  width: 980px;
  margin: 0 auto;
  position: relative;
}

.advertising_body_wrap{
  background:url(../images/ua/ua_bg1.png) center top/cover no-repeat;
  width: 537px;
  height: 440px;
  position: absolute;
  top: 37vw;
  left: 50%;
  margin-left: -275px;
  z-index: 20;
}

@media screen and (max-width: 1500px){
  .subpage_main.advertising_main .subpage_title_wrap{
    height: 910px;
  }
  .advertising_body_wrap{
    top: 580px;
  }
}

@media screen and (max-width: 750px) {
  .advertising_body_wrap{
    background:url(../images/ua/ua_bg1_sp.png) center top no-repeat;
    background-size: 100% auto;
    width: calc(100% + 32px);
    max-width: calc(100% + 32px);
    height: 400px;
    min-height: 400px;
    position: relative;
    left: -16px;
    margin-left: 0;
    padding: 0 16px;
    top:400px;
  }
}

.advertising_body22{
  width: 475px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .advertising_body22{
    width: auto;
    margin: 0 auto;
    padding: 0 10px;
  }
}
.advertising_tit1{
  padding-top: 30px;
  height: 80px;
  font-size:40px;
  color: #ffffff;
  line-height: 1.4;
  position: relative;
  font-weight: bold;
  text-shadow:0 0 0.2em #000,-0 -0 0.2em #000;
  font-family:"font";
  text-align: center;
}
.advertising_cons{
  height: 40px;
  position: relative;
  z-index: 5;
  margin-top: -20px;
  padding-left: 45px;
}
  .advertising_cons span{
    float: left;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    line-height: 38px;
    margin-right: 10px;
    text-shadow:0 0 0.2em #000,-0 -0 0.2em #000;
  }
.advertising_box{
  margin: 0 auto;
  width: 385px;
  height: 85px;
  display: flex;
  padding-top:30px;
  position: relative;
}
.error_message {
  position: absolute;
  top: 0;
  left:0;
  color: #ff0000;
  font-size: 20px;
  line-height: 30px;
  text-shadow:0 0 0.2em #000,-0 -0 0.2em #000;
}


@media screen and (max-width: 750px) {
  .error_message {
    font-size: 14px;
    top: 0;
    left: 0;
    line-height: 30px;
  }
}
.error_message.error03{
  display: none;
  white-space: nowrap;
}
.advertising_inp{
width: 820px;
height: 56px;
font-size: 20px;
line-height: 56px;
color: #000;
display: block;
border: none;
outline: none;
padding-left: 20px;
background-color: #fff;
border-top-left-radius:5px;
border-bottom-left-radius:5px; 
}
.advertising_btn1{
  display: block;
  width: 160px;
  height: 56px;
  background: #fee533;
  font-size: 20px;
  line-height: 56px;
  color: #000;
  text-align: center;
  border-top-right-radius:5px;
  border-bottom-right-radius:5px; 
}
.advertising_btn1.disabled {
  background: #e5e5e5;
  pointer-events: none;
  cursor: default;
}
.advertising_che{
padding-top: 10px;
line-height: 40px;
padding-left: 45px;
}
.c:before,.c:after{content:"";display:table;}
.c:after{clear:both;}
.c{zoom:1;}
.advertising_inp2{
  float: left;
  margin-right: 10px;
  margin-top: 10px;
}
input.advertising_inp2[type=checkbox]{
  cursor: pointer;
  position: relative;
  width: 17px;
  height: 17px;
  font-size: 14px;
  border: 1px solid #fee533;
  border-radius: 3px;
  -webkit-appearance: none;
    outline: none;
}

input.advertising_inp2[type=checkbox]::after{
  position: absolute;
  top: -1px;
  left: -1px;
  color: #000;
  width: 17px;
  height: 17px;
  display: inline-block;
  visibility: visible;
  padding-left: 0px;
  text-align: center;
  content: ' ';
  border-radius: 3px
}
input.advertising_inp2[type=checkbox]:checked::after{
  content: "✓";
  font-size: 18px;
  font-weight: bold;
  background-color: #fee533;
  border-radius: 3px;
}
.advertising_che span{
  float: left;
  font-size: 14px;
  color: #ffffff;
  vertical-align: middle;
}
.advertising_che a{
  color: #fee533;
  font-weight: normal;
}
.advertising_black{
  background-color: #000;
  height: 260px;
}
@media screen and (max-width: 750px) {
  .advertising_black{
    background-color: #000;
    height: 0;
  }
}
.advertising_inp3{
  float: left;
  margin-right: 10px;
  margin-top: 10px;
  -webkit-appearance: none;
  outline: none;
}
input.advertising_inp3[type=radio]{
  cursor: pointer;
  position: relative;
  width: 17px;
  height: 17px;
  font-size: 14px;
  border:1px solid #fee533;
  border-radius: 3px
}
input.advertising_inp3[type=radio]::after{
  position: absolute;
  top: -1px;
  left: -1px;
  color: #000;
  width: 17px;
  height: 17px;
  display: inline-block;
  visibility: visible;
  padding-left: 0px;
  text-align: center;
  content: ' ';
  border-radius: 3px
}
input.advertising_inp3[type=radio]:checked::after{
  content: "✓";
  font-size: 18px;
  background-color:#fee533;
  line-height: 17px;
  font-weight: bold;
  border-radius: 3px
}
.advertising_img{
  width: 533px;
  position: absolute;
  right: -53px;
  top: 280px;
}

.advertising_con2_wrap{
  background:#fff;
  min-height: 590px;
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .advertising_con2_wrap{
    min-height: 590px;
    padding-bottom:60px;
  }
}
.advertising_con2_bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 43vw;
  background: linear-gradient(to bottom, transparent 0%, transparent 0%, #fff 100%), url(../images/ua/ua_bg_004.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size:100% auto;
}

@media screen and (max-width: 750px) {
  .advertising_con2_bg{
    height: 134vw;
    background: linear-gradient(to bottom, transparent 0%, transparent 0%, #fff 100%), url(../images/ua/ua_bg_004_sp.png);
    background-size:100% auto;
  }
}
.advertising_tit4{
  padding-top: 136px;
  height: 255px;
  font-size: 64px;
  color: #000000;
  line-height: 1.7;
  position: relative;
  font-weight: bold;
}
.advertising_tit4::after{
    position: absolute;
    content: "";
    width: 142px;
    height: 8px;
    background-color: #FEE533;
    bottom: 0;
    left: 0;
}
.advertising_con2_box1{
  width: 980px;
  background-color: #fff;
  margin: 66px auto 0;
  height: auto;
  position: relative;
  padding: 30px 40px 60px;
  box-shadow:0px 0px 10px #c6ccd3;
}
.advertising_tit3{
  font-size: 20px;
  color: #000;
  line-height: 1.5;
}
.advertising_text3{
  font-size: 16px;
  color: #000;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .advertising_tit1{
    padding-top:20px;
    height: 90px;
    font-size: 36px;
    padding-left: 0;
  }

  .advertising_cons{
    margin-top: -10px;
    padding-left: 0;
  }
  .advertising_box{
    margin: 0 auto;
    width: 344px;
    height: 80px;
    display: flex;
    position: relative;
    padding-top: 30px;
  }
  .advertising_inp{
    width: 259px;
    height: 48px;
    line-height: 48px;
    position: absolute;
    left: 0;
    top: 30px;
    }
    .advertising_btn1{
      display: block;
      width: 84px;
      height: 48px;
      line-height: 48px;
      position: absolute;
      top: 30px;
      right: 0;
      z-index: 2;
    }
    .advertising_che{
      padding-top: 10px;
      line-height: 20px;
      width: 295px;
      margin-bottom: 10px;
      padding-left: 0;
    }
    .advertising_che span{
      font-size: 12px;
      width: 268px;
    }
    .advertising_inp2{
      margin-top: 0px;
    }
    .advertising_img{
      width:375px;
      right: auto;
      top: auto;
      bottom: -50px;
    }
    .advertising_tit4{
      padding-top: 57px;
      height: 175px;
      font-size: 36px;
      color: #000000;
      line-height: 1.3;
      padding-left: 15px;
      width: 240px;
    }
    .advertising_tit4::after{
        left: 15px;
    }  
    .advertising_con2_box1{
      width: 344px;
      background-color: #fff;
      margin: 36px auto 0;
      height: auto;
      position: relative;
      padding: 30px 17px 60px;
    }
}
.footer {
  background: #000000;
  padding: 30px 0;
  display: flex;
  justify-content: center;
}
.top_footer{
  padding: 10px 0 100px;
}
.footer .copy {
  margin: 0 auto;
}
@media screen and (max-width: 750px){
  .footer {
    padding: 20px 0;
  }
  .top_footer{
    padding: 10px 0 80px;
  }
  .footer .copy {
      margin: 0 auto;
  }
}
@media screen and (min-width: 750px){
  .top_down{display: none!important;}
}

@media screen and (max-width: 750px){
  .top_down{
    width: 100%;
    padding:5px 16px;
    height: 70px;
    background-color: #FEE533;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: none;
  }
  .top_down2{display: block;}
  .top_down_and,.top_down_ioss{
    display: none;
    margin: 0 auto;
    float: left;
    width: 160px;
    margin-top: -30px;
  }
  .top_down .top_down_ddm {float: right;width: 160px;margin-top: -30px;}
  .top_down .top_down_and p{width: 160px;}
  .top_down .top_down_ioss p{width: 160px;}
  .top_down .top_down_ddm p{width: 160px;}
}

/*dialog*/
.dialog{
  width:100%;
  height:100%;
  overflow:hidden;
  position:fixed;
  top:0;
  left:0;
  z-index:999;
  background:rgba(0,0,0,.8);
  display:none;
}
.pop{
  position:absolute;
  display:none;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  -webkit-transform:translate(-50%,-50%);
  -moz-transform:translate(-50%,-50%);
  -ms-transform:translate(-50%,-50%);
  -o-transform:translate(-50%,-50%);
}
.btn-close{
  width:20px;
  height:20px;
  background:url(../images/ua/close.png) 0 0 no-repeat;
  background-size:100% auto;
  position:absolute;
  display:block;
  top:-20px;
  right:-20px;
}
.pop1{
  background:url(../images/ua/ua_pop_bg.png) 0 0 no-repeat;
  background-size:100% auto;
  width:433px;
  height:267px;
  padding: 18px;
}
.pop-con{padding: 30px 20px 0;}
.pop-con p{text-align: center;font-size: 24px;color: #ffe700;line-height: 30px;}
.pop-con span{display: inline-block;text-align: left;}
.pop-flex{width: 245px;margin: 20px auto 0;display: flex;justify-content:space-between;}
.pop-flex a{display: block;width: 80px;}
@media screen and (max-width: 750px){
  .pop1{
    width:330px;
    height:203px;
    padding: 15px;
  }
  .pop-con{padding: 20px 20px 0;}
  .pop-flex{width: 200px;}
  .pop-flex a{width: 60px;}
}

.top_bot_bown{
background:#FEE533;
padding: 0 0;
width: 100%;
position: fixed;
bottom: 0;
left: 0;
z-index: 50;
display: none;
height: 100px;
}
.top_bot_bown2{display: block;}
.top_bot_bown .inner{
  width: 980px;
  margin: 0 auto;
  position: relative;
}
.top_bot_btn{
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
.top_bot_btn a{
  display: block;
  margin: 0 -10px;
  position: relative;
  
}
.top_down_goo{width: 232px;}
.top_down_ios{width: 232px;}
.top_down_ddm{width: 232px;}
.and_ewm,.ios_ewm{
  position: absolute;
  width: 178px;
  display: none;
  left: 27px;
  top: -180px;
}
.top_bot_btn a:hover .and_ewm,.top_bot_btn a:hover .ios_ewm{display: block;animation:fadeInUp 0.3s linear;-webkit-animation:fadeInUp 0.3s linear;}
@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,10%,0);transform:translate3d(0,10%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,10%,0);transform:translate3d(0,10%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}


#iframe1{
  height: 17000px;
}
#iframe2{
  height: 3400px;
}
#iframe3{height: 17000px;}
@media screen and (max-width: 750px){
  #iframe1{
    height: 27000px;
  }
  #iframe2{
    height: 7000px;
  }
  #iframe3{height: 17000px;}
} 
@keyframes btn-light{0% {-webkit-filter:brightness(100%);filter:brightness(100%);}50% {-webkit-filter:brightness(200%);filter:brightness(200%);transform:scale(1.05);-webkit-transform:scale(1.05);}100% {-webkit-filter:brightness(100%);filter:brightness(100%);}}	
@-webkit-keyframes btn-light{0% {-webkit-filter:brightness(100%);}50% {-webkit-filter:brightness(200%);transform:scale(1.05);-webkit-transform:scale(1.05);}100% {-webkit-filter:brightness(100%);}}

.slid-flex{width: 80px;position: fixed;right: 10px;top: 300px;z-index: 60;}
#slide-rg{display: none;}
.slid-flex a{display: block;width: 80px;margin-top: 10px;opacity: 0.8;}
.slid-flex a:hover{opacity: 1;}
@media screen and (max-width: 750px){
  .slid-flex{width: 40px;right: 5px;}
  .slid-flex a{display: block;width: 40px;margin-top: 10px;opacity: 1;}
}


.link-banner{
  background-color: #000;
  padding:0 0 0;
  width: 100%;
  margin: 0 auto;
}
.link-banner img{
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 750px){
  .link-banner{
    width: calc(100% + 32px);
    position: relative;
    left: -16px;
    max-width: calc(100% + 32px);
    padding:5px 0 0;
  }
}