@import "reset.css";
@import "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap";
:root {
  --title-font: "Inter", sans-serif;
  --main-font: "Inter", sans-serif;
  --theme-color: #fef328;
  --theme-color-dark: #1b9556;
  --theme-color-darker: #155232;
  --max-width: 1200px;
  --large-gap: 5rem;
}
html {
  font-family: var(--main-font);
  font-weight: 300;
  font-size: 16px;
  background-color: #262626;
  color: #fff;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
  line-height: 1.3;
  font-weight: 800;
}
html,
body {
  min-height: 100vh;
}
body {
  background-color: var(--theme-color-dark);
}
main {
  padding: 0;
}
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 5rem;
  font-size: 0.9rem;
  position: relative;
  /* z-index: 1; */
}

footer .app_version {
  margin-left: 1rem;
  font-size: 12px;
}

.promote {
  overflow: hidden;
  font-size: clamp(1.1rem, 1.2vw, 1.2rem);
  color: #fff;
  display: flex;
  flex-direction: row-reverse;
  border-top: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: url("../img/promote_dude.png") right center no-repeat
    rgba(0, 0, 0, 0.15);
  background-size: auto 100%;
}
.promote .left {
  width: 35%;
}
.promote .left img {
  opacity: 0;
}
.promote .right {
  width: 65%;
  padding: var(--large-gap);
}
.promote .right strong {
  font-size: clamp(1.35rem, 2vw, 2rem);
  display: block;
  color: var(--theme-color);
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.promote .right p {
  line-height: 1.5;
}
p {
  font-weight: 300;
}
.content {
  max-width: var(--max-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
.content .each_blade,
.content .help {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-size: clamp(1.1rem, 1.2vw, 1.2rem);
  color: rgba(21, 21, 21, 0.85);
  color: #202020;
  color: #fff;
  display: flex;
}
.content .each_blade.no_border,
.content .help.no_border {
  border: none;
}
.content .each_blade:last-of-type,
.content .help:last-of-type {
  margin-bottom: 0;
}
.content .each_blade p,
.content .help p {
  line-height: 1.5;
}
.content .each_blade .left,
.content .help .left {
  padding: var(--large-gap);
  padding-right: calc(var(--large-gap) / 2);
  width: 33.3334%;
}
.content .each_blade .left h2,
.content .help .left h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  color: var(--theme-color);
  font-family: var(--main-font);
  font-weight: bold;
}
.content .each_blade .right,
.content .help .right {
  width: 66.6666%;
  padding: var(--large-gap);
  padding-left: calc(var(--large-gap) / 2);
}
.content .each_blade .right ul,
.content .help .right ul {
  margin-top: 1.5rem;
  margin-left: 0;
}
.content .each_blade .right ul li,
.content .help .right ul li {
  margin-bottom: 1.5rem;
}
.content .each_blade .right ul li strong,
.content .help .right ul li strong {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--theme-color);
}
.content .each_blade .right ul li:last-of-type,
.content .help .right ul li:last-of-type {
  margin-bottom: 0;
}
.content.is_help_block {
  padding: var(--large-gap) 0;
}
.content.is_help_block .help .left {
  padding: 0 var(--large-gap);
}
.content.is_help_block .help .right {
  padding: 0 var(--large-gap);
}
.content .help {
  border-bottom: none;
}
.content .help .bottom {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
.content .help .bottom span {
  font-size: clamp(0.8rem, 0.8vw, 0.8rem);
}
.content .help .bottom button {
  margin-left: auto;
  border-radius: 0.5rem;
  background-color: var(--theme-color-dark);
  padding: 1rem 2rem;
  border: none;
  font-weight: bold;
  color: var(--theme-color);
  transition: all 0.15s linear;
}
.content .help .bottom button:hover {
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.15);
  filter: brightness(0.9);
}
.content .help .left {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding: var(--large-gap);
}
.content .help .left h2 {
  margin-bottom: 0.5rem;
}
.content .help .left span {
  font-size: 1rem;
}
.content .help .right {
  padding: var(--large-gap);
}
.content .help .right > small {
  display: block;
  padding-bottom: 1.5rem;
}
.content .help .right .req {
  font-weight: normal;
  color: red;
  display: inline-block;
  margin-left: 0.2rem;
}
.content .help .right .each_fieldset {
  display: flex;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.content .help .right .each_fieldset label {
  width: 33%;
  padding: 1rem 1rem 1rem 0;
}
.content .help .right .each_fieldset .input_ele {
  width: 67%;
}
.content .help .right .each_fieldset .input_ele input,
.content .help .right .each_fieldset .input_ele select,
.content .help .right .each_fieldset .input_ele textarea {
  padding: 1rem;
  width: 100%;
  border-radius: 0.5rem;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.85);
}
.content .help .right .each_fieldset .input_ele input:active,
.content .help .right .each_fieldset .input_ele input:focus,
.content .help .right .each_fieldset .input_ele select:active,
.content .help .right .each_fieldset .input_ele select:focus,
.content .help .right .each_fieldset .input_ele textarea:active,
.content .help .right .each_fieldset .input_ele textarea:focus {
  outline: 5px solid rgba(0, 0, 0, 0.25);
}
.content .help .right .each_fieldset .input_ele select {
  background: url("../img/dd.svg") calc(100% - 1rem) 50% no-repeat
    rgba(255, 255, 255, 0.85);
  background-size: 20px;
}
.content .help .right .each_fieldset .input_ele textarea {
  resize: none;
}
.pop_download,
.pop_form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  padding: 2rem;
  opacity: 0;
  overflow: auto;
  transition: all 0.15s linear 0.25s;
  pointer-events: none;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.pop_download .inner_pop_download,
.pop_download .inner_pop_form,
.pop_form .inner_pop_download,
.pop_form .inner_pop_form {
  max-width: 640px;
  width: 100%;
  margin: auto;
  background-color: var(--theme-color-dark);
  border-radius: 0;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 0.15s linear 0s;
  overflow: hidden;
  box-shadow: 0 2.5rem 3rem rgba(0, 0, 0, 0.5);
  padding-bottom: 1.5rem;
}
.pop_download .inner_pop_download .links,
.pop_download .inner_pop_form .links,
.pop_form .inner_pop_download .links,
.pop_form .inner_pop_form .links {
  padding: 1rem 2rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.33);
}
.pop_download .inner_pop_download .links .each_link,
.pop_download .inner_pop_form .links .each_link,
.pop_form .inner_pop_download .links .each_link,
.pop_form .inner_pop_form .links .each_link {
  padding: 1rem 1.5rem;
  background-color: #fff;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  transition: all 0.15s linear;
}
.pop_download .inner_pop_download .links .each_link:active,
.pop_download .inner_pop_form .links .each_link:active,
.pop_form .inner_pop_download .links .each_link:active,
.pop_form .inner_pop_form .links .each_link:active {
  transform: translateY(1px);
}
.pop_download .inner_pop_download .links .each_link:hover,
.pop_download .inner_pop_form .links .each_link:hover,
.pop_form .inner_pop_download .links .each_link:hover,
.pop_form .inner_pop_form .links .each_link:hover {
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.15);
}
.pop_download .inner_pop_download .links .each_link:hover .des,
.pop_download .inner_pop_form .links .each_link:hover .des,
.pop_form .inner_pop_download .links .each_link:hover .des,
.pop_form .inner_pop_form .links .each_link:hover .des {
  color: #20ac97;
}
.pop_download .inner_pop_download .links .each_link:hover .dl_icon,
.pop_download .inner_pop_form .links .each_link:hover .dl_icon,
.pop_form .inner_pop_download .links .each_link:hover .dl_icon,
.pop_form .inner_pop_form .links .each_link:hover .dl_icon {
  background-color: #20ac97;
}
.pop_download .inner_pop_download .links .each_link:hover .dl_icon .anime,
.pop_download .inner_pop_form .links .each_link:hover .dl_icon .anime,
.pop_form .inner_pop_download .links .each_link:hover .dl_icon .anime,
.pop_form .inner_pop_form .links .each_link:hover .dl_icon .anime {
  transform: translate(-50%, -65%);
}
.pop_download .inner_pop_download .links .each_link:last-of-type,
.pop_download .inner_pop_form .links .each_link:last-of-type,
.pop_form .inner_pop_download .links .each_link:last-of-type,
.pop_form .inner_pop_form .links .each_link:last-of-type {
  margin-bottom: 0;
}
.pop_download .inner_pop_download .links .each_link .des,
.pop_download .inner_pop_form .links .each_link .des,
.pop_form .inner_pop_download .links .each_link .des,
.pop_form .inner_pop_form .links .each_link .des {
  display: flex;
  flex-direction: column;
  color: var(--theme-color);
  font-size: 1.15rem;
  transition: all 0.15s linear;
}
.pop_download .inner_pop_download .links .each_link .des small,
.pop_download .inner_pop_form .links .each_link .des small,
.pop_form .inner_pop_download .links .each_link .des small,
.pop_form .inner_pop_form .links .each_link .des small {
  color: #262626;
  margin-top: 0.25rem;
  opacity: 0.33;
}
.pop_download .inner_pop_download .links .each_link .dl_icon,
.pop_download .inner_pop_form .links .each_link .dl_icon,
.pop_form .inner_pop_download .links .each_link .dl_icon,
.pop_form .inner_pop_form .links .each_link .dl_icon {
  margin-left: auto;
  padding: 0.5rem;
  background-color: var(--theme-color);
  border-radius: 2rem;
  transition: all 0.15s linear;
  position: relative;
}
.pop_download .inner_pop_download .links .each_link .dl_icon .anime,
.pop_download .inner_pop_form .links .each_link .dl_icon .anime,
.pop_form .inner_pop_download .links .each_link .dl_icon .anime,
.pop_form .inner_pop_form .links .each_link .dl_icon .anime {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 1;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.pop_download .inner_pop_download .pop_download_top,
.pop_download .inner_pop_form .pop_download_top,
.pop_form .inner_pop_download .pop_download_top,
.pop_form .inner_pop_form .pop_download_top {
  display: flex;
  padding: 1rem 2rem;
  align-items: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.pop_download .inner_pop_download .pop_download_top h2,
.pop_download .inner_pop_form .pop_download_top h2,
.pop_form .inner_pop_download .pop_download_top h2,
.pop_form .inner_pop_form .pop_download_top h2 {
  font-size: clamp(1.15rem, 1.35vw, 1.2rem);
  margin-right: auto;
  font-weight: bold;
  font-family: var(--main-font);
  color: var(--theme-color);
}
.pop_download .inner_pop_download .pop_download_top .close_download,
.pop_download .inner_pop_download .pop_download_top .close_form,
.pop_download .inner_pop_form .pop_download_top .close_download,
.pop_download .inner_pop_form .pop_download_top .close_form,
.pop_form .inner_pop_download .pop_download_top .close_download,
.pop_form .inner_pop_download .pop_download_top .close_form,
.pop_form .inner_pop_form .pop_download_top .close_download,
.pop_form .inner_pop_form .pop_download_top .close_form {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background-color: rgba(0, 0, 0, 0);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.15s linear;
}
.pop_download .inner_pop_download .pop_download_top .close_download img,
.pop_download .inner_pop_download .pop_download_top .close_form img,
.pop_download .inner_pop_form .pop_download_top .close_download img,
.pop_download .inner_pop_form .pop_download_top .close_form img,
.pop_form .inner_pop_download .pop_download_top .close_download img,
.pop_form .inner_pop_download .pop_download_top .close_form img,
.pop_form .inner_pop_form .pop_download_top .close_download img,
.pop_form .inner_pop_form .pop_download_top .close_form img {
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pop_download .inner_pop_download .pop_download_top .close_download:hover,
.pop_download .inner_pop_download .pop_download_top .close_form:hover,
.pop_download .inner_pop_form .pop_download_top .close_download:hover,
.pop_download .inner_pop_form .pop_download_top .close_form:hover,
.pop_form .inner_pop_download .pop_download_top .close_download:hover,
.pop_form .inner_pop_download .pop_download_top .close_form:hover,
.pop_form .inner_pop_form .pop_download_top .close_download:hover,
.pop_form .inner_pop_form .pop_download_top .close_form:hover {
  opacity: 0.75;
}
.pop_download .inner_pop_download .pop_download_top .close_download:hover img,
.pop_download .inner_pop_download .pop_download_top .close_form:hover img,
.pop_download .inner_pop_form .pop_download_top .close_download:hover img,
.pop_download .inner_pop_form .pop_download_top .close_form:hover img,
.pop_form .inner_pop_download .pop_download_top .close_download:hover img,
.pop_form .inner_pop_download .pop_download_top .close_form:hover img,
.pop_form .inner_pop_form .pop_download_top .close_download:hover img,
.pop_form .inner_pop_form .pop_download_top .close_form:hover img {
  transform: rotate(180deg);
}
.pop_download .inner_pop_download .pop_download_top .close_download img,
.pop_download .inner_pop_download .pop_download_top .close_form img,
.pop_download .inner_pop_form .pop_download_top .close_download img,
.pop_download .inner_pop_form .pop_download_top .close_form img,
.pop_form .inner_pop_download .pop_download_top .close_download img,
.pop_form .inner_pop_download .pop_download_top .close_form img,
.pop_form .inner_pop_form .pop_download_top .close_download img,
.pop_form .inner_pop_form .pop_download_top .close_form img {
  width: 1.75rem;
}
.pop_download .inner_pop_download .pop_download_top .close_form,
.pop_download .inner_pop_form .pop_download_top .close_form,
.pop_form .inner_pop_download .pop_download_top .close_form,
.pop_form .inner_pop_form .pop_download_top .close_form {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.pop_download .inner_pop_form,
.pop_form .inner_pop_form {
  padding-bottom: 0;
}
.pop_download.showed,
.pop_form.showed {
  pointer-events: auto;
  opacity: 1;
  transition: all 0.15s linear;
}
.pop_download.showed .inner_pop_download,
.pop_download.showed .inner_pop_form,
.pop_form.showed .inner_pop_download,
.pop_form.showed .inner_pop_form {
  opacity: 1;
  transform: translateY(0rem);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s;
}
.pop_form .inner_pop_form {
  background-color: #fff;
}
.pop_form .inner_pop_form .pop_download_top h2 {
  color: var(--theme-color-dark);
}
.trigger_thank_you {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
}
.pop_thank_you {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  padding: 2rem;
  opacity: 0;
  overflow: auto;
  transition: all 0.15s linear 0.25s;
  pointer-events: none;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.pop_thank_you .inner_pop_thank_you {
  max-width: 480px;
  padding: 4rem;
  width: 100%;
  margin: auto;
  background-color: #fff;
  border-radius: 0;
  position: relative;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: all 0.15s linear 0s;
  text-align: center;
  box-shadow: 0 2.5rem 3rem rgba(0, 0, 0, 0.5);
  color: #262626;
}
.pop_thank_you .inner_pop_thank_you .thank_you_message h1 {
  margin-bottom: 0.5rem;
  color: var(--theme-color-dark);
}
.pop_thank_you .inner_pop_thank_you .thank_you_message p {
  font-size: 1.25rem;
}
.pop_thank_you .inner_pop_thank_you .thank_you_message > a {
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  font-weight: bold;
  background-color: var(--theme-color-dark);
  color: #fff;
  font-size: 1.25rem;
  transition: all 0.15s linear;
}
.pop_thank_you .inner_pop_thank_you .thank_you_message > a:hover {
  filter: brightness(0.9);
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.15);
}
.pop_thank_you .inner_pop_thank_you .thank_you_message > span.close_thank_you {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -2rem;
  padding: 1rem;
  border-radius: 10rem;
  background-color: var(--theme-color);
  cursor: pointer;
  transition: all 0.15s linear;
}
.pop_thank_you
  .inner_pop_thank_you
  .thank_you_message
  > span.close_thank_you
  img {
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pop_thank_you
  .inner_pop_thank_you
  .thank_you_message
  > span.close_thank_you:hover {
  opacity: 0.85;
}
.pop_thank_you
  .inner_pop_thank_you
  .thank_you_message
  > span.close_thank_you:hover
  img {
  transform: rotate(180deg);
}
.pop_thank_you
  .inner_pop_thank_you
  .thank_you_message
  > span.close_thank_you
  img {
  width: clamp(2rem, 2.5vw, 2.5rem);
}
.pop_thank_you .inner_pop_thank_you .thank_you_message p {
  margin-bottom: 4rem;
}
.pop_thank_you.showed {
  pointer-events: auto;
  opacity: 1;
  transition: all 0.15s linear;
}
.pop_thank_you.showed .inner_pop_thank_you {
  opacity: 1;
  transform: translateY(0rem);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s;
}
.pop_form .inner_pop_form .pop_download_top {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
header {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 5rem;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
header img {
  height: clamp(2.2rem, 4vw, 3.25rem);
}
header a {
  margin-left: auto;
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 0.25rem;
  background-color: var(--theme-color);
  cursor: pointer;
  transition: all 0.15s linear;
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--theme-color-dark);
}
header a:hover {
  background-color: #fff;
  color: var(--theme-color-dark);
}

.lang-select {
  font-family: sans-serif;
  position: relative;
  margin-left: 20px;
}

.lang-select .selected {
  user-select: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  display: flex;
}

.lang-select .selected .flag {
  font-size: 20px;
}

.lang-select .selected .text {
  font-size: 13px;
}

.lang-select .options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: auto;
  border-radius: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
}

.lang-select .options li {
  padding: 5px 10px;
  display: flex;
  align-items: center;
}

.lang-select .options li:hover {
  background: rgba(0, 0, 0, 0.1);
}

.lang-select .flag {
  font-size: 20px;
  margin-right: 5px;
}

.lang-select .text {
  font-size: 13px;
}

.submit_btn_wrap {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.submit_btn_wrap b {
  color: red;
  font-weight: normal;
}
.submit_btn_wrap small {
  margin-right: auto;
  color: #9e9e9e;
}
.submit_btn_wrap button[type="submit"],
.submit_btn_wrap button[type="button"] {
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  font-weight: bold;
  background-color: var(--theme-color-dark);
  color: #fff;
  transition: all 0.15s linear;
}
.submit_btn_wrap button[type="submit"]:hover,
.submit_btn_wrap button[type="button"]:hover {
  filter: brightness(0.9);
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.15);
}
.submit_btn_wrap button[type="button"] {
  background-color: rgba(0, 0, 0, 0.075);
  color: #505050;
  padding: 1rem 1.25rem;
}
.submit_btn_wrap button[type="button"]:hover {
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.05);
}
.form {
  padding: 1rem 4rem;
}
.form .each_fieldset {
  color: #262626;
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.form .each_fieldset.__is_remark {
  margin-bottom: 0;
}
.form .each_fieldset .error_msg {
  /* position: absolute; */
  /* right: 0; */
  /* top: 50%; */
  /* transform: translateY(-50%); */
  font-size: 0.8rem;
  color: red;
  /* padding: 1rem; */
  display: none;
}
.form .each_fieldset.__is_multiple {
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 0.5rem;
}
.form .each_fieldset.__is_multiple .label {
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 1rem;
}
.form .each_fieldset.__is_multiple .label small {
  display: block;
  margin-top: 0.15rem;
  opacity: 0.5;
}
.form .each_fieldset .label {
  width: 20%;
  flex-shrink: 0;
}
.form .each_fieldset .label b {
  font-weight: normal;
  color: red;
  display: inline-block;
  margin-left: 0.2rem;
}
.form .each_fieldset .input_wrap {
  flex: 1;
  position: relative;
}
.form .each_fieldset .input_wrap textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  background-color: #ebebeb;
  outline: none;
  resize: none;
}
.form .each_fieldset .input_wrap textarea:active,
.form .each_fieldset .input_wrap textarea:focus {
  background-color: #dedede;
}
.form .each_fieldset .input_wrap.__is_contact {
  display: flex;
}
.form .each_fieldset .input_wrap.__is_contact select {
  border: none;
  border-radius: 0.5rem 0 0 0.5rem;
  padding: 0.8rem 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding-right: 2rem;
  color: #fff;
  background: url("../img/select.svg") calc(100% - 0.5rem) 50% no-repeat
    var(--theme-color-dark);
}
.form .each_fieldset .input_wrap.__is_contact input {
  flex: 1;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.form .each_fieldset .input_wrap input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  background-color: #ebebeb;
  outline: none;
}
.form .each_fieldset .input_wrap input:active,
.form .each_fieldset .input_wrap input:focus {
  background-color: #dedede;
}
.form .each_fieldset .input_wrap input::-moz-placeholder {
  color: #b9b9b9;
  opacity: 1;
}
.form .each_fieldset .input_wrap input:-ms-input-placeholder {
  color: #b9b9b9;
  opacity: 1;
}
.form .each_fieldset .input_wrap input::placeholder {
  color: #b9b9b9;
  opacity: 1;
}
.form .each_fieldset .input_wrap input::-ms-input-placeholder {
  color: #b9b9b9;
}
.form .multiple_input_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.form .multiple_input_wrap .each_multiple_box {
  width: calc(50% - 0.5rem);
  padding: 0.75rem 0;
}
.form .multiple_input_wrap .each_multiple_box .expanded_textbox {
  display: none;
  margin-top: 0.75rem;
}
.form .multiple_input_wrap .each_multiple_box .expanded_textbox textarea {
  background-color: #ebebeb;
  border: none;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  padding: 0.8rem 1rem;
  width: 100%;
  resize: none;
  outline: none;
}
.form
  .multiple_input_wrap
  .each_multiple_box
  .expanded_textbox
  textarea::-moz-placeholder {
  color: #b9b9b9;
  opacity: 1;
}
.form
  .multiple_input_wrap
  .each_multiple_box
  .expanded_textbox
  textarea:-ms-input-placeholder {
  color: #b9b9b9;
  opacity: 1;
}
.form
  .multiple_input_wrap
  .each_multiple_box
  .expanded_textbox
  textarea::placeholder {
  color: #b9b9b9;
  opacity: 1;
}
.form
  .multiple_input_wrap
  .each_multiple_box
  .expanded_textbox
  textarea::-ms-input-placeholder {
  color: #b9b9b9;
}
.form .multiple_input_wrap .each_multiple_box input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.00001;
  width: 1px;
  height: 1px;
  z-index: -10;
}
.form .multiple_input_wrap .each_multiple_box input:checked ~ label:after {
  background: url("../img/check.svg") 50% 50% no-repeat rgba(0, 0, 0, 0);
  width: 24px;
  height: 24px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.form .multiple_input_wrap .each_multiple_box input:checked ~ label::before {
  background-color: #dedede;
}
.form .multiple_input_wrap .each_multiple_box label {
  padding-left: 2.5rem;
  position: relative;
  display: block;
}
.form .multiple_input_wrap .each_multiple_box label:before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background-color: #ebebeb;
}
.form .multiple_input_wrap .each_multiple_box.__full_width {
  width: 100%;
}
.inner_how_to_install {
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #262626;
  padding: 3rem;
  border-radius: 0 0 2rem 2rem;
  display: none;
}
.inner_how_to_install h3 {
  margin-bottom: 1rem;
  font-family: var(--main-font);
  font-weight: bold;
  color: var(--theme-color);
  display: flex;
  align-items: center;
}
.inner_how_to_install h3 img {
  margin-right: 0.5rem;
  width: 1.75rem;
}
.steps {
  display: flex;
  flex-direction: column;
}
.steps .each_step {
  display: flex;
  align-items: center;
  margin-left: 2rem;
  margin-right: 2rem;
  position: relative;
  padding: 0.5rem 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.steps .each_step.__dl_links_trigger {
  cursor: pointer;
}
.steps .each_step:first-of-type {
  border: none;
}
.steps .each_step .my_files {
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
  line-height: 1.3;
  order: 3;
  color: #fff;
}
.steps .each_step .my_files .left {
  flex: 1;
  color: #fff;
}
.steps .each_step .my_files .right {
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  margin-left: 1.5rem;
  order: 2;
}
.steps .each_step .my_files .right img {
  width: clamp(9.5rem, 14vw, 12.5rem);
}
.steps .each_step:nth-of-type(2):hover .step_img:after {
  box-shadow: inset 0 0 0 3px var(--theme-color);
  opacity: 1;
}
.steps .each_step a {
  cursor: pointer;
  color: #fff;
  background-color: var(--theme-color);
  display: inline-flex;
  color: var(--theme-color-dark);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  transition: all 0.15s linear;
}
.steps .each_step a:hover {
  filter: brightness(0.9);
}
.steps .each_step a:after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
}
.steps .each_step .step_img {
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  margin-left: 1.5rem;
  order: 2;
}
.steps .each_step .step_img img {
  width: clamp(9.5rem, 14vw, 12.5rem);
}
.steps .each_step .step_img:after {
  border-radius: inherit;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: inset 0 0 0 1px #000;
  opacity: 0.1;
  content: "";
  transition: all 0.15s linear;
}
.steps .each_step:last-of-type {
  margin-bottom: 0;
}
.steps .each_step .step_des {
  order: 1;
  line-height: 1.3;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.steps .each_step .step_des small {
  margin-bottom: 0.25rem;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  font-weight: bold;
}
.steps .each_step .step_des small b {
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  background-color: #147040;
  font-weight: 300;
  margin-left: 0.5rem;
  text-transform: uppercase;
  font-size: clamp(0.7rem, 0.6vw, 0.7rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.33);
}
.hidden_download_links {
  display: none;
  position: relative;
  z-index: 1;
}
.hidden_download_links .inner_hidden_download_links {
  padding: 1rem 2rem;
  position: relative;
  font-size: 0.9rem;
  background-color: #147040;
  margin-bottom: 0.5rem;
}
.hidden_download_links .inner_hidden_download_links strong {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 300;
}
.hidden_download_links .inner_hidden_download_links .close_dl_links {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 10%);
  background-color: #fff;
  border-radius: 5rem;
  padding: 0.4rem;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 0 0 3px rgba(40, 199, 179, 0.5);
  cursor: pointer;
}
.hidden_download_links .inner_hidden_download_links .close_dl_links img {
  width: clamp(1.25rem, 3vw, 1.75rem);
}
.hidden_download_links .inner_hidden_download_links .close_dl_links:hover {
  box-shadow: 0 0 0 3px #28c7b3;
}
.hidden_download_links .inner_hidden_download_links .close_dl_links.active {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.hidden_download_links .inner_hidden_download_links a {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 0.7rem 1rem;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0.5rem;
  transition: all 0.15s linear;
  box-shadow: inset 0 0 0 1px #fff;
  margin-bottom: 0.35rem;
}
.hidden_download_links .inner_hidden_download_links a:last-of-type {
  margin-bottom: 0;
}
.hidden_download_links .inner_hidden_download_links a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.hidden_download_links .inner_hidden_download_links a:hover .dl_icon .dl_f {
  transform: translate(-50%, -60%);
}
.hidden_download_links .inner_hidden_download_links a .dl_des {
  font-weight: 600;
  display: flex;
  flex-direction: column;
}
.hidden_download_links .inner_hidden_download_links a .dl_des small {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.15rem;
}
.hidden_download_links .inner_hidden_download_links a .dl_icon {
  position: relative;
  margin-left: auto;
  background-color: #fff;
  border-radius: 5rem;
  padding: 0.5rem;
  transition: all 0.15s linear;
}
.hidden_download_links .inner_hidden_download_links a .dl_icon img {
  width: 1.35rem;
}
.hidden_download_links .inner_hidden_download_links a .dl_icon .dl_f {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.top_container {
  background-color: var(--theme-color-darker);
  background-image: url("../img/lg_logo_only.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 125%;
}
.top_container .top {
  max-width: var(--max-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: var(--large-gap);
  position: relative;
}
.top_container .top .dude {
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(35rem, 54vw, 42rem);
}
.top_container .left_block {
  width: 50%;
  position: relative;
  z-index: 2;
}
.top_container .left_block h1 {
  font-size: clamp(2rem, 4.25vw, 3.25rem);
  color: var(--theme-color);
  line-height: 1.2;
}
.top_container .left_block h1 u {
  position: relative;
  text-decoration: none;
  background: linear-gradient(var(--theme-color), var(--theme-color)) left
    bottom no-repeat;
  background-size: 100% 0.5rem;
}
.top_container .left_block p {
  margin-top: 1rem;
  font-size: clamp(1.25rem, 1.5vw, 1.75rem);
  line-height: 1.4;
}

/* Shake animation */
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-5px);
  }
  80% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}

.inner_pop_form.shake {
  animation: shake 0.4s ease;
}
@-webkit-keyframes loopBottomLine {
  0% {
    background-size: 0% 0.5rem;
  }
  100% {
    background-size: 100% 0.5rem;
  }
}
@keyframes loopBottomLine {
  0% {
    background-size: 0% 0.5rem;
  }
  100% {
    background-size: 100% 0.5rem;
  }
}
.top_container .left_block_lower {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
}
.top_container .left_block_lower .android_only {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
}
.top_container .left_block_lower .android_only img {
  margin-right: 0.5rem;
}
.top_container .left_block_lower .download_btn {
  align-self: flex-start;
  cursor: pointer;
}
.top_container .left_block_lower .download_btn span {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.85rem 0.85rem 1.25rem;
  font-family: var(--title-font);
  background-color: var(--theme-color);
  color: var(--theme-color-dark);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  border-radius: 0.5rem;
  transition: all 0.15s linear;
  font-weight: bold;
}
.top_container .left_block_lower .download_btn:hover span {
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.15);
  filter: brightness(0.9);
}
.top_container .left_block_lower .download_btn img {
  margin-right: 0.725rem;
  width: clamp(2.25rem, 3vw, 2.75rem);
}
.main_container {
  padding: 0;
  position: relative;
}
.main_container.has_background {
  background-color: var(--theme-color-darker);
}
.main_container.has_bottom_gap {
  margin-bottom: var(--large-gap);
}
@-webkit-keyframes loopBG {
  0% {
    background-position: center 0;
  }
  100% {
    background-position: center -1120px;
  }
}
@keyframes loopBG {
  0% {
    background-position: center 0;
  }
  100% {
    background-position: center -1120px;
  }
}
@media (max-width: 1200px) {
  :root {
    --max-width: 1000px;
  }
  .steps .each_step .step_img img,
  .steps .each_step .my_files .right img {
    width: clamp(12rem, 17vw, 13rem);
  }
  @-webkit-keyframes loopBG {
    0% {
      background-position: center 0;
    }
    100% {
      background-position: center -910px;
    }
  }
  @keyframes loopBG {
    0% {
      background-position: center 0;
    }
    100% {
      background-position: center -910px;
    }
  }
  html {
    font-size: 15px;
  }
  body {
    background-size: auto 910px;
  }
  header {
    padding: 2rem 3.5rem;
  }
  /* footer {
    padding: 1.5rem 3.5rem;
  } */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.3;
  }
}
@media (max-width: 1024px) {
  :root {
    --large-gap: 4rem;
  }
  .content .help .left {
    width: 35%;
  }
  .content .help .right {
    width: 65%;
  }
}
@media (max-width: 1000px) {
  .promote {
    border: none;
  }
  .main_container.has_bottom_gap {
    margin-bottom: 0;
  }
}
@media (max-width: 960px) {
  footer img {
    width: 2.25rem;
  }
  .inner_how_to_install {
    padding: 2rem;
  }
}
@media (max-width: 820px) {
  html {
    font-size: 14px;
  }
  .promote .left {
    width: 40%;
  }
  .promote .right {
    width: 60%;
  }
  .content .each_blade,
  .content .help {
    flex-direction: column;
  }
  .content .each_blade .left,
  .content .help .left {
    padding: var(--large-gap);
    padding-bottom: 0;
  }
  .content .each_blade .right,
  .content .help .right {
    padding: var(--large-gap);
    padding-top: 1rem;
  }
  .content .each_blade .left,
  .content .each_blade .right,
  .content .help .left,
  .content .help .right {
    width: 100%;
  }
  .content.is_help_block .help .left {
    padding-bottom: calc(var(--large-gap) / 2);
    border: none;
  }
  .content.is_help_block .help .right {
    padding-top: var(--large-gap);
    padding-bottom: var(--large-gap);
    width: calc(100% - var(--large-gap) * 2);
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-right: auto;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
  }
  .steps .each_step .step_img img,
  .steps .each_step .my_files .right img {
    width: clamp(11rem, 17vw, 15rem);
  }
  .inner_how_to_install .steps .each_step {
    font-size: 0.85rem;
    margin-right: 0.9rem;
  }
  .inner_how_to_install .steps .each_step .step_des {
    margin-top: 0.8rem;
  }
  .inner_how_to_install .steps .each_step .step_img {
    border-radius: 0.7rem;
  }
  .top_container .top .left_block {
    width: 80%;
  }
  .top_container .top .left_block h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
  }
  .top_container .top .dude {
    width: auto;
    height: clamp(27rem, 40vw, 30rem);
  }
}
@media (max-width: 768px) {
  .top_container {
    background-size: 150%;
  }
  .main_container .left_block h1 u {
    background-size: 100% 0.35rem;
  }
  .main_container .left_block_lower {
    margin-top: 3rem;
  }
  .inner_how_to_install {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-bottom: 4rem;
  }
  .inner_how_to_install .steps {
    flex-direction: column;
  }
  .inner_how_to_install .steps .each_step {
    display: flex;
    width: 100%;
    margin-right: 0;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
  .inner_how_to_install .steps .each_step:last-of-type {
    margin-bottom: 0;
  }
  .inner_how_to_install .steps .each_step .step_des {
    margin-top: 0;
    order: 1;
    flex: 1;
  }
  .inner_how_to_install .steps .each_step .step_img {
    width: 36%;
    margin-left: 1.5rem;
    order: 2;
  }
  .main_container .left_block_lower .download_btn img {
    width: 2.75rem;
  }
  .main_container .left_block_lower .android_only img {
    width: 1.5rem;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.45;
  }
}
@media (max-width: 720px) {
  .promote {
    flex-direction: column;
    background-image: none;
    position: relative;
  }
  .promote .left {
    width: 100%;
    background: url(../img/promote_dude.png) right center no-repeat
      rgba(0, 0, 0, 0.15);
    background-size: auto 100%;
  }
  .promote .right {
    width: calc(100% - var(--large-gap) * 2);
    position: absolute;
    left: var(--large-gap);
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    bottom: var(--large-gap);
  }
}
@media (max-width: 640px) {
  .form {
    padding: 1rem 2rem;
  }
  .submit_btn_wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 620px) {
  .promote .right {
    position: relative;
  }
}
@media (max-width: 560px) {
  @-webkit-keyframes loopBG {
    0% {
      background-position: center 0;
    }
    100% {
      background-position: center -840px;
    }
  }
  @keyframes loopBG {
    0% {
      background-position: center 0;
    }
    100% {
      background-position: center -840px;
    }
  }
  body {
    background-size: auto 840px;
  }
  .inner_how_to_install .steps .each_step {
    margin-bottom: 1rem;
  }
  .main_container .left_block_lower .download_btn span {
    padding-right: 1.725rem;
  }
  .main_container .left_block_lower .download_btn img {
    width: 2.75rem;
  }
  header {
    display: flex;
    justify-content: center;
  }
  footer img {
    width: 2.2rem;
  }
  .top_container .top .left_block {
    width: 100%;
  }
  .top_container .top .dude {
    height: 22rem;
  }
}
@media (max-width: 520px) {
  :root {
    --large-gap: 3rem;
  }
  .inner_how_to_install {
    padding: 2rem 3rem 3rem 3rem;
  }
  .inner_how_to_install .steps .each_step .step_img {
    width: 40%;
    border-radius: 0.5rem;
    margin-left: 1rem;
  }
  .main_container .left_block_lower .download_btn span {
    padding: 0.85rem;
    padding-right: 1.725rem;
  }
  header {
    padding: 1.5rem;
  }
  footer {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  :root {
    --large-gap: 2.5rem;
  }
  .top_container .top .left_block p {
    width: 55%;
  }
  html {
    font-size: 12.5px;
  }
  @-webkit-keyframes loopBG {
    0% {
      background-position: center 0;
    }
    100% {
      background-position: center -770px;
    }
  }
  @keyframes loopBG {
    0% {
      background-position: center 0;
    }
    100% {
      background-position: center -770px;
    }
  }
  body {
    background-size: auto 770px;
  }
  .steps .each_step .my_files .right,
  .steps .each_step .step_img {
    border-radius: 0.35rem;
  }
  .hidden_download_links .inner_hidden_download_links {
    padding: 0.85rem 1.5rem;
  }
  .hidden_download_links .inner_hidden_download_links a {
    padding: 0.5rem 0.75rem;
  }
  .hidden_download_links .inner_hidden_download_links a .dl_icon img {
    width: 1.2rem;
  }
  .pop_download .inner_pop_download .pop_download_top h2 {
    font-size: 1.1rem;
  }
  .steps .each_step {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  .pop_download,
  .pop_form {
    padding: 1.5rem;
  }
  .pop_form .inner_pop_form .pop_download_top {
    padding: 0.75rem 1.5rem;
  }
  .submit_btn_wrap {
    padding: 1rem 1.5rem;
  }
  .form {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .pop_download .inner_pop_download .pop_download_top,
  .pop_download .inner_pop_download .links {
    padding: 0.75rem 1.5rem;
  }
  .inner_how_to_install {
    padding: 2rem 2.25rem;
  }
}
@media (max-width: 420px) {
  @-webkit-keyframes loopBG {
    0% {
      background-position: center 0;
    }
    100% {
      background-position: center -700px;
    }
  }
  @keyframes loopBG {
    0% {
      background-position: center 0;
    }
    100% {
      background-position: center -700px;
    }
  }
  .submit_btn_wrap {
    flex-wrap: wrap;
  }
  .submit_btn_wrap small {
    order: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
  .submit_btn_wrap button[type="button"] {
    order: 2;
    margin-right: auto;
  }
  .submit_btn_wrap button[type="submit"] {
    order: 3;
  }
  .form .multiple_input_wrap .each_multiple_box {
    width: 100%;
  }
  .form .each_fieldset {
    flex-direction: column;
    align-items: flex-start;
  }
  .form .each_fieldset .input_wrap {
    width: 100%;
  }
  .form .each_fieldset .label {
    width: 100%;
    margin-bottom: 0.25rem;
  }
  .pop_download .inner_pop_download .pop_download_top,
  .hidden_download_links .inner_hidden_download_links {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .steps .each_step {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
  .pop_download,
  .pop_form {
    padding: 1rem;
  }
  body {
    background-size: auto 700px;
  }
  .top_container .top {
    padding: 2rem;
  }
  .top_container .top .dude {
    height: 20rem;
  }
  .inner_how_to_install {
    padding: 2rem;
  }
  footer {
    display: flex;
  }
  footer img {
    width: 1.725rem;
  }
  .main_container .left_block_lower .download_btn img {
    width: 2.25rem;
  }
} /*# sourceMappingURL=newstyle.css.map */
