﻿@media screen and (max-width: 943px) {
  .sp-no {
    display: none;
  }
}


/* 画像切り替え
----------------------------------------------*/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 943px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

/* アラート
----------------------------------------------*/
.noscript-msg {
  margin: 2em;
  text-align: center;
  color: red;
}

/* マウスオーバー
----------------------------------------------*/
.mask a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

/* 装飾
----------------------------------------------*/
.imp {
  color: red;
}
.imp-inline {
  color: red;
  padding-left: 2em;
  font-weight: bold;
}
.under {
  background: linear-gradient(transparent 90%, #666 90%);
}

/* フロート解除
----------------------------------------------*/
.clearfix:after {
    display:block;
    clear:both;
    height:0px;
    visibility:hidden;
    content:".";
}
.clearfix {
  min-height: 1px; /*IE6、7対策*/
}

/* ボタン
----------------------------------------------*/
.button {
	border: 1px solid #cccccc;
	background-color: #cccccc;
	background-image: -webkit-linear-gradient(top, #e5e5e5, #cccccc);
	background-image: linear-gradient(to bottom, #e5e5e5, #cccccc);
	border-radius: 4px;
	color: #333;
	line-height: 30px;
	-webkit-transition: none;
	transition: none;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	padding: 2px 6px;
}
.button:hover {
	border:1px solid #cccccc;
	background-color: #dbdbdb;
	background-image: -webkit-linear-gradient(top, #dbdbdb, #d1d1d1);
	background-image: linear-gradient(to bottom, #dbdbdb, #d1d1d1);
	color: #333;
}
.button:active {
	background: #cccccc;
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, .2);
	color: #333;
	text-shadow: 0 1px 1px rgba(255, 255, 255, .5);
}
.button:visited {
	color: #333;
}
/*# sourceMappingURL=style.css.map */
