:root {
  --vierlot-font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Helvetica Neue', sans-serif;
  --vierlot-bg: #F5F2ED;
  --vierlot-text: #333333;
  --vierlot-text-light: #666666;
  --vierlot-text-muted: #999999;
  --vierlot-line: #E5E0D8;
  --vierlot-disabled: #CCCCCC;
  --vierlot-max-width: 1200px;
}

html, body {
  font-family: var(--vierlot-font);
  background-color: var(--vierlot-bg);
  color: var(--vierlot-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
.body0,
.body1,
.body2,
.body3,
button,
input,
select,
textarea,
h1, h2, h3, h4, h5, h6 {
  font-family: var(--vierlot-font) !important;
}

.vierlot-section,
.vierlot-section *,
.vierlot-section *::before,
.vierlot-section *::after {
  box-shadow: none !important;
  border-radius: 0 !important;
}

.vierlot-section *,
.vierlot-section *::before,
.vierlot-section *::after {
  transition-property: color, background-color, border-color, opacity;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  animation-duration: 0s;
}

.vierlot-container {
  max-width: var(--vierlot-max-width);
  margin: 0 auto;
  padding-inline: 20px;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .vierlot-container {
    padding-inline: 16px;
  }
}

.vierlot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 44px;
  padding: 0 24px;
  border: 1px solid var(--vierlot-text);
  background: transparent;
  font-family: var(--vierlot-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--vierlot-text);
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}
.vierlot-btn:hover {
  background: var(--vierlot-text);
  color: var(--vierlot-bg);
}
.vierlot-btn--sm {
  min-width: 140px;
  height: 40px;
  font-size: 14px;
}
.vierlot-btn--lg {
  min-width: 180px;
  height: 48px;
  font-size: 18px;
}

.vierlot-section-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--vierlot-text);
  line-height: 1.3;
  margin: 0;
  text-align: center;
}
.vierlot-section-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: var(--vierlot-text-light);
  margin: 12px 0 0;
  text-align: center;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}
