@charset "UTF-8";
* {
	line-height: 1.8em;
}
/* リンクの色 */
a:link { color: #2eb85c }
a:visited { color: #206035 }
a:hover { color: #c71585 }
a:active { color: gray }

html {
	height: 100%;
}
body {
	font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	font-size: small;
	background-color: #e6e4e9;
	height: 100%;
	text-align: center;
}
#wrapper {
	margin: 0 auto;
	width: 800px;
}
#menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
    color: #fff;
    text-align: left;
    background: url("/images/top_msg_bg.png") bottom;
}
#menu_wrap {
    width: 900px;
    margin: 0 auto;
    height: 100%;
}
#menu ul {
    display: flex;
    justify-content: space-around;
}
#navi {
    padding: 14px 10px 0;
}
#navi li {
    margin-bottom: 8px;
    padding: 0 8px;
    color: #fff;
    font-size: 1.2em;
    background-color: #697ED3;
    border-radius: 4px;
    border-bottom: 4px solid #98a3cd;
    transition-duration: 0.3s;
}
#navi li:hover {
    background-color: #69b5d3;
    transition-duration: 0.3s;
}
#navi li:first-child {
    background-color: #c4b287;
}
#navi li:first-child:hover {
    background-color: #d3b369;
}
#navi li a {
    display: block;
    width: 100%;
    color: #fff;
}
#external_ticket_form {
    margin-top: 60px;
    border: none;
    height: 2750px;
}
#footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 80px;
	color: #fff;
	text-align: left;
	background-image: url("/images/menu_bg.png");
}