@charset "utf-8";

/* ===================================================================
format
=================================================================== */

/*	html
--------------------------------------------------------------------*/
html {
/* font-size指定をremで設定するための処理　1.6rem = 16px */
font-size: 62.5%;
}

/*	body
--------------------------------------------------------------------*/
body {
font-family: '游ゴシック', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif, 'FontAwesome';
font-size: 1.6rem;
line-height: 1.5;
background: #eff5f9;
}

/*	a:link,a:visited,a:hover,a:active
--------------------------------------------------------------------*/
a {
color: #0068b7;
text-decoration: none;
}

a:link {
color: #0068b7;
text-decoration: none;
}

a:visited {
color: #0068b7;
}

a:hover {
text-decoration: underline;
}

a:active	{
color: #0068b7;
}

/*	img
--------------------------------------------------------------------*/
img {
display: block;
max-width: 100%;
height: auto;
}

/*	ul,ol
--------------------------------------------------------------------*/
ul,
ol {
list-style: none;
}
