@charset "utf-8";

/*Webkit*/
::-webkit-input-placeholder{color: #CCC}
/*Firefox 19以降*/
::-moz-placeholder{color: #CCC} 
/*Firefox 18以前*/
:-moz-placeholder{color: #CCC}
/*Windows IE*/
:-ms-input-placeholder{color: #CCC; font-size:11px; line-height:125%;}

* {
    -webkit-print-color-adjust: exact !important;   /* Chrome, Safari */
    color-adjust: exact !important;                 /*Firefox*/
}

/* ------------------------------
    RESET
------------------------------ */
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;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
h1,h2,h3,h4,h5,h6 {
	font-size: 120%;
	font-weight: bold;
}
li,ol {
	list-style: none;
	margin: 0;
	padding: 0;
}
a img,map a {
	border: none;
}
a{
	color:#333;
}
a:hover{
	color:#C33;
	text-decoration:underline;
}
a:hover img{
	opacity:0.75
}
input[type="submit"],input[type="reset"],
input[type="radio"],input[type="checkbox"],
label,button {
	cursor: pointer;
	outline:0;
}
input[type="text"],textarea{
	outline:0;
}
strong{
  font-style: normal;
}

/*
::selection {
    background:rgba(0,0,0,0);
}
*/

.red{ color:#F00}

/*
============================ Base CSS ============================

			デフォルト設定
				1.マージン・インデント
				2.位置クラス
				3.アクセシビリティ
				4.不具合回避

====================================================================
*/


/* 1.マージン・インデント
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ▽ */

.m0 {
	margin: 0;
}
.mAuto {
	margin-left: auto;
	margin-right: auto;
}

.m1b {
	margin-bottom: 1px;
}
.m2b {
	margin-bottom: 2px;
}
.m3b {
	margin-bottom: 3px;
}
.m4b {
	margin-bottom: 4px;
}
.m5b {
	margin-bottom: 5px;
}
.m6b {
	margin-bottom: 6px;
}
.m7b {
	margin-bottom: 7px;
}
.m8b {
	margin-bottom: 8px;
}
.m9b {
	margin-bottom: 9px;
}
.m10b {
	margin-bottom: 10px;
}
.m12b {
	margin-bottom: 12px;
}
.m14b {
	margin-bottom: 14px;
}
.m15b {
	margin-bottom: 15px;
}
.m18b {
	margin-bottom: 18px;
}
.m20b {
	margin-bottom: 20px;
}
.m25b {
	margin-bottom: 25px;
}
.m30b {
	margin-bottom: 30px;
}
.m35b {
	margin-bottom: 35px;
}
.m40b {
	margin-bottom: 40px;
}
.m45b {
	margin-bottom: 45px;
}
.m50b {
	margin-bottom: 50px;
}

.m5l {
	margin-left: 5px;
}
.m10l {
	margin-left: 10px;
}
.m15l {
	margin-left: 15px;
}
.m20l {
	margin-left: 20px;
}
.m25l {
	margin-left: 25px;
}
.m30l {
	margin-left: 30px;
}

.m5r {
	margin-right: 5px;
}
.m7r {
	margin-right: 7px;
}
.m10r {
	margin-right: 10px;
}
.m11r {
	margin-right: 11px;
}
.m12r {
	margin-right: 12px;
}
.m13r {
	margin-right: 13px;
}
.m14r {
	margin-right: 14px;
}
.m15r {
	margin-right: 15px;
}
.m20r {
	margin-right: 20px;
}
.m25r {
	margin-right: 25px;
}
.m30r {
	margin-right: 30px;
}
.m40r {
	margin-right: 40px;
}
.m50r {
	margin-right: 50px;
}

.m4t {
	margin-top: 4px;
}
.m5t {
	margin-top: 5px;
}
.m10t {
	margin-top: 10px;
}

.p5b {
	padding-bottom: 5px;
}
.p10b {
	padding-bottom: 10px;
}
.p15b {
	padding-bottom: 15px;
}
.p20b {
	padding-bottom: 20px;
}
.p25b {
	padding-bottom: 25px;
}
.p30b {
	padding-bottom: 30px;
}

.p5l {
	padding-left: 5px;
}
.p10l {
	padding-left: 10px;
}
.p15l {
	padding-left: 15px;
}
.p20l {
	padding-left: 20px;
}
.p25l {
	padding-left: 25px;
}
.p30l {
	padding-left: 30px;
}

.lft1{ margin-left:1%;}

.nowrap {
    white-space: nowrap;
}

/* 3.アクセシビリティ
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ▽ */
.hide {	/* for the benefit of IE5 Mac */
	height: 0;
	width: 0;
	overflow: hidden;
	position: absolute;
}

/* 4.不具合回避・デバッグ用
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ▽ */

html {	/* IEでの画像ちらつき防止 */
  filter: expression(document.execCommand("BackgroundImageCache",false, true));
}


@keyframes spinner {
  to {transform: rotate(360deg);}
}
 
.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  border-radius: 50%;
  border: 1px solid #ccc;
  border-top-color: #07d;
  animation: spinner .6s linear infinite;
}

.w30{ width:30% !important; }
.w45{ width:45% !important; }
.f15{ font-size:115% }