/* 共通スタイル */
section > button {
    display: block;
    margin: 2em auto;
  }

.content p {
  text-align: center;
  padding-top: 5%;
}

.result .result_list img {
    width: 100%;
}

.result .result_list .name {
    display: block;
    margin: auto;
    color: #2e75b6;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.result .result_list .sentence {
  display: block;
  margin: auto;
  font-size: 16px;
  text-align: left;
}

.result {
    width: 90%;
    margin: 4em auto;
  }


.result.other {
  padding-top: 5em;
}
  
  @media only screen and (min-width:550px) {
    .result {
      width: 500px;
    }  
  }
  
  @media only screen and (min-width: 769px) {
    .result {
      width: 90%;
    }  
  }
  
  @media only screen and (min-width: 900px) {
    .result {
      width: 850px;
    }
  }
  
  .result_list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 1em auto;
  }

  .result_list li {
    width: calc(100%/3);
    padding: 0 1em;
    box-sizing: border-box;
  }
  
  @media only screen and (max-width: 769px) {
    .result_list li {
      width: calc(100%/2);
    }  
  }
  
  @media only screen and (max-width: 450px) {
    .result_list li {
      width: calc(100%/1);
    }  
  }
  
  .result_list div {
    list-style: none;
    margin: 2.5em auto;
  }
  
  .result_list img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
  }
  
  .result_list .text_area {
    width: 75%;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
  }
  
  .result_list .text_area p {
    margin: 0;
  }
  
  .result_list .text_area .name {
    color: #0090FF;
    font-weight: bold;
    font-size: 26px;
  }

  .result_list .text_area .sentence {
      text-align: center;
      font-size: 20px;
  }
  
  @media only screen and (min-width: 375px) {
    .result_list {
      display: flex;
      flex-wrap: wrap;
    }
  
    .result_list div {
      padding: 0.5em;
      margin: 1em auto;
    }
  
    .result_list img {
      display: block;
      margin: 0 auto;
      text-align: center;
      width: 80%;
    }
  
    .result .result_list .text_area {
      width: 100%;
      margin-left: 0;
    }
  
    .result .result_list div .sentence {
      margin: 8px auto;
    }
  }
  
  @media only screen and (min-width: 900px) {  
    .result_list div:nth-child(4), 
    .result_list div:nth-child(5) {
      margin: 0;
    }
  }
  /* 
  @media only screen and (min-width: 900px) {
    .result .result_list div {
      width: 30%;
      margin: 0.5em;
    }
  } */
  
  .result_box {
    position: relative;
  }

  .content .box_area, .content .box_area.left{
    top: -9%;
    }


  .content .box_area, .content .box_area.right {
    top: 50%;
    }
    
  @media only screen and (max-width: 450px) {
    .content .box_area, .content .box_area.right,
    .content .box_area, .content .box_area.left{
      top: 20%;
      height: 70%;
    }
  }