/* タブレット向けレイアウト */
@media only screen and (max-width: 850px) {
  /* メイン */
  .contaner {
    flex-wrap: wrap;
  }
  /*メニュー*/
  .menu {
    width: 100%;
    height: initial;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
  }
  .menubot {
    padding-left: inherit;
    margin-left: inherit;
    width: 100px;
    height: 25px;
    font-size: 12px;
  }
  /*コンテンツ*/
  .content {
    width: 100%;
  }
  .conttitle {
    font-size: 18px;
  }
  .contents {
    font-size: 15px;
  }
  /* サイド */
  .subcont {
    width: 100%;
    font-size: 13px;
  }
  .subHeader {
    font-size: 15px;
  }
  /* インフォメーション */
  .infotitle {
    font-size: 18px;
  }
  .infocnts {
    width: 100%;
    font-size: 15px;
  }
  /* フォーム */
  .contact-text {
    width: 100%;
    padding: 45px 20px;
  }
  form {
  /* フォームエリア */
    width: 80%;
    margin: 0 auto;
  }
  input,
  textarea {
    width: 400px;
  /* 入力エリアサイズ */
    box-sizing: border-box;
  }
}

/* スマホ向けレイアウト */
@media only screen and (max-width: 500px) {
  /* メイン */
  .main {
    width: 100%;
  }
  /* メニュー */
  .menu {
    text-align: center;
  }
  .menubot {
    width: auto;
    height: 23px;
    padding-left: 2px;
    padding-right: 2px;
    margin-top: 0;
    font-size: 10px; 
    letter-spacing: -0.1em;
    border: 1px solid hsl(90, 50%, 60%);
  }
  /* カタログ */
  .catalog {
    width: 800px;
    height: auto;
    justify-content: center;
  }
  .item {
    padding-left: 8%;
    margin-left: 0;
  }
  /*テーブル*/
  .tbl-r05 {
    width: 100%;
    padding: 0 5% 0 0;
  }
  .tbl-r05 .thead {
    display: none;
  }
  .tbl-r05 tr {
    width: 100%;
  }
  .tbl-r05 td {
    display: block;
    text-align: right;
    width: 100%;
  }
  .tbl-r05 td:first-child {
    background: hsl(86, 31%, 35%);
    color: hsl(0, 0%, 100%);
    font-weight: bold;
    text-align: center;
  }
  .tbl-r05 td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    margin-right: 10px;
  }
  /* フォーム */
  .contact-text {
    width: 100%;
    padding: 45px 0;
  }
  form {
  /* フォームエリア */
    width: 80%;
    margin: 0 auto;
  }
  input,
  textarea {
    width: auto;
  /* 入力エリアサイズ */
    box-sizing: border-box;
  }
}