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

@charset "utf-8";
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, tab {
    margin: 0;
    padding: 0;
    border: 0;
    font-style:normal;
    font-weight: normal;
    font-size: 100%;
    vertical-align: baseline;
}
 
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, tab {
    display: block;
}

html,body{
    -webkit-text-size-adjust:100%;
    width: 100%;
}

html {
	min-height: 100%;
	position: relative;
    font-size: 62.5%;/* 16px x 0.625 = 10px(=1rem) */
}
 
blockquote, q {
    quotes: none;
}
 
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
 
input[type="text"], input[type="submit"], button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
 
ol, ul{
    list-style:none;
}

img {
	vertical-align: bottom;
}
 
table{
    border-collapse: collapse; 
    border-spacing:0;
}
 
caption, th{
    text-align: left;
}
 
 /* link
**************************************************************/
a {
    color:#0085B2;
    cursor: pointer;
    text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:focus {
    outline:none;
}
 
/* clearFix */
.cf:before,
.cf:after {
    content:"";
    display:table;
}
 
.cf:after {
    clear:both;
}
 
/* For IE 6/7 (trigger hasLayout) */
.cf {
    zoom:1;
}
 
.both{
    clear:both;
}
 
body {
    font-size: 1.4rem;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
    word-break: normal;
    word-wrap: break-word;
    margin-bottom: 0;
}

input[type="text"],
input[type="password"],
select {
	border: 1px #CCC solid;
	padding: 10px;
    background: #FFF;
    font-size:14px;
}
textarea {
    background: #FFF;
    border: 1px #CCC solid;
    padding: 10px;
    font-size:14px;
    line-height: 1.6;
    width: 100%;
    box-sizing: border-box;
}


@media screen and (min-width: 768px) {

body {
    font-size: 1.5rem;
}

}