/*!
 * Start Bootstrap - Grayscale Bootstrap Theme (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */

body {
    font-family: "Lora","Helvetica Neue",Helvetica,Arial, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    height: 100%;
    background-color: #000000;
    background-image: url('../img/base-bg5.jpg');
    text-shadow: 3px 3px 4px rgba(53, 53, 53, 1);
    width: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
	color: #000;
	text-shadow: 1px 1px 10px rgba(160, 142, 122, 1);
}

.fcw	{
    color: #FFFFFF;
    text-shadow: 3px 3px 4px rgba(53, 53, 53, 1);
}

html {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 35px;
    text-transform: uppercase;
    font-family: "Montserrat","Helvetica Neue",Helvetica,Arial,"游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

p {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

p span {
    white-space: nowrap;
    display: inline-block;
}

@media(min-width:767px) {
    p {
        margin: 0;
        padding: 0;
        font-size: 18px;
        line-height: 1.8;
    	letter-spacing: 1px;
    }
}


a {
    color: #219ab3;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #11505d;
}

.light {
    font-weight: 400;
}

.navbar-custom {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    background-color: #000;
    color: #fff;
}

.navbar-custom .navbar-brand {
    font-weight: 700;
}

.navbar-custom .navbar-brand:focus {
    outline: 0;
}

.navbar-custom .navbar-brand .navbar-toggle {
    padding: 4px 6px;
    font-size: 16px;
    color: #fff;
}

.navbar-custom .navbar-brand .navbar-toggle:focus,
.navbar-custom .navbar-brand .navbar-toggle:active {
    outline: 0;
}

.navbar-custom a {
    color: #fff;
}

.navbar-custom .nav li.active {
    outline: nonte;
    background-color: rgba(255,255,255,.3);
}

.navbar-custom .nav li a {
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .nav li a.active {
    outline: 0;
    background-color: rgba(255,255,255,.3);
}

@media(min-width:767px) {
    .navbar {
        padding: 20px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        background: 0 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

    .top-nav-collapse {
        padding: 0;
        background-color: #000;
    }

    .navbar-custom.top-nav-collapse {
        border-bottom: 1px solid rgba(255,255,255,.3);
    }
}

.intro {
    display: table;
    width: 100%;
    height: auto;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    background-color: #000;
}

.intro .intro-body {
    display: table-cell;
    vertical-align: middle;
}

.intro .intro-body .brand-heading {
    font-size: 40px;
}

.intro .intro-body .intro-text {
    font-size: 18px;
}

@media(min-width:767px) {
    .intro {
        height: 100%;
        padding: 0;
    }

    .intro .intro-body .brand-heading {
        font-size: 100px;
    }

    .intro .intro-body .intro-text {
        font-size: 25px;
    }
}

.btn-circle {
    width: 70px;
    height: 70px;
    margin-top: 15px;
    padding: 7px 16px;
    border: 2px solid #fff;
    border-radius: 35px;
    font-size: 40px;
    color: #fff;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
    color: #fff;
    background: rgba(255,255,255,.1);
}

.btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.btn-circle:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {    
    0 {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {    
    0 {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

.content-section {
    padding: 40px 0;
}

#map {
    width: 100%;
    height: 200px;
    margin-top: 100px;
}

@media(min-width:767px) {
    .content-section {
        padding-top: 200px;
    }

    .download-section {
        padding: 100px 0;
    }

    #map {
        height: 400px;
        margin-top: 250px;
    }
}

.btn {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-default {
    border: 1px solid #219ab3;
    color: #219ab3;
    background-color: transparent;
}

.btn-default:hover,
.btn-default:focus {
    border: 1px solid #219ab3;
    outline: 0;
    color: #000;
    background-color: #219ab3;
}

ul.banner-social-buttons {
    margin-top: 0;
}

@media(max-width:1199px) {
    ul.banner-social-buttons {
        margin-top: 15px;
    }
}

@media(max-width:767px) {
    ul.banner-social-buttons li {
        display: block;
        margin-bottom: 20px;
        padding: 0;
    }

    ul.banner-social-buttons li:last-child {
        margin-bottom: 0;
    }
}

footer {
    padding: 50px 0;
    margin: 0;
	width: 100%;
	background-color: #000000;
	text-align: center;
	color: #fff;
}

footer p {
    margin: 0;
}

::-moz-selection {
    text-shadow: none;
    background: #edb8b6;
}

::selection {
    text-shadow: none;
    background: #edb8b6;
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

body {
    webkit-tap-highlight-color: rgba(255,255,255,.2);
}

/* Plus! */

dl.kouen	{
}

dl.kouen dt	{
	font-size: 16px;
}

dl.kouen dd {
	line-height: 180%
}


.div18	{ font-size: 18px; line-height: 1.8; letter-spacing: 1px; margin: 0; padding: 0; }
.div16	{ font-size: 16px; line-height: 1.8; letter-spacing: 1px; margin: 0; padding: 0; }
.div16l	{ font-size: 16px; line-height: 1.8; letter-spacing: 1px; margin: 0 0 0 5px; padding: 0 0 0 0.8em; border-left: 5px solid #eb9799; }

.kakomip	{	
	margin: 0;
	padding: 1em;
	background-color: rgba(235, 151, 153,0.6);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.kakomi-g	{
	margin: 0;
	padding: 30px 30px 40px;
	border: 1px solid #86c6b0;
	background-color: #FFFFFF;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.kakomi-g a {
    color: #219AB3;
    text-decoration: underline;
    text-shadow: 1px 1px 1px rgba(180,180,180, .5);
}

.kakomi-g a:hover,a:focus {
    color: #e57c72;
} 
 
 
.div14	{ font-size: 14px; line-height: 1.8;}
.senkou	{
	font-weight: bold;
    text-transform: uppercase;
    font-family: "Montserrat","Helvetica Neue",Helvetica,Arial,"游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 24px;
}

h2	{		
	margin: 40px 0;
	padding: 1em;
	background-color: rgba(92, 185, 159, 0.7);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
    color: #FFFFFF;
 }

h3	{ line-height: 150%; }

.f-left	{ float: left; }
.f-right	{ float: right; }
.c-both	{ clear: both;}

.minib	{ display: inline-block;}

/* Secttion */

.story-section {
	padding: 50px 0;
	width: 100%;
}

.about-section {
	padding: 50px 0;
	width: 100%;
	color: #000;
	text-shadow: 1px 1px 10px rgba(160, 142, 122, 1);
}

.about-section p	{
	letter-spacing: 0;
	font-size: 16px;
}

.caststaff-section {
	padding: 50px 0;
	width: 100%;
}

.info-section {
	padding: 50px 0;
	width: 100%;
}

.ticket-section {
	padding: 50px 0;
	width: 100%;
}

.special-section {
	padding: 50px 0;
	width: 100%;
}

/* Talk */

.talk-section {	
	padding: 50px 0;
	width: 100%;
}

.talk-wrap	{
	background-color: rgba(255, 2555, 2555, 0.6);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	padding: 3em 5px;
 }

.max500	{ max-width: 500px; margin: 0 auto; line-height: 200%;}
.max600	{ max-width: 600px; margin: 0 auto; line-height: 200%;}

.talk-section p	{ 
	margin-top: 3em;
	font-size: 15px;
	line-height: 200%;
	text-shadow: none;
}
.talk-section p.upper	{  border-top: 1px dotted #333333; padding-top: 3em;}

.talker1	{ font-weight: bold; color: #ec9800; }
.talker2	{ font-weight: bold; color: #5472b5; }


/* Pohi2 */

.pohi2-section {	
	padding: 50px 0;
	width: 100%;
}

.pohi2-wrap	{
	background-color: rgba(255, 2555, 2555, 0.6);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	padding: 3em 5px;
 }

.pohi2-section p	{
	font-size: 15px;
	line-height: 220%;
	letter-spacing: 0;
	margin-top: 3em;
}
.pohi2-section p.upper	{  border-top: 1px dotted #333333; padding-top: 3em;}


/* Flyer */

.flyer-section {
	color: #FFFFFF;
	text-align: center;
	padding: 50px 0;
	width: 100%;
	background-image: url('../img/base-bg7.png');
	background-repeat: repeat;
}

.flyer-section img	{
	margin: 10px 0;
	height: 100%;
	width: 100%;
	max-width: 800px;
}



/* circle */

.btn-circleb {
    width: 70px;
    height: 70px;
    margin-top: 15px;
    padding: 7px 16px;
    border: 2px solid #000;
    border-radius: 35px;
    font-size: 40px;
    color: #000;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.btn-circleb:hover,
.btn-circleb:focus {
    outline: 0;
    color: #000;
    background: rgba(130,110,60,.1);
}

.btn-circleb i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.btn-circleb:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

/* margin set */

.mb0	{ margin-bottom: 0px; }	
.mb5	{ margin-bottom: 5px; }	
.mb10	{ margin-bottom: 10px; }	
.mb15	{ margin-bottom: 15px; }	
.mb20	{ margin-bottom: 20px; }	
.mb25	{ margin-bottom: 25px; }	
.mb30	{ margin-bottom: 30px; }	
.mb35	{ margin-bottom: 35px; }	
.mb40	{ margin-bottom: 40px; }	
.mb60	{ margin-bottom: 60px; }	
.mb80	{ margin-bottom: 80px; }	
.mb100	{ margin-bottom: 100px; }	

.pb10	{ padding-bottom: 10px; }
.pb15	{ padding-bottom: 15px; }

.mt0	{ margin-top: 0px; }	
.mt5	{ margin-top: 5px; }	
.mt10	{ margin-top: 10px; }	
.mt15	{ margin-top: 15px; }	
.mt20	{ margin-top: 20px; }	
.mt25	{ margin-top: 25px; }	
.mt30	{ margin-top: 30px; }	
.mt35	{ margin-top: 35px; }	
.mt40	{ margin-top: 40px; }	
.mt60	{ margin-top: 60px; }	
.mt80	{ margin-top: 80px; }	
.mt100	{ margin-top: 100px; }	

.ml5	{ margin-left: 5px; }
.ml10	{ margin-left: 10px; }
.ml15	{ margin-left: 15px; }
.ml20	{ margin-left: 20px; }
.ml25	{ margin-left: 25px; }
.ml30	{ margin-left: 30px; }
.ml35	{ margin-left: 35px; }
.ml40	{ margin-left: 40px; }
.ml45	{ margin-left: 45px; }
.ml50	{ margin-left: 50px; }

.mr5	{ margin-right: 5px; }
.mr10	{ margin-right: 10px; }
.mr15	{ margin-right: 15px; }
.mr20	{ margin-right: 20px; }
.mr25	{ margin-right: 25px; }
.mr30	{ margin-right: 30px; }
.mr35	{ margin-right: 35px; }
.mr40	{ margin-right: 40px; }
.mr45	{ margin-right: 45px; }
.mr50	{ margin-right: 50px; }

.ma5	{ margin: 5px;}

.lh180	{ line-height: 180%; }
.lh200	{ line-height: 200%; }

.wd660	{ width: 660px;}
.wd300	{ width: 300px; }
.wd100	{ width: 100px; }
.wd90	{ width: 90px; }

.fs10px	{ font-size: 10px; }
.fs11px	{ font-size: 11px; }
.fs12px	{ font-size: 12px; }
.fs14px	{ font-size: 14px; }
.fs15px	{ font-size: 15px; }
.fs16px	{ font-size: 16px; }
.fs18px	{ font-size: 18px; }
.fs24px	{ font-size: 24px; }
.fs32px	{ font-size: 32px; }
.fslarger	{ font-size: larger; }
.fssmaller	{ font-size: smaller; }

.bold	{ font-weight: bold; }

.left	{ text-align: left;}
.center	{ text-align: center;}
.right	{ text-align: right;}

.border-bottom	{ padding-bottom: 3px; border-bottom: 1px solid #828282; }