/*
すべてのページに共通するスタイル
基本変更は行わない。
*/
/*
 * 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;
}

th, td {
  vertical-align: middle;
}

/* 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;
}

em {
  font-style: italic;
}

/* 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, 
.blog_list ul li a:after, 
.btn_wrap:after,
ul:after,
.aside_event_list:after
{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;

  width: 0px;
}

.clearfix,
#wrapper,
#section_event_info,
.event_list ul,
aside ul li a,
.blog_list ul li a,
.btn_wrap,
ul,
.aside_event_list
{ 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 .blog_list ul li a,
* html .btn_wrap,
* html ul,
* html .aside_event_list

{ height: 1%; zoom: 1; }

.clearfix,
#wrapper,
#section_event_info,
aside ul li a,
.blog_list  ul li a,
.btn_wrap,
ul,
.aside_event_list 
{ 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 .blog_list  ul li a,
*:first-child+html .btn_wrap,
*:first-child+html ul,
*:first-child+html .aside_event_list 
{ 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: Helvetica, sans-serif; "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 'メイリオ' , Meiryo , Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

h1,h2,h3,h4,h5,h6 {
  font-family: Helvetica, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 'メイリオ' , Meiryo , Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

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: .7;
  -webkit-opacity: .7;
  -moz-opacity: .7;
  filter: alpha(opacity=70);  /* IE lt 8 */
  -ms-filter: "alpha(opacity=70)"; /* IE 8 */
}

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

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