﻿@charset "utf-8";


/* =================================================================
		Reset Styles
================================================================= */
html, body, div, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, address,
ul, ol, li, dl, dt, dd,
table, th, td,
form, fieldset {
  font-family: "游ゴシック体","Yu Gothic","YuGothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","Osaka","ＭＳ Ｐゴシック", "MS PGothic",sans-serif;
	line-height: 1.2;
	margin: 0;
	padding: 0;
}


/* HTML5 */
article, aside, figure, figcaption, footer, header,
hgroup, nav, section, summary{
	display: block;
}


/* Base Styles */
html {
  font-size: 62.5%; /* sets the base font to 10px for easier math */
  -webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-overflow-scrolling: touch;
}

body {
  font-family: "游ゴシック体","Yu Gothic","YuGothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","Osaka","ＭＳ Ｐゴシック", "MS PGothic",sans-serif;
  font-size: 1.4rem;   /* sets the default sizing to make sure nothing is actually 10px */
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}
@media screen and (min-width: 741px) {
	body {
		min-width: 1040px;
		margin: auto;
	}
}	
	

pre,code,kbd,samp,tt{
	font-family: monospace;
	line-height: 100%;
}

img {
	border: none;
	vertical-align: bottom;
}

table {
	font-size: inherit;
	font: 100%;
	border: none;
	border-collapse: collapse;
	border-spacing: 0;
}

label,
button{
	cursor: pointer;
}

input,
select,
textarea{
	padding: 2px;
}

ol,ul {
	list-style: none;
}

h1,h2,h3,h4,h5,h6{
	font-size: 100%;
}

address {
	font-style:normal;
} 


/* form */
select,input,button,textarea{
  font-family: "游ゴシック体","Yu Gothic","YuGothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","Osaka","ＭＳ Ｐゴシック", "MS PGothic",sans-serif;
}
select option {
	padding : 0 5px 0 5px;
}
form label{
	cursor : pointer;
}

a,
input{
	outline: none;
}

a {
  color: #00559d;
  text-decoration: none;
}
#main a:visited {
  color: #7e318e !important;
  text-decoration: none;
}
a:hover,
#main a:hover {
  text-decoration: underline;
}
a:focus {
  outline: none;
}

.clearfix:after {
	display: block;
	clear: both;
	content: "";
}



