@charset "UTF-8";
/* CSS Document */
/* base.css */

/* ---------------------
 * FONTSIZE MODEL * 
 * ---------------------
 *  63% ->	10pxに相当
 *  70% ->	11pxに相当
 *  75% ->	12pxに相当
 *  82% ->	13pxに相当
 *  88% ->	14pxに相当
 *  94% ->	15pxに相当
 * 100% ->	16pxに相当
 * 107% ->	17pxに相当
 * 113% ->	18pxに相当
 * 119% ->	19pxに相当
 * 125% ->	20pxに相当
 * --------------------- */
 
 
/*
 RESET
-----------------------------------*/
html {
	overflow-y: scroll;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
	margin: 0;
	padding: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
	font-style: normal;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,th {
	text-align: left;
}
q:before,q:after {
	content: '';
}
object,
embed {
	vertical-align: top;
}

h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
	font-weight: normal;
}
img {
	vertical-align:bottom;
}
img,abbr,acronym,fieldset {
	border: 0;
}
li {
	list-style-type: none;
}


/*
 BASE
-----------------------------------*/
body {
	margin:0;
	padding:0;
	line-height:1.6;
	letter-spacing:1px;
	background:#fff;
	font-family:"Hiragino Kaku Gothic Pro", HiraKakuPro-W3, "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "MS P ゴシック", verdana, sans-serif;
	color:#333333;
	line-height:1.5;
	font-size:82%;/* 12px相当 */
}

a {
	color:#0172AB;
	text-decoration:none;
}
a:hover {
	color:#0172AB;
	text-decoration:underline;
}


/* --------------------------------------------------------
	float
-------------------------------------------------------- */
.fl-l {
	float:left;
}
.fl-r {
	float:right;
}
/* --------------------------------------------------------
	float-clear
-------------------------------------------------------- */
.clear {
	clear:both;
}
/* --------------------------------------------------------
	clearfix
-------------------------------------------------------- */
.clearfix:after {
  content: ".";  /* 新しい要素を作る */
  display: block;  /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*¥*//*/
  height: auto;
  overflow: hidden;
  /**/
}
/* --------------------------------------------------------
	調整用Margin/Padding/width
-------------------------------------------------------- */
.mt-15 {
	margin-top:15px;
}

.mt-20 {
	margin-top:20px;
}
.mt-30 {
	margin-top:30px;
}
.mt-35 {
	margin-top:35px;
}
.mb-5 {
	margin-bottom:5px;
}
.mb-20 {
	margin-bottom:20px;
}
.pl-15 {
	padding-left:15px;
}
.ml-15 {
	margin-left:15px;
}
.ml-20 {
	margin-left:20px;
}
.ml-30 {
	margin-left:30px;
}
.ml-60 {
	margin-left:60px;
}
.mr-20 {
	margin-right:20px;
}
.mr-50 {
	margin-right:50px;
}
.w-450 {
	width:450px;
}