@charset "utf-8";
*{ -webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;}
.intv-layout {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-right: -50vw;
  margin-left: -50vw;
  padding: 5px 0 0;
  background: #e8eeee;
}
.intv-layout_inner {
  width: 1110px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}
.intv-layout_image {
  flex-basis: 326px;
  align-self: flex-end;
}
.intv-layout_image img {
  width: 100%;
  height: auto;
}
.intv-layout_text {
  flex-basis: 737px;
  padding: 20px 30px;
  border: 1px solid  #4e4d51;
}
body[data-browser="ie11"] .intv-layout_text {
  flex-basis: 677px;
}
.intv-layout_heading {
  line-height: 1.2;
  padding: 15px 5px 10px;
  background: #4e4d51;
  color: #fff;
  font-size: 3.0rem;
  font-weight: bold;
}
.intv-layout_lead {
  margin-top: 15px;
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
}
.intv-layout_profile {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid  #4e4d51;
}
.intv-layout_profile-name {
  font-size: 1.6rem;
  font-weight: bold;
}
.intv-layout_profile-detail {
  font-size: 1.5rem;
}


/* SP Layout
=======================================================*/
@media only screen and (max-width:768px){
  
  .intv-layout {
    position: inherit;
    left: inherit;
    right: inherit;
    width: auto;
    margin-right: -15px;
    margin-left: -15px;
    padding: 10px 20px 25px;
    background: #e8eeee;
  }
  .intv-layout_inner {
    width: auto;
    margin: 0;
    display: block;

  }
  .intv-layout_image {
    width: 60%;
    margin: 0 auto;
  }
  .intv-layout_image img {
    width: 100%;
    height: auto;
  }
  .intv-layout_text {
    padding: 10px 10px;
  }
  .intv-layout_heading {
    line-height: 1.4;
    padding: 6px;
  }
  .intv-layout_lead {
  }
  .intv-layout_profile {
    margin-top: 10px;
    padding-top: 10px;
  }
  .intv-layout_profile-name {
  }
  .intv-layout_profile-detail {
    margin-top: 5px;
  }
  
  
  
}
/* print css
=======================================================*/
@media print{
}
