/* ------------------------------------------------------------
   YUHFRAMER
   Structure follows a full-screen anime promo site:
   fixed key visual behind, full-bleed coloured sections that
   snap, a fixed illustration layer pinned bottom-right over
   everything, a right-aligned nav that flips colour, and a
   white news strip on the top page.
   ------------------------------------------------------------ */

:root {
  --accent: #489de6;
  --display: "Anton", "Roboto", sans-serif;
  --ui: "Roboto", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  --text: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, "Helvetica Neue", Arial, sans-serif;
  --nav-color: #fff;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  min-width: 320px;
  overflow: hidden;
  background: #000;
  color: #000;
  font-family: var(--text);
  font-size: 15px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
body[data-theme="light"] { --nav-color: #000; }

a { color: inherit; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.pc { display: inline; }
.is-sp { display: none; }

/* ---------- fixed key visual ---------- */
.wrapper { position: relative; }
.wrapper::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #1a2a44 url(../img/kv_bg.jpg) no-repeat center center;
  background-size: cover;
}

/* ---------- nav (top right, like the reference) ---------- */
.head_wrap {
  position: fixed;
  top: 25px;
  right: 40px;
  z-index: 10;
  text-align: right;
}
.nav li { font-family: var(--ui); font-weight: 500; }
.nav li a {
  display: block;
  margin: 12px 0;
  padding: 3px 0;
  color: var(--nav-color);
  font-size: 13px;
  letter-spacing: .1em;
  text-decoration: none;
  transition: color .4s ease, opacity .2s;
}
.nav li a:hover { opacity: .6; }
.nav li a.current { text-decoration: underline; text-underline-offset: 5px; }

.menu_btn { display: none; }
.sp_menu_back { display: none; }

/* ---------- scroll container + sections ---------- */
.scroller {
  position: relative;
  z-index: 1;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  scroll-behavior: auto;
  overscroll-behavior: none;
  scrollbar-width: none;
}
.scroller::-webkit-scrollbar { display: none; }

.scroll_block {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}
.scroll_block_tall { align-items: flex-start; }

.scroll_block[data-section-name="trailer"]      { background-color: #8e699d; }
.scroll_block[data-section-name="works"]        { background-color: #6cbba5; }
.scroll_block[data-section-name="introduction"] { background-color: #e2df30; }
.scroll_block[data-section-name="process"]      { background-color: #6da0bb; }
.scroll_block[data-section-name="credit"]       { background-color: #333f87; }

.scroll_block .scroll_block_in {
  width: 100%;
  padding: 90px 0 90px;
  font-size: 14px;
}
.scroll_block .page_title {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto 50px;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 62px;
  letter-spacing: .1em;
  color: #000;
}
.scroll_block[data-theme="dark"] .page_title { color: #fff; }
.page_title span {
  padding-left: 20px;
  vertical-align: middle;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .03em;
}
.scroll_block .scroll_block_contents {
  position: relative;
  width: 89.3%;
  max-width: 940px;
  margin: 0 auto;
  padding-right: 300px;
  font-size: 14px;
  line-height: 1.6;
}
.scroll_block[data-theme="dark"] .scroll_block_contents { color: #fff; }

/* ---------- top ---------- */
.scroll_block_top .scroll_block_in { padding: 0; min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; }
.scroll_block_top .main_title {
  width: 88%;
  margin: 0 auto;
  padding-right: 40%;
  text-align: center;
  color: #fff;
  opacity: 0;
}
.main_title_jp { font-size: 13px; letter-spacing: .5em; margin-bottom: 14px; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.main_title_title {
  font-family: var(--display);
  font-size: clamp(88px, 13vw, 200px);
  line-height: .86;
  letter-spacing: .01em;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.main_title_sub {
  margin-top: 22px;
  font-family: var(--ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .3em;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.main_title_sub span { padding-left: 1em; opacity: .8; }

.scroll_block_top.load .main_title { opacity: 1; transition: opacity .3s ease 3.6s; }
.scroll_block_top.fast_load .main_title { opacity: 1; }

/* round badge, top left */
.ticket_banner {
  position: absolute;
  top: 0;
  left: 2%;
  z-index: 5;
  width: 200px;
  height: 200px;
  margin-top: -80px;
  border-radius: 50%;
  background: #9d9a1f;
  color: #000;
  font-family: var(--ui);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 22px;
  transition: transform .3s ease;
}
.ticket_banner:hover { transform: translateY(6px); }
.badge_top { font-size: 15px; font-weight: 500; letter-spacing: .08em; padding-bottom: 6px; border-bottom: 1px solid #000; margin-bottom: 8px; }
.badge_date { font-size: 24px; font-weight: 700; letter-spacing: .12em; }
.badge_bottom { font-size: 11px; font-weight: 500; letter-spacing: .25em; margin-top: 4px; }

/* banner carousel, bottom left */
.top_banner {
  position: absolute;
  bottom: 70px;
  left: 2%;
  z-index: 5;
  width: 240px;
}
.top_banner_list { position: relative; aspect-ratio: 16 / 9; }
.top_banner_list .top_banner_item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
  background: #000;
  text-decoration: none;
}
.top_banner_item.active { opacity: 1; pointer-events: auto; }
.top_banner_item img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.top_banner_item span {
  position: absolute;
  left: 12px; bottom: 10px;
  color: #fff;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .15em;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.top_banner_dots { margin: 10px 0 0 10px; display: flex; gap: 6px; }
.top_banner_dots li {
  width: 6px; height: 6px;
  background: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  transition: background-color .3s ease;
}
.top_banner_dots li.active { background: transparent; }

/* white news strip */
.scroll_block_top .top_news {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  background: #fff;
  color: #000;
  line-height: 1.2;
  transform: translateY(100%);
  opacity: 0;
  transition: opacity .5s ease, transform .5s ease;
}
.scroll_block_top.load .top_news { transform: translateY(0); opacity: 1; transition: opacity .5s ease 4.4s, transform .5s ease 4.4s; }
.scroll_block_top.fast_load .top_news { transform: translateY(0); opacity: 1; }
.current.current_next .top_news { opacity: 0; transition: opacity .1s ease; }
.top_news_list { position: relative; width: 90%; max-width: 1200px; height: 40px; margin: 0 auto; }
.top_news_list li {
  position: absolute;
  top: 14px; left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  overflow: hidden;
  transition: transform .5s ease, opacity .5s ease;
}
.top_news_list li.news_current { opacity: 1; transform: translateY(0); }
.top_news_list a { display: block; text-decoration: none; }
.top_news_in { display: flex; width: 100%; overflow: hidden; }
.top_news_date { position: relative; flex: none; width: 100px; padding-right: 35px; font-size: 13px; font-family: var(--ui); }
.top_news_date::after { content: ""; position: absolute; top: 49%; right: 13px; width: 5px; height: 1px; background: #000; }
.top_news_title { position: relative; padding-right: 15px; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top_news_title::after {
  content: ""; position: absolute; top: 5px; right: 0;
  width: 5px; height: 5px;
  border-right: 1px solid var(--accent); border-top: 1px solid var(--accent);
  transform: rotate(45deg) translate(-30%, -10%);
}

/* ---------- hover square (blue frame draws in) ---------- */
.hov_square { position: relative; }
.hov_square::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent);
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.hov_square:hover::before { opacity: 1; transform: scale(1); }

/* ---------- trailer ---------- */
.youtube { position: relative; width: 100%; max-width: 500px; aspect-ratio: 16 / 9; background: #000; }
.youtube video, .youtube iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #000; }
.movie_list { margin-top: 15px; max-width: 500px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 8px; }
.movie_btn { position: relative; margin-top: 8px; font-size: 13px; cursor: pointer; }
.movie_btn:first-child { grid-column: 1 / -1; }
.movie_btn::after {
  content: "";
  position: absolute;
  top: 3px; right: -1px; bottom: 3px; left: -1px;
  border: 1px solid var(--accent);
  transform: scale(1, 1);
  transition: transform .2s ease;
  pointer-events: none;
}
.movie_btn.now_play::after { transform: scale(1, 0); }
.line_btn {
  display: block;
  padding: 13px 20px;
  border: 1px solid var(--accent);
  color: #fff;
  font-family: var(--ui);
  text-decoration: none;
}

/* ---------- works (character list treatment) ---------- */
.chara_list {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.chara_list li { position: relative; overflow: hidden; color: #fff; cursor: pointer; background: #000; }
.chara_list li .chara_img { aspect-ratio: 16 / 9; background: #222 center / cover no-repeat; transition: transform .6s ease, opacity .6s ease; }
.chara_list li:hover .chara_img { opacity: .8; transform: scale(1.05); }
.chara_list li .chara_name { position: absolute; top: 24px; left: 10%; font-family: var(--ui); font-weight: 700; font-size: 21px; text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.chara_list li .chara_cv { position: absolute; top: 54px; left: 10%; font-size: 13px; letter-spacing: .05em; text-shadow: 0 1px 6px rgba(0,0,0,.6); }
.chara_list li .icon_plus { position: absolute; bottom: 14%; left: 10%; width: 40px; height: 40px; border: 1px solid var(--accent); }
.icon_plus::before, .icon_plus::after { content: ""; position: absolute; top: 50%; left: 50%; background: #fff; transform: translate(-50%, -50%); }
.icon_plus::before { width: 30%; height: 1px; }
.icon_plus::after { width: 1px; height: 30%; }
.chara_list button { display: block; width: 100%; text-align: left; }

/* ---------- intro / process ---------- */
.intro_txt { font-size: 14px; line-height: 2.2; }
.intro_txt h4 { margin-bottom: 55px; font-weight: 700; font-size: 170%; line-height: 1.6; }
.intro_txt p { margin-bottom: 2em; }
.intro_txt strong { font-family: var(--ui); letter-spacing: .05em; }

/* ---------- credit ---------- */
.staff_cast { width: 640px; max-width: 100%; line-height: 2.5; }
.staff_cast dt { display: inline-block; width: 150px; margin-bottom: 2em; padding-left: 40px; vertical-align: top; color: #000; font-family: var(--ui); font-size: 14px; letter-spacing: .05em; white-space: nowrap; }
.staff_cast dd { display: inline-block; width: 470px; max-width: calc(100% - 150px); margin-bottom: 2em; vertical-align: top; color: #fff; font-size: 14px; }
.staff_cast dd a { text-decoration: none; }
.staff_cast dd a:hover { text-decoration: underline; }

/* ---------- footer ---------- */
.footer {
  position: relative;
  padding: 40px 0;
  background: #c3c2c2;
  text-align: center;
}
.foot_anx_link li { display: inline-block; vertical-align: middle; font-family: var(--ui); font-weight: 500; font-size: 12px; letter-spacing: .06em; border-right: 1px solid #000; }
.foot_anx_link li:last-child { border-right: 0; }
.foot_anx_link li a { display: block; padding: 0 12px; text-decoration: none; transition: color .5s ease; }
.foot_anx_link li a:hover { color: var(--accent); }
.foot_att { margin-top: 20px; font-size: 11px; line-height: 1.5; }
.copy { margin-top: 5px; font-size: 11px; line-height: 1.3; }
.page_top { position: relative; width: 40px; height: 40px; margin: 30px auto 0; border: 1px solid #000; }
.page_top span { position: absolute; top: 55%; left: 50%; width: 8px; height: 8px; border-top: 1px solid #000; border-left: 1px solid #000; transform: translate(-50%, -50%) rotate(45deg); }

/* ---------- fixed illustration + particles ---------- */
.illust {
  position: fixed;
  right: 0; bottom: 0;
  z-index: 2;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.illust::after {
  content: "";
  position: absolute;
  right: 3%; bottom: 0;
  width: 30vw; max-width: 480px; min-width: 260px;
  height: 92%;
  background: url(../img/kv_chara.png) no-repeat right bottom;
  background-size: contain;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.25));
  transform: translateY(4%);
  transition: transform .2s ease;
}
.illust.illusu_top::after { transform: translateY(-3%); transition: transform .7s ease; }
.illust canvas { position: absolute; right: 10%; bottom: 0; transform: scale(.6); transform-origin: right bottom; }

/* ---------- modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  overflow: hidden;
  transform: scale(.8);
  opacity: 0;
  transition: transform .1s ease .5s, opacity .3s ease .3s;
}
.modal.modal_open { transform: scale(1); opacity: 1; transition: transform .4s ease, opacity .3s ease; }
.modal_back { position: fixed; inset: 0; background: rgba(0,0,0,.6); }
.modal_in {
  position: absolute;
  top: 50%; left: 50%;
  max-width: 1080px;
  width: calc(100% - 40px);
  opacity: 0;
  transform: translate(-50%, -55%);
  transition: transform .1s ease .4s, opacity .1s ease .4s;
}
.modal.modal_open .modal_in { opacity: 1; transform: translate(-50%, -50%); transition: transform .5s ease .3s, opacity .5s ease .3s; }
.modal_chara { display: flex; width: 100%; height: 610px; max-height: 80vh; background: #000; color: #fff; text-align: left; }
.modal_chara .chara_img { flex: 1; min-width: 0; position: relative; }
.modal_chara .chara_img video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #000; }
.modal_chara .chara_txt { width: 400px; padding: 60px 40px; line-height: 1.7; overflow: auto; }
.modal_chara .chara_name { font-weight: 700; font-size: 22px; font-family: var(--ui); }
.modal_chara .chara_cv { font-size: 14px; margin-top: 2px; opacity: .85; }
.modal_chara .chara_disc { margin-top: 20px; font-size: 14px; }
.chara_control { position: relative; margin-top: 30px; }
.chara_control p { display: inline-block; position: relative; width: 40px; height: 40px; margin-right: 3px; border: 1px solid var(--accent); cursor: pointer; }
.chara_control .chara_prev::before, .chara_control .chara_next::before {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 5px; height: 5px;
  border-right: 1px solid #fff; border-top: 1px solid #fff;
}
.chara_control .chara_prev::before { transform: translate(-50%, -50%) rotate(-135deg); }
.chara_control .chara_next::before { transform: translate(-50%, -50%) rotate(45deg); }
.chara_control .close_btn { position: absolute; bottom: -50px; left: 0; margin: 0; }
.close_btn span { position: absolute; inset: 0; }
.close_btn span::before, .close_btn span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: #fff; }
.close_btn span::before { transform: translate(-50%, -50%) rotate(45deg); }
.close_btn span::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.modal_open_body .scroller { overflow: hidden; }

/* ---------- opening ---------- */
.opening {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: #b4b4b4;
  color: #000;
  transition: opacity .3s ease;
}
.opening[hidden] { display: none; }
.opening.fade { opacity: 0; }
.opening_txt { position: absolute; left: 50%; opacity: 0; white-space: nowrap; }
.opening_txt1 { top: 3%; transform: translateX(-50%); font-size: 13px; letter-spacing: .6em; }
.opening_txt2 { top: 50%; transform: translate(-50%, -60%); font-family: var(--display); font-size: clamp(64px, 12vw, 160px); letter-spacing: .02em; }
.opening_txt3 { top: 64%; transform: translateX(-50%); font-family: var(--ui); font-weight: 500; font-size: 13px; letter-spacing: .35em; }
.opening.load .opening_txt1 { animation: op 2.8s ease 1 .4s forwards; }
.opening.load .opening_txt2 { animation: op 1.4s ease 1 1.2s forwards; }
.opening.load .opening_txt3 { animation: op 1.2s ease 1 2.0s forwards; }
@keyframes op { 0% { opacity: 0; } 15% { opacity: 1; } 80% { opacity: 1; } 100% { opacity: 0; } }

/* ---------- mobile ---------- */
@media screen and (max-width: 750px) {
  .pc { display: none; }
  .is-sp { display: inline; }
  .wrapper::before { background-image: url(../img/kv_bg_sp.jpg); background-position: center bottom; }

  .head_wrap {
    top: 40px; right: 15px;
    opacity: 0;
    transform: translateX(-100%);
    max-height: 100vh;
    padding-bottom: 50px;
    overflow-y: auto;
    transition: transform .05s ease .15s, opacity .2s ease;
    pointer-events: none;
  }
  .head_wrap.nav_open { opacity: 1; transform: translateX(0); transition: transform .8s ease .2s, opacity .4s ease .6s; pointer-events: auto; }
  .nav li a { color: #fff; margin: 10px 0; font-size: 12px; }

  .sp_menu_back {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 10;
    opacity: 0;
    overflow: hidden;
    transition: opacity .1s ease .7s;
    pointer-events: none;
  }
  .sp_menu_back::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 100vh; height: 100vh;
    background: #000;
    opacity: .7;
    border-radius: 50%;
    transform: scale(0) translate(30%, -50%);
    transform-origin: right top;
    transition: transform .3s ease;
  }
  .sp_menu_back.nav_open { opacity: 1; transition: opacity .1s ease; pointer-events: auto; }
  .sp_menu_back.nav_open::before { transform: scale(1.4) translate(25%, -20%); transition: transform .7s cubic-bezier(.55, .055, .675, .19); }

  .menu_btn { display: block; position: fixed; top: 10px; right: 15px; z-index: 50; width: 30px; height: 30px; padding-top: 14px; }
  .menu_btn p { position: relative; width: 100%; height: 1px; background: var(--nav-color); transition: background-color .4s ease; }
  .menu_btn p::before, .menu_btn p::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: var(--nav-color); transition: transform .4s ease, background-color .4s ease; }
  .menu_btn p::before { transform: translateY(-6px); }
  .menu_btn p::after { transform: translateY(6px); }
  .menu_btn.nav_open p { background: transparent; }
  .menu_btn.nav_open p::before { background: #fff; transform: rotate(45deg); }
  .menu_btn.nav_open p::after { background: #fff; transform: rotate(-45deg); }

  .scroll_block { min-height: 100vh; min-height: 100dvh; align-items: flex-start; }
  .scroll_block .scroll_block_in { padding: 12% 0 120px; }
  .scroll_block .page_title { margin-bottom: 25px; font-size: 36px; }
  .page_title span { display: block; padding: 8px 0 0; font-size: 13px; }
  .scroll_block .scroll_block_contents { padding-right: 30%; }

  .scroll_block_top .scroll_block_in { align-items: flex-end; padding-bottom: 60px; }
  .scroll_block_top .main_title { width: 82.5%; margin: 0 0 8% 9%; padding: 0; text-align: left; }
  .main_title_title { font-size: clamp(72px, 22vw, 120px); }
  .ticket_banner { width: 35vw; height: 35vw; max-width: 150px; max-height: 150px; margin-top: -30px; padding-bottom: 12px; }
  .badge_top { font-size: 11px; } .badge_date { font-size: 16px; } .badge_bottom { font-size: 8px; }
  .top_banner { top: 30vw; bottom: auto; width: 35%; }
  .top_banner_item span { font-size: 10px; left: 6px; bottom: 5px; }
  .top_banner_dots { margin: 5px 0 0 5px; gap: 2px; }
  .top_banner_dots li { width: 4px; height: 4px; }
  .top_news_list { height: 35px; }
  .top_news_list li { top: 12px; }
  .top_news_date { width: 80px; font-size: 11px; }
  .top_news_date::after { right: 10px; }
  .top_news_title { font-size: 11px; }

  .youtube { max-width: none; }
  .movie_btn { width: 90%; }
  .movie_btn::after { top: 2px; bottom: 2px; }
  .line_btn { padding: 7px 15px; font-size: 12px; }

  .chara_list { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .chara_list li .chara_name { top: 10px; font-size: 14px; }
  .chara_list li .chara_cv { top: 30px; font-size: 10px; }
  .chara_list li .icon_plus { width: 24px; height: 24px; bottom: 10%; }

  .intro_txt { line-height: 1.9; }
  .intro_txt h4 { margin-bottom: 25px; font-size: 130%; }
  .staff_cast dt, .staff_cast dd { display: block; width: auto; max-width: none; padding-left: 0; margin-bottom: 0; }
  .staff_cast dd { margin-bottom: 1.5em; }

  .illust::after { right: 0; width: 42vw; min-width: 0; height: 70%; background-image: url(../img/kv_chara_sp.png); transform: translateY(6%); }
  .illust.illusu_top::after { transform: translateY(-18%); }
  .illust canvas { transform: scale(.35); }

  .modal_in { width: calc(100% - 24px); }
  .modal_chara { flex-direction: column; height: auto; max-height: 86vh; overflow-y: auto; }
  .modal_chara .chara_img { flex: none; aspect-ratio: 16 / 9; }
  .modal_chara .chara_txt { width: 100%; padding: 15px 8%; line-height: 1.5; }
  .modal_chara .chara_name { font-size: 18px; }
  .modal_chara .chara_disc { font-size: 12px; margin-top: 12px; }
  .chara_control { margin-top: 15px; text-align: center; padding-bottom: 50px; }
  .chara_control .close_btn { left: 50%; transform: translateX(-50%); bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .scroller { scroll-behavior: auto; }
  .opening { display: none; }
  .scroll_block_top .main_title, .scroll_block_top .top_news { opacity: 1; transform: none; transition: none; }
  .modal, .modal_in, .top_news_list li, .top_banner_item, .chara_list li .chara_img { transition: none; }
}
