@charset "utf-8";

section {
  width: 95%;
  margin: 0 auto;
}

/*Flexbox
---------------------------------------------------------------------------*/
.tr-wrapper {
  display: flex;
  justify-content: space-between;
  width: 85%;
  margin: 0 auto;
  flex-wrap: wrap;
}

.tr-wrapper .tr-item {
  width: 48%;
}

.tr-wrapper img {
  display: block;
  margin: 0 auto;
}

.tr-wrapper .tr-item p {
  margin: 1rem 0 4rem 0 !important;
}




/*---------------------------------------------------------------------------
【SP】画面サイズが767px以下
---------------------------------------------------------------------------*/
@media screen and (max-width:767px) {

  .tr-wrapper {
    flex-wrap: wrap;
  }

  .tr-wrapper .tr-item {
    width: 100%;
  }

  /*メイン画像
---------------------------------------------------------------------------*/
  #mainimg {
    height: 50vw;
  }

  /*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/
}





/*---------------------------------------------------------------------------
【Tab】画面サイズ768px以上1024px以下
---------------------------------------------------------------------------*/
@media screen and (min-width:768px) and (max-width:1024px) {

  /*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/
}





/*---------------------------------------------------------------------------
【PC】画面サイズ1025px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:1025px) {

  /*menubarブロック設定
---------------------------------------------------------------------------*/

  /*メニュー１個あたりの設定*/
  .p #menubar a {
    color: #616161;
  }


  /*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/
}