@charset "UTF-8";
/* CSS Document */

/*===================== 初期化 =====================*/
/* 1.タグの初期化
-------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	list-style-type: none;
	font-weight: normal;
	-webkit-text-size-adjust: 100%;
}
strong {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	list-style-type: none;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}

nav ul {
  list-style:none;
}

blockquote, q {
  quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content:'';
  content:none;
}

a {
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
}

/* change colours to suit your needs */
mark {
  color:#000; 
  font-style:italic;
  font-weight:bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom:1px dotted;
  cursor:help;
}

table {
  border-collapse:collapse;
  border-spacing:0;
}


/* 2.HTML＆BODY設定
-------------------------------------------*/
    * {
		margin:0;
		padding:0;
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
             -o-box-sizing: border-box;
            -ms-box-sizing: border-box;
                box-sizing: border-box;
		background: url("../img/touka.gif");
    }
 
body{
    overflow-x: hidden;
    background: url(../images/img_01-bg.png) no-repeat center top;
    min-width: 960px;
    background-color: #8a3ba8;
    color: #fff;
	line-height:140%;
	font-size: 100%;
    font-family:
   "ヒラギノ明朝 ProN W2","HiraMinProN-W2","Hiragino Mincho ProN","HG明朝E",
   "ＭＳ Ｐ明朝","MS PMincho","MS 明朝","sans-serif";
}

a, a img {
  outline: none;
}
a:link, a:visited { text-decoration: none; }
a:hover, a:active  { text-decoration: none;}
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

h1,h2,h3,h4,h5,h6 {
    width: 100%;
}
 
img {
	border:none;
}

ol ,ul{
	list-style:none;
}

html{
	color:#000000;
	overflow-y:scroll;
}
ol,ul,li{
	list-style:none;
	list-style-type:none;
}
fieldset,img{
	border:none;
	vertical-align: bottom;
}
table{
	border-collapse:collapse;
	border-spacing:0;
}
caption,th{
	text-align:left;
}
address,caption,cite,code,dfn,em,strong,th,var{
	font-style:normal;
}

/*clear fix
-------------------------------------------*/
.fix:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}
.fix{
  display: inline-block;
}
/* Hides from IE Mac */
* html .fix{
  height: 1%;
}
.fix{
  display:block;
}
