/*「ColorLinkSolitaire」5-21統一*/
body {
  background-color: rgba(210, 230, 220, 0.5);
  padding-left: 0.5%; /*4-2 変更 2% ⇒ 0.5%*/
  touch-action: none;
}
h2 {
  margin-left: 1dvh;
  margin-right: 10px;
  font-family: "Cinzel Decorative", cursive;
  font-size: 22px;
  color: green;
  float: left;
  line-height: 2px;
}
#counter0 {
  color: #0b57d0;
}
#counter1 {
  color: #eb41eb;
}
#counter2 {
  color: #aa13aa;
}
#counter3 {
  color: #0b57d0;
}
#counter4 {
  color: #0b57d0;
}

p {
  float: left;
  color: rgb(148, 91, 182);
  font-size: 16px;
  line-height: 100%;
}
.under {
  background: linear-gradient(transparent 80%, yellow);
}
.link {
  color: #0b57d0;
}
.link:hover {
  color: #fff;
}
.button {
  text-decoration: none;
  display: inline-block;
  border-radius: 10px; /* 角丸       */
  font-size: 16px; /* 文字サイズ */
  text-align: center; /* 文字位置   */
  cursor: pointer; /* カーソル   */
  padding: 7px 10px; /* 余白       */
  background: #4676d7; /* 背景色     */
  color: #ffffff; /* 文字色     */
  line-height: 1em; /* 1行の高さ  */
  opacity: 1; /* 透明度     */
  transition: 0.3s; /* なめらか変化 */
  /*box-shadow    : 6px 6px 3px #666666;  /* 影の設定 */
  position: relative; /*absoluteでは縦になる */
  top: 6px;
  left: 150px;
}
.button:hover {
  box-shadow: none; /* カーソル時の影消去 */
  opacity: 0.8; /* カーソル時透明度 */
}
.setumei {
  color: #0b57d0;
  position: relative;
  top: 10px;
  left: 20px;
  cursor: pointer;
}
.setumei:hover {
  color: #fff;
}
/*
.base-frame {
  display: block;
  flex-direction: row;
  width: 100vw;
  height: 220vh;
}
@media screen and (max-width: 1181px) {
  user-scalable=yes ?
  .base-frame {
    display: block;
    width: 100vw;
    height: 220vh;
  }
}
*/
.left-frame {
  display: block;
  width: 90vw;
  height: 220vh;
  overflow: hidden; /* auto? */
}
@media screen and (max-width: 1000px) {
  /*1281px <--> 1181px <--auto /ser-scalable=yes */
  .left-frame {
    display: block;
    width: 90vw;
    height: 220vh;
  }

  .left-frame {
    transform: scale(0.75);
    transform-origin: 0 0;
    width: calc(100% / 0.75);
    /*height: calc(100% / 0.75);*/
  }
}
/*.right-frame {
  width: 30%;
  height: 100%;
  overflow: hidden;  auto?
}

@media screen and (max-width: 1181px) {
  /*ウィンドウ幅が最大479=12.67cm(767)pxの場合に適用*/
/*  .right-frame {
    display: none; 非表示
    width: 0%;
    height: 0%;
  }
}
*/
