@charset "utf-8";

* {
	margin: 0px; /* 各ブラウザの独自解釈をリセット*/
	padding: 0px;
}


html {
	height: 100%;
	position: relative;
	margin-top: 0;
}

body {
	font-size: 16px; /* 基本のフォントサイズ */
	font-family: 'notosansjp-medium';
	line-height: 1.8;
	height: 100%;
	margin: 0;
	padding: 0px;
	color: #333333;
	word-break: break-word;
	-webkit-text-size-adjust: 100%;
	background-color: #FFF;
}

img {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	vertical-align: bottom;
}

th {
	padding: 10px;
}
td {
	padding: 10px;
}

p {
	margin: 0px;
	padding: 0px;
}
li {
	list-style: none;
}

.indent {
	padding-left: 1em;
	text-indent: -1em;
}

a {
	transition: all .2s ease-in;
}
a .hover_img {
	transition: all .2s ease-in;
}
a:hover .hover_img{
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
img, object, video {
	max-width: 100%;
	height: auto;
}

/* リンク設定
---------------------------------------------------- */
a:link {
	color: #333333;
	text-decoration: none;

}
a:visited {
	color: #333333;
	text-decoration: none;
}
a:hover, a:active {
	color: #FF7F00;
	text-decoration: none;
}


/* 汎用CSS
---------------------------------------------------- */
.cf:before,.cf:after {content:"";display:table;}
.cf:after {clear:both;}
.cf {zoom:1;}


/* h
---------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
	width:auto;
	height:auto;
	margin: 0px;
	padding: 0px;
	font-weight: normal;
}



@media only screen and (max-width: 767px) {

body {
	font-size: 14px;
}

}