@charset "UTF-8";
/* ==========================================================

title : 動き回る刀剣キャラクター
scope : 動き回る刀剣キャラクター

memo

last modify : 2020/05/19 TCI福岡_sakaguchi 共通ボタンの追加


========================================================== */

body {
  position: relative;
}

#js-animation-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 9;
  width: 100%;
  margin: 0 auto;
}
#js-animation {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}
.animation_box {
  background: url(/image_cmn/chara-animation/bg-anime-box.gif) repeat #f9eded;
  border: 1px solid #ce91ab;
  width: 900px;
  margin: 20px auto 50px;
}
.animation_box .title {
  background: url(/image_cmn/chara-animation/ttl-animation.png) no-repeat;
  background-size: 100%;
  color: #fff;
  display: table;
  height: 40px;
  line-height: 40px;
  margin: -20px auto 12px;
  text-align: center;
  width: 390px;
}
.animation_box .title span {
  display: inline-block;
  padding: 0 30px;
  position: relative;
  font-weight: 600;
}
.animation_box .title span::before,
.animation_box .title span::after {
  background: url(/image_cmn/chara-animation/ico-ttl.png) no-repeat center;
  content: '';
  display: block;
  height: 14px;
  left: 0;
  margin-top: -7px;
  position: absolute;
  top: 50%;
  width: 22px;
}
.animation_box .title span::after {
  left: auto;
  right: 0;
}
.animation_box dd p {
  width: 630px;
  margin: 0 auto 10px;
}
.animation_box dd p img {
  margin: 0 6px;
  vertical-align: bottom;
}
.animation_box ul {
  width: 870px;
  margin: 0 auto 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.animation_box .anime_list img {
  display: block;
  margin: 0 10px;
}
.animation_box .anime_list .cmn_link_btn {
  font-size: 16px;
  margin-top: 2px;
  line-height: 1;
}
.animation_box .anime_list .cmn_link_btn::before,
.animation_box .anime_list .cmn_link_btn::after {
  height: 6px;
  width: 6px;
}
.animation_box .anime_list .cmn_link_btn_inner::before,
.animation_box .anime_list .cmn_link_btn_inner::after {
  height: 6px;
  width: 6px;
}
.animation_box .anime_list .cmn_link_btn_text {
  font-family: "HiraKakuPro-W3","Hiragino Kaku Gothic ProN W3","Hiragino Sans", ヒラギノ角ゴシック, "Hiragino Kaku Gothic ProN", 游ゴシック体, "YuGothic", "ＭＳ Ｐゴシック", "MS PGothic",メイリオ, Osaka, sans-serif;
  font-weight: normal;
  line-height: 1;
  margin: 1px 2px;
  padding: 3px 10px 3px 0px;
}
.animation_box .anime_list .cmn_link_btn_text::after {
  border-width: 4px 0 4px 5px;
  right: 6px;
  top: calc(50% - 4px);
}
.animation_box ul li span.ready {
  border-radius: 15px;
  color: #fff;
  display: block;
  background: #b28e5f;
  font-size: 16px;
  line-height: 1;
  padding: 6px 0;
  text-align: center;
  margin: 2px 10px 0;
}
.ico_play {
  position: relative;
}
.ico_play::after {
  background: url(/image_cmn/chara-animation/ico-play.png);
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  right: 8%;
  width: 24px;
  height: 24px;
}
.ico_play.start::after {
  background: url(/image_cmn/chara-animation/ico-stop.png);
  background-size: 100%;
}
#js-anime-start {
  cursor: pointer;
}

@media (max-width: 1023px) {
  body {
    position: static;
  }
  #js-animation-wrap,
  #js-animation,
  .animation_box {
    display: none !important;
  }
}

