@charset "UTF-8";
/* ===================
Common
=================== */
/* Reset */
html, body, header, main, footer, div, article, nav, section, p, span, a, table, thead, tbody, tr, th, td, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, select, textarea, label, button {
  margin: 0;
  padding: 0;
  position: relative;
  box-sizing: border-box;
}

h3 {
  border-bottom: none;
}
h3::after {
  display: none;
}

h4 {
  background-color: transparent;
  font-size: 1rem;
  font-weight: 400;
}

/* Lightning Kill*/
#vk-mobile-nav-menu-btn,
#vk-mobile-nav {
  display: none;
}

html, body {
  width: 100%;
  height: 100dvh;
}

body {
  line-height: 1.4;
  font-size: 1rem;
  font-weight: 400;
}
body.en, body.fr, body.de, body.it, body.pt, body.ru, body.es {
  font-family: "Helvetica Neue", Arial, sans-serif;
}
body.zh {
  font-family: "Noto Sans CJK SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}
body.tc {
  font-family: "Noto Sans CJK TC", "PingFang TC", "Hiragino Sans CNS", "Microsoft JhengHei", sans-serif;
}
body.ko {
  font-family: "Noto Sans CJK KR", "Apple SD Gothic Neo", Gulim, "Malgun Gothic", sans-serif;
}
body.lang #container {
  max-height: 100% !important;
}
body.root #container {
  max-height: none;
}
body.root #container #main {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 100%;
  max-height: 100% !important;
}
body.root #container #main::before {
  display: none;
}

.logo {
  width: 100%;
}
.logo img {
  display: block;
  aspect-ratio: 700/170;
  width: 100%;
  height: auto;
}

#container {
  margin: 0 auto;
  padding: 0 0 20px;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 70px);
  overflow-y: auto;
}

#guard {
  z-index: 500;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
}

/* ===================
Header
=================== */
#header {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 450px;
  transform: translateX(-50%);
}

/* ===================
Main
=================== */
#main {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 450px;
}
#main section {
  margin: 0 auto 60px;
}
#main section:nth-last-of-type(1) {
  margin-bottom: 0px;
}
#main section.line {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px #c30d23;
}
#main section.border {
  padding: 20px;
  border: solid 1px #c30d23;
}
#main h1 {
  margin: 0 0 30px;
  color: #c30d23;
  font-size: 1.75rem;
}
#main h2 {
  margin: 0 0 1rem;
  color: #c30d23;
  font-size: 1.25rem;
}
#main h4 {
  font-weight: 600;
}
#main p {
  margin: 0 0 1rem;
}
#main p:nth-last-of-type(1) {
  margin-bottom: 0;
}
#main hr {
  margin: 1.5rem 0;
  padding: 0;
  height: 1px;
  background-color: #c30d23;
  border: 0;
}
#main .spec_table {
  margin: 0 auto 1.75rem;
}
#main .spec_table:nth-last-of-type(1) {
  margin-bottom: 0;
}
#main::before {
  content: "";
  display: block;
  aspect-ratio: 700/170;
  margin: 0 0 40px;
  width: 100%;
  height: auto;
}

/* ===================
Language
=================== */
#langages ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
  margin: 0 auto;
  width: 100%;
  max-width: 270px;
}
#langages ul li {
  width: 100%;
  height: auto;
  line-height: 1;
}
#langages ul li .btnLang {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
}
#langages ul li .btnLang::before {
  content: "";
  aspect-ratio: 225/150;
  display: block;
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: solid 2px #333;
}
#langages ul li .btnLang[data-lang=en]::before {
  background-image: url(../img/en.svg);
}
#langages ul li .btnLang[data-lang=zh]::before {
  background-image: url(../img/zh.svg);
}
#langages ul li .btnLang[data-lang=tc]::before {
  background-image: url(../img/tc.svg);
}
#langages ul li .btnLang[data-lang=ko]::before {
  background-image: url(../img/ko.svg);
}
#langages ul li .btnLang[data-lang=fr]::before {
  background-image: url(../img/fr.svg);
}
#langages ul li .btnLang[data-lang=de]::before {
  background-image: url(../img/de.svg);
}
#langages ul li .btnLang[data-lang=it]::before {
  background-image: url(../img/it.svg);
}
#langages ul li .btnLang[data-lang=pt]::before {
  background-image: url(../img/pt.svg);
}
#langages ul li .btnLang[data-lang=ru]::before {
  background-image: url(../img/ru.svg);
}
#langages ul li .btnLang[data-lang=es]::before {
  background-image: url(../img/es.svg);
}
#langages ul li .btnLang .name {
  color: #333;
  font-size: 0.875rem;
}
#langages ul li .btnLang.tapped::before {
  transition: all 0.25s;
  border: solid 2px #ffcc00;
  transform: scale(1.2);
}
#langages ul li .btnLang.disabled {
  opacity: 0.2;
  filter: grayscale(1);
}

/* ===================
Footer
=================== */
#footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  padding: 20px 20px 20px;
  width: calc(100% - 40px);
  max-width: 410px;
  height: 70px;
  background-color: #fff;
  transform: translateX(-50%);
}

#btnSelectLang {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 30px;
  background-color: #c30d23;
  border: none;
  border-radius: 5px;
  overflow: hidden;
}
#btnSelectLang::before {
  content: "";
  aspect-ratio: 225/150;
  display: block;
  width: 100%;
  max-width: 20px;
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: solid 1px #fff;
}
#btnSelectLang::after {
  color: #fff;
  line-height: 1;
  font-size: 0.875rem;
}
#btnSelectLang.tapped {
  transition: all 0.25s;
  background-color: #ffcc00;
}
#btnSelectLang.tapped::after {
  color: #000;
}

.en #btnSelectLang::before {
  background-image: url(../img/en.svg);
}
.en #btnSelectLang::after {
  content: "LANGUAGE";
}

.zh #btnSelectLang::before {
  background-image: url(../img/zh.svg);
}
.zh #btnSelectLang::after {
  content: "语言";
}

.tc #btnSelectLang::before {
  background-image: url(../img/tc.svg);
}
.tc #btnSelectLang::after {
  content: "語言";
}

.ko #btnSelectLang::before {
  background-image: url(../img/ko.svg);
}
.ko #btnSelectLang::after {
  content: "언어";
}

.fr #btnSelectLang::before {
  background-image: url(../img/fr.svg);
}
.fr #btnSelectLang::after {
  content: "langue";
}

.de #btnSelectLang::before {
  background-image: url(../img/de.svg);
}
.de #btnSelectLang::after {
  content: "Sprache";
}

.it #btnSelectLang::before {
  background-image: url(../img/it.svg);
}
.it #btnSelectLang::after {
  content: "lingua";
}

.pt #btnSelectLang::before {
  background-image: url(../img/pt.svg);
}
.pt #btnSelectLang::after {
  content: "linguagem";
}

.ru #btnSelectLang::before {
  background-image: url(../img/ru.svg);
}
.ru #btnSelectLang::after {
  content: "язык";
}

.es #btnSelectLang::before {
  background-image: url(../img/es.svg);
}
.es #btnSelectLang::after {
  content: "idioma";
}

body.lang #footer {
  display: none;
}/*# sourceMappingURL=style.css.map */