/*スクロールバーが表示される閲覧環境用に設定*/
main{
    overflow: hidden;
  }
  
  section{
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    padding: 20px;
    margin: auto;
  }
  
  p{
    font-size: 18px;
    line-height: 1.8;
  }
  
  img{
    width: 100%;
    height: auto;
  }
  
  .reverse{
    flex-direction: row-reverse;
  }
  
  .column{
    width: 48%;
  }
  
  /*右側へ要素を広げる（2カラム）*/
  .column-outside-right{
      flex: 1;
      margin-right: calc(50% - 50vw);
      margin-left: 4%;
  }
  
  /*左側へ要素を広げる（2カラム）*/
  .column-outside-left{
      flex: 1;
      margin-left: calc(50% - 50vw);
      margin-right: 4%;
  }
  
  /*右側へ要素を広げる（1カラム）*/
  .outside-right{
    margin-right: calc(50% - 50vw);
  }
  
  /*左側へ要素を広げる（1カラム）*/
  .outside-left{
    margin-left: calc(50% - 50vw);
  }
  /* 左右文字 */
  .tit001{
    font-size: 1.6em;
    color: #c30d22;
    font-weight: 600;
  }
  .tit002{
    padding-top: 10px;
  }
  @media screen and (max-width: 1000px){
  .column{
    width: 100%;
  }
  .column-outside-right{
    width: 100%;
    margin: 0px;
  }
  section{
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    padding: 0px;
    margin: 0px;
  }
  
  
  img{
    width: 100%;
    height: auto;
  }
  
  .reverse{
    flex-direction: column;
  }
  .tit001{
    font-size: 1.4em;
    color: #c30d22;
    font-weight: 600;
    text-align: center;
  }
  .tit002{
    font-size: 1em;
    padding-top: 10px;
    text-align: center;
  }
}