/* レスポンシブ設計（正常表示されない） */
/* 基本スタイル(スマホ表示) */
@media screen and (min-width: 768px) {
  body {
    font-size:32px;
    line-height: 1.4;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  table {
    width: 100%;
    max-width: none;
  }
  a {
    color: #00FFFF;
  }
  a:visited{ color: #00FFFF; }
  .sidebar {
    display: none;
  }
  p {
    line-height: 1.1;
  }
}
/* タブレット向け(768px以上) 
@media screen and (min-width: 768px) {
  .container {
    width: 750px;
    margin: 0 auto;
  }
  .sidebar {
    display: block;
    width: 300px;
  }
} */

/* PC向け(1025px以上) */
@media screen and (min-width: 1025px) {
  body {
    font-size:16px;
  }
}

/* 共通事項 */
body {
  background-color: #000000;
  color:#FFFFFF;
}
/* 共通（配置） */
.v-top { vertical-align: top; }
/* テキスト背景色 */
.t-bg1 {
  display: inline-block;
  background-color: #d2691e;
  padding: 5px;
}
.t-bg2 {
  display: inline-block;
  background-color: #ff00ff;
  padding: 5px;
}
/* 水平線 */
.hr1 {
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #00ff00;
}
.hr2 {
  border-width: 3px 0 0 0;
  border-style: double;
  border-color: #ff6f00;
}
