@charset "UTF-8";

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

================================================*/
@import url("style.css");
@import url("style_sp.css");



/*================================================
CommonInner
================================================*/

.CommonInner {
  width: 100%;
  margin: 0px auto;
}
.over:hover {
  opacity: 0.5;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .CommonInner {
    width: 100%;
  }
}

/*================================================
Breadcrumb
================================================*/

.Breadcrumb {
  width: auto;
  margin: 0px;
  padding: 5px;
  background-color: #E7E7E7;
  font-size: 75%;
}
.Breadcrumb li {
  display: inline-block;
}
.Breadcrumb li:after {
  content: " > ";
}
.Breadcrumb li:last-child:after {
  content: none;
}
.Breadcrumb a {
  color: #000000;
  text-decoration: none;
}

@media (max-width: 767px) {
  .Breadcrumb {
    display: none;
  }
}

/*================================================
Pagetop
================================================*/

.Pagetop {
  clear: both;
  width: 100%;
  margin-bottom: 50px;
  text-align: right;
}
.Pagetop a {
  padding: 0px 0px 3px 30px;
  background-image: url(../img/common_pagetop.png);
  background-repeat: no-repeat;
  color: #000000;
  font-size: 100%;
  text-decoration: none;
}
.Pagetop a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .Pagetop {
    width: 100%;
    padding: 0px;
    text-align: right;
  }
}

/*================================================
clearfix
================================================*/

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}

/*================================================
display on / off
================================================*/

.pc {
  display: block;
}
.sp {
  display: none;
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}