/*
すべてのページに共通するスタイル
基本変更は行わない。
*/
/*
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
/* 
Eric Meyer's CSS Reset
http://meyerweb.com/eric/tools/css/reset/
v1.0 | 20080212
CSSresetr.com
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
  vertical-align: bottom;
}

/* loading */
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #FFF;
  z-index: 100001;
}
#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -50px;
  margin-left: -100px;
  text-align: center;
  color: #DDD;
  z-index: 100000;
}


/* clearfix */
.clearfix:after,
#wrapper:after,
#section_event_info:after,
.event_list ul:after,
aside ul li a:after,
.form_list:after, 
.search_list:after, 
.img_45_txt_55:after 
{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix,
#wrapper,
#section_event_info,
.event_list ul,
aside ul li a,
.form_list,
.search_list,
.img_45_txt_55
{ display: inline-table;}
/* Hides from IE-mac \*/

* html .clearfix,
* html #wrapper,
* html #section_event_info,
* html .event_list ul,
* html aside ul li a,
* html .form_list,
* html .search_list,
* html .img_45_txt_55
{ height: 1%; zoom: 1; }

.clearfix,
#wrapper,
#section_event_info,
aside ul li a,
.form_list, 
.search_list, 
.img_45_txt_55 
{ display: block; }
 /* IE7 */

*:first-child+html .clearfix,
*:first-child+html #wrapper,
*:first-child+html #section_event_info,
*:first-child+html .event_list ul,
*:first-child+html aside ul li a,
*:first-child+html .form_list,
*:first-child+html .search_list,
*:first-child+html .img_45_txt_55
{ zoom: 1;}

.clear
{ clear:both;}

/*
基本サイズ13px
10px  77%
11px  85%
12px  93%
13px  100%
14px  108%
15px  116%
16px  124%
17px  131%
18px  139%
19px  147%
20px  154%
21px  162%
22px  170%
23px  177%
24px  185%
25px  193%
26px  200%
*/

html, body {
	font-size: 13px;
	color: #333;
	font-family: 'Century Gothic', CenturyGothic, Futura,'Trebuchet MS', 'Quicksand', 'メイリオ' , Meiryo , "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body {
  overflow-x: hidden;
}

img {display: inline-block;}

a{
  /*color: #666;*/
	color: #0079AF;
  text-decoration: none;
  cursor: pointer;
}

a:hover{
	/*color: #CCC;*/
  color:#199ED8;
  text-decoration: underline;
}

/* 画像ロールオーバー時 */
a img {
  -webkit-transition: opacity 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out;
  -ms-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

a:hover img {
  opacity: .5;
  -webkit-opacity: .5;
  -moz-opacity: .5;
  filter: alpha(opacity=50);  /* IE lt 8 */
  -ms-filter: "alpha(opacity=50)"; /* IE 8 */
}

/*
.lazyload 動作用
*/
.lazyload,
.lazyloading {
    opacity: 0;
}

.lazyloaded {
    opacity: 1;
    transition: opacity 500ms;
}