/*--------------------------------
初期設定
--------------------------------*/
*{
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: none;
}
table
{
	border-collapse: collapse;
	border-spacing: 0;
	font-size: inherit;
}

img{
	vertical-align: top;
}
a{
	text-decoration: none;
	font-weight: normal;
}
a:hover{
	text-decoration: underline;
}
a img{
	border: none;
}
ul li,
ol li{
	list-style: none;
}
select{
	font-size: 14px;
}
.left{
	float: left;
}
.right{
	float: right;
}
.center{
	text-align: center;
}
a img{
	opacity: 1;
	transition: opacity 0.2s linear 0s;
}
a:hover img{
	opacity: 0.7;
}
a:hover img.rollover{
	opacity: 1;
}
hr{
	border: none;
	border-bottom: solid 1px #ddd7c7;
}
noscript{
	width: 100%;
	margin: 0 10px;
	text-align: center;
}

/*--clearfix--*/
.cf:before,
.cf:after {
    content:"";
    display:table;
}
.cf:after {
    clear:both;
}

.clear {
	display: block;
	clear: both;
}

@media only screen and (max-width: 768px) {
	a:hover{
		text-decoration: none;
	}
	a:hover img{
		opacity: 1;
	}
}

/* iPhone用リセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
