/* 全ページ共通 */

#debug{
  width: 100%;
  height: 50px;
  background-color: #ccc;
}
.desktop #debug{
  background-color: #f00;
}
.note #debug{
  background-color: #0f0;
}
.tablet #debug{
  background-color: #00f;
}
.phone #debug{
  background-color: #ccc;
}
/* =============== 共通class等 ================= */
.noscroll {

}
.opa:hover{
  opacity: 0.7;
  -moz-opacity: 0.7; /* Firefox */
  filter: alpha(opacity=7); /* IE6/7 */
  -ms-filter: "alpha(opacity=7)"; /* IE8 */
}
.font_mintyo{
  font-family: 'Times New Roman', '游明朝体', 'Yu Mincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'HGS明朝B', 'Hiragino Mincho ProN', 'ＭＳ Ｐ明朝', 'MS PMincho';
}
.container{
  width: 960px;
  margin: 0 auto;
  position: relative;
}
#page{
  width: 100%;
  min-width: 960px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* =============== header ================= */
#header{
  width: 100%;
}
#header .site-name{
  float: left;
}
#header .nav-trigger{
  width: 26px;
  height: 27px;
  float:right;
  display: none;
  cursor: pointer;
}
#header .nav-trigger img{
  width: 100%;
  height: auto;
}

/* =============== spNav ================= */
#spNav{
  display: none;
}
#spNav ul{
  display: none;
}

/* =============== main ================= */
#main{
  margin: 60px auto 90px;
}

/* =============== footer ================= */
#footer{

}
#footer .footBanner{
  margin: 0 0 40px;
}
#footer .footBanner ul li{
  width: 225px;
  float: left;
  margin: 0 20px 0 0;
  border: 1px solid #c4c4c4;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#footer .footBanner ul li:last-child{
  margin: 0;
}
#footer .footBanner ul li img{
  width: 100%;
  height: auto;
}
#footer .footComp{
  float: left;
}
#footer .footComp .footSiteName{
  margin: 0 0 15px;
}
#footer .footComp p{
  font-size: 12px;
  color: #333333;
  line-height: 1.8;
}
#footer .footNav{
  float: right;
}
#footer .footNav .footNavBox{
  width: 105px;
  float: left;
  padding: 0 0 0 15px;
  border-left: 1px solid #929292;
}
#footer .footNav .footNavBox:first-child{
  border-left: 0 none;
}
#footer .footNav .footNavBox a{
  font-size: 12px;
  color: #333333;
  text-decoration: none;
}
#footer .footNav .footNavBox .sub a{
  color: #808080;
}
#footer .footNav .footNavBox a:hover{
  text-decoration: underline;
}
#footer .copyright{
  text-align: center;
  border-top: 1px solid #bebebe;
  padding: 10px 0 20px;
  margin: 25px 0 0;
}
#footer .copyright small{
  font-size: 9px;
  color: #808080;
}

/* =========================== userAgent =========================== */

/* =============== desktop ================= */

/* =============== note ================= */

/* =============== tablet ================= */

/* =============== phone ================= */
@media only screen and (max-width: 767px) {
  .noscroll {
      overflow: hidden;
      width: 100%;
      height: 100%;
  }
}
.phone .container{
  width: 87.5%;
}
.phone #page{
  min-width: 100%;
}
/* header */
.phone #header .site-name{
  width: 100px;
  height: auto;
}
.phone #header .site-name img{
  width: 100%;
  height: auto;
}
.phone #header .nav-trigger{
  display: block;
}
/* gNav */
.phone #gNav{
  display: none;
}
/* spNav */
.phone #spCover{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  z-index: 999;
  display: none;
}
.phone #spNav{
  width: 220px;
  height: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  overflow-y: scroll;
  z-index: 1000;
  display: none;
}
.phone #spNav .nav-close-wrap{
  padding: 10px 10px 0px;
  text-align: right;
}
.phone #spNav .nav-close{
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: inline-block;
}
.phone #spNav .nav-close img{
  width: 100%;
  height: auto;
}
.phone #spNav ul{
  display: block;
}
.phone #spNav .spNavWrapper{
  padding: 10px;
}
.phone #spNav ul li{
  border
}
.phone #spNav ul li a.cur,
.phone #spNav ul li.sub a.cur{
  color: #91c34a;
}
.phone #spNav ul li a{
  padding: 10px 10px;
  display: block;
  color: #333333;
  font-size: 13px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
}
.phone #spNav ul li.sub a{
  padding: 10px 20px 10px 20px;
  color: #808080;
}
.sp_menu_open_animate{
	-webkit-animation:anime1 0.3s;
  -moz-animation:anime1 0.3s;
  -ms-animation:anime1 0.3s;
}
@-webkit-keyframes anime1 {
	0%{right:-200px}
	100%{right:0}
}
@-moz-keyframes anime1 {
	0%{right:-200px}
	100%{right:0}
}
@-ms-keyframes anime1 {
	0%{right:-200px}
	100%{right:0}
}
.sp_menu_close_animate{
	-webkit-animation:anime2 0.3s;
  -moz-animation:anime2 0.3s;
  -ms-animation:anime2 0.3s;
}
@-webkit-keyframes anime2 {
	0%{right:0}
	100%{right:-200px}
}
@-moz-keyframes anime2 {
	0%{right:0}
	100%{right:-200px}
}
@-ms-keyframes anime2 {
	0%{right:0}
	100%{right:-200px}
}
/* main */
.phone #main{
  margin: 60px auto 60px;
}
/* footer */
.phone #footer .footBanner ul li{
  width: 100%;
  float: none;
  margin: 0 0 15px;
}
.phone #footer .footComp{
  float: none;
}
.phone #footer .footNav{
  float: none;
  display: none;
}
