@charset "UTF-8";
/* CSS Document */
.inner {
  margin: 0 22px;
}
@media(min-width:768px) {
  .inner-header {
    margin: 0 180px;
  }
  .inner-footer {
    margin: 0 180px;
  }
}

/*profile*/
.section-profile {
  color: #777;
  height: 100%;
  line-height: 30px;
  background-image: url("../images/SHUNTA_image_mono02.jpg");
  background-attachment: fixed;
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
}
.section-profile h1 {
  padding: 80px 0 30px 0;
}
.section-profile img {
  width: 100%;
}
.section-profile p {
  text-align: left;
  padding-bottom: 30px;
}
@media(min-width:768px) {
  .section-profile {
    width: 100%;
    line-height: 30px;
  }
  .section-profile img {
    max-width: 30%;
  }
  .section-profile p{
    text-align: center;
  }
}
/*デバイスが横向き、画面の横幅が 767px 以下の場合の記述
@media (orientation: landscape) and (max-width: 1000px){
.section-profile img {
  width: 30%;
}
}*/