/* 基本 */
html,body,div,span, p, 
dl,dt,dd,ul,ol,li,hr,
h1,h2,h3,h4,h5,h6,
pre,form,fieldset,input,textarea,option,select,
blockquote,tbody,table,th,tr,td{
  margin: 0;
  padding: 0;
}
/* 以下は念のため：要素間の隙間をなくす設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
  background-color : #FFF;
  color : #666;
  font-size : 16px;
  line-height: 1.4;
  font-family: メイリオ, arial, sans-serif;
}
h1 {
	font-size: 2.5rem;
	font-weight: 400;
	letter-spacing: 0.3em;
	padding: 15px;
}
p {
	line-height: 2;
	font-size: 1rem;
}
ul {
	padding-left: 20px; /* 縦余白 横余白 */
}
li {
	padding: 7px 10px; /* 縦余白 横余白 */
}
/* ヘッダー設定用 */
.top_title {
	width: 100%;
	min-width: 1400px;
	background-color : #000;
	color : #FFF;
	/*border: 1px solid #FFF; */ /* 検証用のライン */
	text-align: center;
}

/* フッター設定用 */
.futter-container {
	background: rgba(0, 0, 0, 0.5);
	max-width: 1400px;
	width: 100%;
	min-height: auto;
	text-align: center;
	margin: 0 auto; /* これが中央揃えの肝です */
	box-shadow: 0 15px 35px rgba(0,0,0,0.05);
	border: 1px solid rgba(0,0,0,0.05);
	box-sizing: border-box;
}
.futter-container a {
	color: orange;
	text-decoration: none;   /* デフォルトの下線を消す */
}
.futter-container a:hover {
	text-decoration: underline; /* 下線を表示する */
}
.futter-container h2 {
	color:#fff;
}
.self-padding-left {
	/* テキスト左寄せ用 */
	text-align: left;
	padding: 30px 180px; /* 縦余白 横余白 */
}