﻿@charset "UTF-8";
/* CSSリセット */
/* ===========================================================================*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
html {
	font-size: 62.5%;
}
body {
    line-height: 1.4;
    font-size: 1.4rem;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
    overflow-x: hidden;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-size: 100%;
}
p {
  margin-bottom: .5rem;
}
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0px;
}
form label {
  cursor: pointer;
}
a {
  text-decoration: none;
  color: #4c4c4c;
}
a:hover, a:active, a:link, a:visited, a:focus {
	color: #FFF;
}
a img {
  border: none;
}
img {
    vertical-align: bottom;

}
input[type="text"] {
   font-size:16px;
}
/* バグ回避 */
/* ===========================================================================*/
.cf:after {
  display: block;
  clear: both;
  content: '';
}
