@charset "utf-8";
/* CSS Document */


.inner{
  max-width: 800px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 50px 20px 50px;
}
.box{
  display: flex;
  flex-direction: row;
  color:#777777;
    
  align-items: stretch;
}

.box.reverse{
  flex-direction: row-reverse;
  color:#777777;
}



/* 上下隙間　*/
.box + .box{
  margin-top: 10px;
}
.box__body{
  width: 50%;
  padding:  px;
}
/* タイトル　*/
.box__ttl {
  font-size: 20px;
  background-color: #f9f9f9;
  text-transform: uppercase;
}


/* txt　*/
.box__txt {
  margin-top: 10px;
  
}

.box__image{
  width: 50%;
}
.box__image img{
/*
  height: 100%;
*/
    height: 250px;
  object-fit: cover;
}

/* 下部テキスト　*/
.box__txtd {
  margin-top: 30px;
  text-align: center; 
}



@media screen and (max-width:900px){
  .box {
    display: block;
  }
  .box + .box{
    margin-top: 60px;
  }
  .box__body{
    width: 100%;
    padding: 0;
  }
  .box__image{
    margin-top: 20px;
    width: 100%;
  }
}