@charset "utf-8";
/* CSS Document */
.typo_section {
  min-height: 150px;
}
#typo {
  width: 768px;
  height: 300px;
  margin: 0 auto;
  overflow: hidden;
  background: #22558A;
  position: relative;
}
#typo .inner {
  weight: 85%;
  height: 100px;
  color: #fff;
  font-size: 8.2rem;
  font-weight: bold;
  text-align: center;
  background: transparent;
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 7.5%;
  transform: translateY(-50%);
  cursor: pointer;
}
/*1024px以上*/
@media only screen and (min-width:1024px), print {
  #typo {
    width: 714px;
    height: 300px;
    margin: 0;
    overflow: hidden;
    position: relative;
  }
  #typo .inner {
    display: block;
    width: 85%;
    line-height: 100px;
    color: #fff;
    font-size: 8.2rem;    
    background: transparent;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 7.5%;
    transform: translateY(-50%);
    cursor: pointer;
  }
}