@charset "utf-8";

/* reset
-------------------------------------------------------------*/
html {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, verdana, "メイリオ", "Meiryo", "Osaka", sans-serif;
	font-size: 62.5%; /* sets the base font to 10px for easier math */
	-webkit-text-size-adjust: 100%;	
}

html,body { height:100%; }

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, p, blockquote, th, td , span {
    vertical-align:middle;
    margin: 0;
    padding: 0;
}
body {
    color:#000 ;
	font-size: 16px;
    font-size: 1.6rem;
	position: relative;
	overflow-x: hidden;
}

a {
    color:#4d4d4d ;
    text-decoration:none;
    transition: all 0.2s ease 0s;
}
a:hover {
    opacity: 0.8;
}
p {
    margin-bottom:10px;
}
p:last-child {
    margin-bottom:0;
}
header p , footer p {
    margin-bottom:0;
}

img{
	max-width: 100%;
	height: auto;
}

iframe {
    vertical-align:middle;
}

figure,figcaption{
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align: bottom;
    background: transparent;
}

img {
    vertical-align:top;
}

ol, ul {
    list-style: none;
}

caption, th {
    text-align: left;
}
/*
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight:normal;
}
*/
input, textarea {
    border:1px solid #C9C9CA;
    box-sizing: border-box;
    font-size: 100%;
    padding:2px;
}

select {
    border:1px solid #C9C9CA;
    box-sizing: border-box;
    font-size: 100%;
    vertical-align:middle;
    padding:1px;
}
input[type=radio] ,
input[type=checkbox] ,
input[type=file] {
    border:none;
    padding:0;
}
input , select {
    position:relative;
    top:1px;
}
input[name=send-to-finish] {
    position:relative;
    top:17px;
}

*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}




/* clearfix
-------------------------------------------------------------*/
.clearfix {
    zoom: 1;
}
.clearfix:after{
    content: "."; display: block; height: 0; clear: both; visibility: hidden; line-height: 0;
}