<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* =============================================== */
/* basic - 共通基本設定 */
/* ----------------------------------------------- */
@media(max-width:768px) {
    .pc {
        display: none;
    }
}
@media(min-width:769px) {
    .smp {
        display: none;
    }
}

/* リセットcss */
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
    display: block;
    margin: 0;
    padding: 0;
}
html, h1, h2, h3, h4, dl, dt, dd, ul, li, p, img {
    margin: 0;
    padding: 0;
}
ul {
    list-style-type: none;
}

/* ボディ */
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    font-size: 1em;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
    background-image: url('../img/bg3.png'),url('../img/bg2.jpg');
    background-repeat: repeat-x,repeat;
    background-position: top,top;
    -webkit-text-size-adjust: 100%;
}
@media(max-width:768px) {
    body{
        background-image: url('../img/bg3smp.png'),url('../img/bg2.jpg');
        background-repeat: repeat-x,repeat;
        background-position: top,top;
    }
}

a:link {text-decoration: underline; color: #f8b82e;}
a:visited {text-decoration: underline; color: #f8b82e;}
a:active {text-decoration: underline; color: #f8b82e;}
a:hover {text-decoration: none; color: #f8b82e;}

/* 画像関連 */
img {
    border: none;
    vertical-align: bottom;
}

/* 罫線 */
hr {
    height: 0;
    margin: 0 auto 8px;
    padding: 8px 0;
    border: 0;
    width: 96%;
    border-bottom: 2px dotted #999;
}

.solid {border-top: 3px #666 solid;}
.dotted {border-top: 3px #666 dotted;}
.dashed {border-top: 1px #666 dashed;}
.double {border-top: 3px #666 double;}

/* ページレイアウト */
#wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
section {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;;
    padding: 0;
    clear: both;
}
article {
    width: 96%;
    margin: 0 auto;
    padding: 0;
    clear: both;
}
@media(min-width:769px) {
    article {max-width: 1000px;}
}

/* PCナビ */
nav{
    width: 100%;
    height: 40px;
    position: fixed;
    z-index: 9999;
    font-family: 'Red Rose', cursive;
    background-color:#e60012;
    background-image: url('../img/bgTitle.png');
}

#mainNav{
    text-align: center;
}

#mainNav li{
    display: inline-block;
    padding: 8px 3em;
    line-height: 1;
    font-size: 130%;
}
#mainNav li a:link {text-decoration: none; color: #fff;}
#mainNav li a:visited {text-decoration: none; color: #fff;}
#mainNav li a:active {text-decoration: none; color: #fff;}
#mainNav li a:hover {text-decoration: none; color: #f8b82e;}

/* ビジュアル部分 */
#main {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}
@media(max-width:768px) {
    #main{margin: 0 auto 20px;}
}

#main-visual {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 1000px;
}

#main-visual img{
    margin: 0;
    padding: 0;
    width: 100%;
}

/* 見出し */
.title{
    position: relative;
    padding: 15px 15px;
    color: #fff;
    line-height: 1;
    font-size: 140%;
    text-align: center;
    background-color: #e60012;
    background-image: url('../img/bgTitle.png');
    margin-bottom: 40px;
    font-family: 'Red Rose', cursive;
}

.title::before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px #333;
}

.sur{background-color: #1faad2;}
.hun{background-color: #e42e61;}

/* =============================================== */
/* cast - キャスト */
/* ----------------------------------------------- */
.survivorBox{width: 48%; float:left; clear: none;}
.hunterBox{width: 48%; float:right; clear: none;}

@media(max-width:768px) {
    .survivorBox{width: 96%; float:none; margin: 0 auto 20px;}
    .hunterBox{width: 96%; float:none; margin: 0 auto 0;}
}

.castList{
    clear: both;
    margin: 30px auto;
    text-align: center;
    width: 100%;
}

.castList li{
    width: 30%;
    display: inline-block;
    text-align: center;
    vertical-align: top;
    padding-bottom: 20px;
}
@media(max-width:768px) {
    .castList li{width: 30%;}
}

.specialGuest .castList li{
    width: 16%;
    display: inline-block;
    text-align: center;
    vertical-align: top;
    padding: 0 15px 20px;
}
@media(max-width:768px) {
    .specialGuest .castList li{width: 30%;}
}

.castList img{
    width: 100%;
    height: auto;
}

.name{
    font-size: 110%;
    margin: 10px 0 0;
    padding: 0;
    text-align: center;
    font-weight: bold;
    line-height: 120%;
}
@media(max-width:768px) {
    .name{font-size: 90%;}
}

.survivor{
    font-size: 75%;
    margin: 0;
    padding: 5px 0 0;
    text-align: center;
    color: #1faad2;
    font-weight: 300;
    line-height: 130%;
}
@media(max-width:768px) {
    .survivor{font-size: 55%;}
}

.hunter{
    font-size: 75%;
    margin: 0;
    padding: 5px 0 0;
    text-align: center;
    color: #e42e61;
    font-weight: 300;
    line-height: 130%;
}
@media(max-width:768px) {
    .hunter{font-size: 55%;}
}

.specialGuest{
    text-align: center;
    padding: 20px 0 60px;
}

.specialGuest h2{
    padding: 5px 2em;
    -webkit-transform: skew(-15deg);
    transform: skew(-15deg);
    color: #fff;
    background-color: #f85108;
    font-family: 'Red Rose', cursive;
    font-size: 140%;
    line-height: 1;
    width: 10em;
    margin: 0 auto;
    background-image: url('../img/bgTitle.png');
}

.nameGuest{
    font-size: 120%;
    margin: 10px 0 0;
    padding: 0;
    text-align: center;
    font-weight: bold;
}

/* =============================================== */
/* information - 公演概要 */
/* ----------------------------------------------- */
#info{
    text-align: center;
}

#info div{
    padding-bottom: 50px;
}

h3 {
    padding: 5px 2em;
    -webkit-transform: skew(-15deg);
    transform: skew(-15deg);
    color: #7b6241;
    background-color: #e8e1d8;
    font-size: 100%;
    line-height: 1;
    width: 7em;
    margin: 0 auto 10px;
    border: 1px solid #7b6241;
}

.dateList{
    border-top: 1px dotted #999;
    width: 33em;
    margin: 15px auto;
}
@media(max-width:768px) {
    .dateList{width: 94%;}
}

.dateList li{
    border-bottom: 1px dotted #999;
    text-align: left;
    padding: 10px 0;
    line-height: 1;
}
@media(max-width:768px) {
    .dateList li{line-height: 1.5;}
}

/* =============================================== */
/* Q&amp;A - よくあるご質問 */
/* ----------------------------------------------- */
.qaBox{
    padding-bottom: 40px;
}

.q{
    font-weight: 600;
    color: #e60012;
    font-style: italic;
}

.a{
    padding: 10px 0 0 1em;
}

/* =============================================== */
/* notice - 注意事項 */
/* ----------------------------------------------- */
.noticeHead{
    border-left: 3px solid #e60012;
    padding: 8px 5px 10px 10px;
    margin: 30px 0 10px;
    font-weight: bold;
    background-color: #222;
    color: #fff;
    line-height: 1;
}

.noticeTxt{
    padding: 0 1em;
}

.noticeList{
    list-style: circle;
    list-style-position: outside;
    padding: 15px 0 15px 2em;
}

.noticeList li{
    padding-bottom: 15px;
}

.ticketImage{
    text-align: center;
    width: 96%;
    max-width: 920px;
    margin: 0 auto;
}
.ticketImage img{
    width: 100%;
}

.noticeList02{
    list-style: decimal;
    list-style-position: outside;
    padding: 15px 0 15px 1em;
    font-size: 90%;
}

.noticeList02 li{
    padding-bottom: 10px;
}

/* =============================================== */
/* goods - グッズ情報 */
/* ----------------------------------------------- */
.goodsHead{
    padding: 10px 2%;
    -webkit-transform: skew(-15deg);
    transform: skew(-15deg);
    color: #7b6241;
    background-color: #e8e1d8;
    font-size: 90%;
    line-height: 1;
    width: 90%;
    margin: 40px auto 20px;
    text-align: center;
    border: 1px solid #7b6241;
    font-weight: 700;
}

.goodsTxt{
    text-align: center;
    padding: 5px 0;
}

.goodsList{
    padding: 20px 0;
    width: 100%;
    text-align: center;
    font-size: 90%;
}

.goodsList li{
    width: 49%;
    padding: 5px 0 ;
    display: inline-block;
    text-align: center;
    margin: 0 auto 15px;
}
@media(max-width:768px) {
    .goodsList li{width: 100%; max-width: 600px; display: block;}
}

.block li{display: block;width: 100%;  max-width: 920px;}

.goodsPhoto{
    width: 95%;
    max-width: 920px;
    margin: 20px auto;
}
.goodsPhoto img{
    width: 100%;
}

.goodsPhoto2{
    width: 95%;
    max-width: 920px;
    margin: 20px auto 10px;
}
.goodsPhoto2 img{
    width: 100%;
}

@media(max-width:768px) {
    .goodsDeta{text-align: left;}
}


.opener{
    width: 100%;
}
.opener p{
    float:left;
    width: 45%;
    padding: 10px 0;
    margin: 0 2%;
    font-size: 80%;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    border: 1px solid #aaa;
}

.detail{
    clear: both;
    display: none;
    padding: 0;
    font-size: 70%;
}
.detailContents{
    float:left;
    width: 45%;
    padding: 15px 2%;
}
.detailContents p{
    padding: 5px 0;
}

@media(max-width:768px) {
.opener{
    padding: 10px 0;
    margin: 15px 0;
    font-size: 80%;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    border: 1px solid #aaa;
}

.detail{
    clear: both;
    display: none;
    padding: 0;
    font-size: 70%;
}
.detail p{
    padding: 8px 0;
}
}

/* =============================================== */
/* footer - フッター */
/* ----------------------------------------------- */
/* フッター大枠 */
footer{
    width: 100%;
    margin: 30px 0 0;
    padding: 15px 0 20px;
    clear: both;
    background-color: #000;
    color: #999;
    text-align: center;
    border-top: 1px solid #e60012;
}

/* フッター内部 */
#footer-inner{
    width: 1000px;
    margin: 0 auto;
    padding: 0;
    clear: both;
}
@media(max-width:1001px) {
    #footer-inner{width: 96%;}
}

#caution{
    padding: 20px 0;
    margin: 0;
    line-height: 180%;
    font-size: 90%;
    color: #fff;
    border-bottom: 1px solid #333;
}

#toiawase{
    padding: 20px 0;
    margin: 0 0 30px;
    line-height: 160%;
    font-size: 100%;
    color: #fff;
}

.footerBanner{
    text-align: center;
    margin: 15px 0 30px;
}

.footerBanner li{
    display: inline-block;
    padding: 0 1em;
    width: 240px;
}
@media(max-width:768px) {
    .footerBanner li{display:block; margin: 15px auto;  }
}

.footerBanner li img{
    width: 100%;
}

.archiveList {
  text-align: center;
  padding: 10px 0;
  width: 100%;
  max-width: 600px;
	margin: 0 auto;
}
.archiveList li {
  display: inline-block;
  margin: 10px 1%;
}
.archiveList li a:link {
  display: block;
  text-decoration: none;
  color: #aaa;
  border: #888 1px solid;
  background-color: transparent;
  padding: 0.8em;
  line-height: 1;
  font-size: 90%;
}
.archiveList li a:visited {
  text-decoration: underline;
  color: #aaa;
}
.archiveList li a:active {
  text-decoration: underline;
  color: #aaa;
}
.archiveList li a:hover {
  background-color: #fff;
  color: #333;
}
.twitterBtn {
  width: 40px;
  margin: 30px auto;
}
.twitterBtn a:link {
  display: block;
}
.twitterBtn img {
  width: 100%;
}
.snsBtn {
  padding: 50px 0;
  text-align: center;
}
.snsBtn li {
  display: inline-block;
  width: 40px;
  margin: 0 15px;
}
.snsBtn a:link {
  display: block;
}
.snsBtn img {
  width: 100%;
}
.privacy a:link {
  color: #fff;
}
.privacy a:visited {
  color: #fff;
}
.privacy a:active {
  color: #fff;
}
.privacy a:hover {
  color: #fff;
}
/* 中央部分(コピーライト等) */
#footer-center{
    width: 1000px;
    float: left;
    margin: 0;
    padding: 0;
    min-height: 20px;
}
@media(max-width:768px) {
    #footer-center{width: 96%;}
}

#footer-center p{
    text-align: center;
    font-size: 90%;
    padding: 20px 0 0 0;
    line-height: 180%;
}

/* ページトップ */
#pagetop{
  position: fixed;
  bottom: 10px;
  right: 5px;
  padding: 5px;
}

/* =============================================== */
/* clearfix - クリアフィックス設定 */
/* ----------------------------------------------- */
.clearfix:after {
  content:" ";
  display:block;
  clear:both;
}

/* =============================================== */
/* rollover - 画像ロールオーバー設定 */
/* ----------------------------------------------- */
a:hover img{
  -moz-opacity: 0.80;
  opacity: 0.80;
  filter: alpha(opacity=80);
}

nav a:hover img{
  -moz-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}

/* =============================================== */
/* other - ほか */
/* ----------------------------------------------- */
.ex-large{font-size: 145%;}
.large{font-size: 120%;}
.small{font-size: 85%;}
.ex-small{font-size: 70%;}

.blue{color: #00ccff;}
.red{color:#e60012;}
.yellow{color:#C99809;}
.gold{color:#bc9f66}

.center{text-align: center;}
.right{text-align: right;}
.left{text-align: left;}

.normal{font-weight: 300;}
.bold{font-weight: 600;}

.blackLight {text-shadow: 0 0 5px #000, 0 0 5px #000, 0 0 5px #000;}
.redLight {text-shadow: 0 0 5px #c00, 0 0 5px #c00, 0 0 5px #c00;}</pre></body></html>