@charset "UTF-8";
/* QRコードで読み取る多言語解説用ページのCSS */

/*========================================
font-family
========================================*/

/* jaは共通CSSの設定を参照 */
/* enは共通CSSの設定を参照 */

body:lang(zh-CN) {
  /* PingFang SC（MacOS, iOS）, Microsoft YaHei（Windows）*/
  font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
body:lang(zh-TW) {
  /* PingFang TC（MacOS, iOS）, Microsoft JhengHei（Windows）*/
  font-family: 'PingFang TC', 'Microsoft JhengHei', sans-serif;
}
body:lang(ko) {
  /* Nanum Gothic（MacOS, iOS）, Malgun Gothic（Windows）*/
  font-family: 'Nanum Gothic', 'Malgun Gothic', sans-serif;
}

/*========================================
common style
========================================*/
.qrguide_content {
  width: 100%; min-width: 0;
  max-width: 100%;
}
.qrguide_header_logo {
  width: 400px;
  margin: 10px;
  height: auto;
}
.qrguide_back {
  margin-bottom: 10px;
}
.qrguide_back a {
  font-size: larger;
}
.ex-list a {
  background-image: none !important;
}

@media screen and (max-width: 480px) {
  .qrguide_header_logo {
    width: 200px;
  }

}