@charset "UTF-8";
/*------------------------------------*\
  必要CSS檔
  ---
  "savePath": "~/../../css" //輸出資料夾
\*------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/*reset*/
body, div, h1, h2, h3, h4, h5, h6, li, form, input, select, textarea, label, p, blockquote, th, td, iframe, button, a, header, footer {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-family: inherit;
}

body {
  vertical-align: baseline;
  font-size: 16px;
  line-height: 150%;
  font-family: "Roboto", "Noto Sans TC", "Helvetica Neue", Helvetica, "微軟正黑體", sans-serif;
  font-weight: 400;
  color: #0A0A0A;
  background-color: #fff;
  margin: 0;
}

html {
  overflow: unset;
  -webkit-text-size-adjust: 100%;
}
html ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
html ::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
html ::-webkit-scrollbar-track-piece {
  background: rgba(0, 0, 0, 0.1);
}
html ::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.25);
}
html ::-webkit-scrollbar-track {
  box-shadow: transparent;
}

* {
  box-sizing: border-box;
  transition: all 0.2s;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

button {
  color: inherit;
  background: none;
  outline: none;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  font-size: 1rem;
}

ul, ol {
  padding-left: 1.5em;
  margin: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

input, button, textarea, select, optgroup, option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  outline: none;
}

input[type=button],
select {
  -webkit-appearance: none; /* Safari 和 Chrome，常用於iOS下移除內建樣式 */
  -moz-appearance: none; /* FireFox */
  appearance: none;
}

img {
  /*防止chrome將圖片縮放時平滑化處理*/
  image-rendering: -webkit-optimize-contrast;
  max-width: 100%;
}

/*reset end*/
.page {
  background: #fff;
}

:root {
  --primary: #ED2F2C;
  --color-main: #C41919;
  --txt: #0A0A0A;
  --txt-sub: #4F5259;
  --border: #E2E5EF;
  --border-light: #EDEFF2;
  --white: #FFFFFF;
  --up: #E13B3B;
  --down: #4FBC63;
  --gray-light: #888888;
  --blue: #5B9CFF;
  --orange: #FF6B40;
}

.card-box {
  background-color: #FFFFFF;
  box-shadow: 0 0 40px rgba(96, 73, 205, 0.1);
  border-radius: 10px;
  padding: 20px;
}
@media screen and (max-width: 767.9px) {
  .card-box {
    padding: 16px 12px;
  }
}

#pageMenu, .page {
  transition: 0.2s;
}

/* --------------------------------------- */
/* page */
/* --------------------------------------- */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.page {
  margin: 0;
  flex: 1 1 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .page {
    padding-left: 0;
  }
}

.page_cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
@media screen and (max-width: 767.9px) {
  .page_cover {
    background: rgba(0, 0, 0, 0.3);
  }
}

.openmenu {
  position: fixed;
  padding-left: 352px;
}
@media screen and (max-width: 767.9px) {
  .openmenu {
    padding-left: 0;
    transform: translateX(240px);
  }
}
.openmenu:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100dvh;
  background-color: rgba(25, 24, 24, 0.61);
  position: absolute;
  top: 0;
  left: 0;
}

.page.openmenu .page_cover {
  z-index: 1001;
}

.page.openmenu + nav .index-btn-box {
  flex-direction: row;
}

.wrapper {
  width: 100vw;
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
  background: #fff;
}

/* --------------------------------------- */
/* menu */
/* --------------------------------------- */
#pageMenu {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  background: #f3f3f3;
  padding: 20px;
}
@media screen and (max-width: 767.9px) {
  #pageMenu {
    display: none;
  }
}
#pageMenu .pageMenu-hide {
  display: none;
}

.menu-wrapper.active {
  width: 352px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.menu-wrapper.active:after {
  content: "";
  display: block;
  width: 100dvw;
  height: 100svh;
  background-color: rgba(25, 24, 24, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .menu-wrapper.active {
    left: 0;
    width: 288px;
    padding-bottom: 12px;
  }
}
.menu-wrapper.active #pageMenu {
  display: flex;
  height: 100dvh;
}
.menu-wrapper.active #pageMenu .nav-link {
  display: none;
}
.menu-wrapper.active #pageMenu .pageMenu-hide {
  display: block;
}
.menu-wrapper.active .back-and-logo-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .menu-wrapper.active .back-and-logo-wrapper {
    margin-bottom: 16px;
  }
}
.menu-wrapper.active .back-and-logo-wrapper .btn-back {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 1023.9px) {
  .menu-wrapper.active .back-and-logo-wrapper .btn-back {
    position: relative;
  }
  .menu-wrapper.active .back-and-logo-wrapper .btn-back::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 36px;
    min-height: 36px;
  }
}
.menu-wrapper.active .back-and-logo-wrapper .btn-back {
  background-image: url("../images/btn-back.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 0;
}
.menu-wrapper.active .back-and-logo-wrapper .btn-back span {
  display: none;
}
.menu-wrapper.active .back-and-logo-wrapper .logo {
  width: 40px;
  height: 40px;
  background-image: url("../images/logo-nemu.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.menu-wrapper.active .search-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.menu-wrapper.active .search-wrapper .input-txt-box {
  flex: 1 1 auto;
  padding: 0;
  border: 0;
}
.menu-wrapper.active .search-wrapper input {
  width: 100%;
  height: 48px;
  padding: 0 12px 0 56px;
  background-image: url("../images/icon-search-nemu.svg");
  background-position: 10px 50%;
  background-size: 24px auto;
  background-repeat: no-repeat;
  border-radius: 20px;
  border: 1px solid #E2E5EF;
  color: #0A0A0A;
  font-size: 1.125rem;
  line-height: 1.25rem;
}
.menu-wrapper.active .search-wrapper input::placeholder {
  color: #C0BDCC;
}
.menu-wrapper.active .search-wrapper .btn-more {
  width: 24px;
  height: 24px;
  background-image: url("../images/btn-more.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  flex: 0 0 auto;
}
@media screen and (max-width: 1023.9px) {
  .menu-wrapper.active .search-wrapper .btn-more {
    position: relative;
  }
  .menu-wrapper.active .search-wrapper .btn-more::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 36px;
    min-height: 36px;
  }
}
.menu-wrapper.active .nav-search {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
  color: #0A0A0A;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .menu-wrapper.active .nav-search {
    font-size: 1.125rem;
    margin-bottom: 12px;
  }
}
.menu-wrapper.active .search-value-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
  max-height: calc(100dvh - 260px);
  overflow: auto;
}
@media screen and (max-width: 767.9px) {
  .menu-wrapper.active .search-value-wrapper {
    max-height: calc(100dvh - 320px);
  }
}
.menu-wrapper.active .search-value-wrapper .search-link {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 1rem;
  line-height: 1.5;
  color: #6B7DA9;
  padding: 12px 0;
  border-bottom: 1px solid #E2E5EF;
  position: relative;
}
.menu-wrapper.active .nav-utility {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .menu-wrapper.active .nav-utility {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E2E5EF;
  }
}
.menu-wrapper.active .nav-utility .nav-utility-link {
  font-size: 1rem;
  line-height: 1.5;
  color: #E13B3B;
  text-decoration: underline;
}
.menu-wrapper.active .nav-utility .nav-utility-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}
.menu-wrapper.active .nav-utility .nav-utility-lang a {
  font-size: 0.875rem;
  line-height: 1;
  color: #888888;
  padding: 6px 10px;
  border-radius: 40px;
}
.menu-wrapper.active .nav-utility .nav-utility-lang a.on {
  color: #0A0A0A;
  background-color: #EDEFF2;
  font-weight: 700;
}

/* menu_按鈕 */
.pageMenu-btn {
  display: block;
  position: relative;
  width: 36px;
  height: 36px;
  background-image: url("../images/pageMenu-btn.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px auto;
  outline: none;
  border: none;
  margin: 0 auto;
  flex: 0 0 auto;
}
@media screen and (max-width: 1023.9px) {
  .pageMenu-btn {
    position: relative;
  }
  .pageMenu-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 36px;
    min-height: 36px;
  }
}
@media screen and (max-width: 767.9px) {
  .pageMenu-btn {
    margin: 0;
  }
}

.navbtn {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
}
.navbtn.setting {
  background: url(../images/btn-nav-setting.svg);
}
.navbtn.lang {
  background: url(../images/btn-nav-lang.svg);
}
.navbtn {
  background-size: 100% auto;
}

.pageMenu-logo {
  width: 40px;
  height: 40px;
  background-image: url("../images/logo-nemu.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 40px;
  flex: 0 0 auto;
}

.nav-link {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex: 1 1 auto;
}
.nav-link .hover-box {
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  border: 1px solid #E2E5EF;
  border-radius: 10px;
  background-color: #FFFFFF;
  box-shadow: 0 0 20px rgba(96, 73, 205, 0.1);
  position: absolute;
  top: 44px;
  right: 0;
  z-index: 100;
  display: none;
}
.nav-link .btn-setting {
  position: relative;
}
.nav-link .btn-setting .hover-box {
  width: 200px;
  right: auto;
  top: auto;
  left: 0;
  bottom: calc(100% + 8px);
  display: none;
  text-align: center;
}
.nav-link .btn-setting:hover .hover-box {
  display: block;
}

.m-btn-box {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .m-btn-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
  }
}
.m-btn-box .link {
  display: none;
}
.m-btn-box .btn-selection {
  width: 32px;
  height: 32px;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
}
@media screen and (max-width: 1023.9px) {
  .m-btn-box .btn-selection {
    position: relative;
  }
  .m-btn-box .btn-selection::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 36px;
    min-height: 36px;
  }
}
@media screen and (max-width: 374px) {
  .m-btn-box .btn-selection {
    width: 24px;
    height: 24px;
    background-size: 24px auto;
  }
}
.m-btn-box .btn-selection:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 8px;
  position: absolute;
  top: 40px;
  right: 0;
}
.m-btn-box .btn-user .img-box {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.m-btn-box .btn-lang {
  display: none;
  background-image: url("../images/icon-lang.svg");
  background-position: center;
  background-size: 32px auto;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 374px) {
  .m-btn-box .btn-lang {
    background-size: 24px auto;
  }
}
.m-btn-box .hover-box {
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  border: 1px solid #E2E5EF;
  border-radius: 8px;
  background-color: #FFFFFF;
  box-shadow: 0 0 20px rgba(96, 73, 205, 0.1);
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 100;
  display: none;
}
.m-btn-box .hover-link {
  padding: 8px 16px;
  color: #0A0A0A;
  white-space: nowrap;
  border-bottom: 1px solid #E2E5EF;
  text-align: center;
}
.m-btn-box .hover-link:nth-child(2) {
  border: 0;
}
.m-btn-box .btn-selection.on .hover-box {
  display: flex;
}
.m-btn-box .btn-logout {
  padding: 8px 16px;
  color: #FFFFFF;
  background-color: #888888;
  font-size: 1rem;
  text-align: center;
  border-radius: 40px;
}

.btn-info {
  width: 36px;
  height: 36px;
  background-image: url("../images/icon-info.svg");
  background-position: center;
  background-size: 30px auto;
  background-repeat: no-repeat;
}

.btn-autoPlay {
  width: 36px;
  height: 36px;
  background-image: url("../images/icon-monitor.svg");
  background-position: center;
  background-size: 30px auto;
  background-repeat: no-repeat;
}

.index-btn-box {
  list-style: none;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin-bottom: 16px;
}
.index-btn-box li {
  width: 40px;
}
.index-btn-box li .btn {
  display: block;
  color: #ED2F2C;
  border-radius: 10px;
  border: 0;
  background-color: #FFE1D9;
  padding: 6px;
  font-size: 0.875rem;
  line-height: 1rem;
  text-align: center;
}
.index-btn-box li .btn.on {
  color: #FFE1D9;
  background-color: #ED2F2C;
}
.index-btn-box li .btn-blue {
  padding: 6px 0;
  background-color: rgba(91, 156, 255, 0.15);
  color: #5B9CFF;
}
.index-btn-box li .btn-blue span {
  font-size: 0.75rem;
}
.index-btn-box li .btn-blue.on {
  color: #FFFFFF;
  background-color: #5B9CFF;
}

.btn-setting {
  width: 36px;
  height: 36px;
  background-image: url("../images/icon-setting.svg");
  background-position: center;
  background-size: 30px auto;
  background-repeat: no-repeat;
  margin-top: auto;
}

/* --------------------------------------- */
/* --------------------------------------- */
.page-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.page-inner {
  flex: 1 1 auto;
  pointer-events: none;
}

.wrapper {
  pointer-events: auto;
}

.menu-wrapper.active + .page-inner {
  padding-left: 352px;
}
@media screen and (max-width: 767.9px) {
  .menu-wrapper.active + .page-inner {
    padding-left: 240px;
  }
}

.menu-wrapper.active .index-btn-box {
  flex-direction: row;
}

.page {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}

.page-noPadding {
  padding: 0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: calc(100dvw - 80px);
  margin: 0 auto;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 767.9px) {
  .wrapper {
    width: 100dvw;
  }
}

.wrapper-full {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
  z-index: -1;
}

.pagesize {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
@media screen and (max-width: 767.9px) {
  .pagesize {
    padding: 0 10px;
  }
}
.pagesize.no-padding {
  padding: 0;
}

.pagesize-m {
  width: 100%;
  max-width: 1088px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
@media screen and (max-width: 767.9px) {
  .pagesize-m {
    padding: 0 0px;
  }
}

.pagesize-l {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
@media screen and (max-width: 767.9px) {
  .pagesize-l {
    padding: 0 10px;
  }
}

.container {
  max-width: 100%;
  padding: 0;
}

.container.inner {
  overflow-x: clip;
}
.po-re {
  position: relative;
}

.sideNav {
  width: 60px;
  background-color: #eaeaea;
}

.btn-sticker {
  flex: 0 0 auto;
  display: inline-block;
  padding: 6px 14px;
  border: 0;
  border-radius: 40px;
  background-color: rgba(91, 156, 255, 0.15);
  color: #5B9CFF;
  font-size: 0.875rem;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 1023.9px) {
  .btn-sticker {
    position: relative;
  }
  .btn-sticker::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 36px;
    min-height: 36px;
  }
}
.btn-sticker br {
  display: none;
}
.btn-sticker span {
  font-size: inherit;
}

.header {
  padding: 12px 0;
}
@media screen and (max-width: 767.9px) {
  .header {
    display: none;
  }
}
.header .nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 8px;
}
.header .index-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.header .link {
  flex: 0 0 auto;
  font-size: 0.875rem;
  color: #E13B3B;
  text-decoration: underline;
  margin-right: 12px;
}
@media screen and (max-width: 1023.9px) {
  .header .link {
    margin-right: 4px;
  }
}
.header .btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.header .btn-box .btn-sticker {
  margin-right: 12px;
}
@media screen and (max-width: 1023.9px) {
  .header .btn-box .btn-sticker {
    margin-right: 4px;
  }
}
.header .btn-box .points {
  flex: 0 0 auto;
  color: #000000;
  line-height: 1;
  margin-right: 12px;
}
@media screen and (max-width: 1023.9px) {
  .header .btn-box .points {
    display: none;
  }
}
@media screen and (max-width: 767.9px) {
  .header .btn-box .points {
    margin-right: 0;
  }
}
.header .btn-box .btn-selection {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
}
.header .btn-box .btn-selection:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 8px;
  position: absolute;
  top: 40px;
  right: 0;
}
.header .btn-box .btn-share {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  background-image: url("../images/icon-share.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.header .btn-box .btn-user .img-box {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.header .btn-box .btn-lang {
  background-image: url("../images/icon-lang.svg");
  background-position: center;
  background-size: 36px auto;
  background-repeat: no-repeat;
}
.header .btn-box .hover-box {
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  border: 1px solid #E2E5EF;
  border-radius: 10px;
  background-color: #FFFFFF;
  box-shadow: 0 0 20px rgba(96, 73, 205, 0.1);
  position: absolute;
  top: 44px;
  right: 0;
  z-index: 100;
  display: none;
}
.header .btn-box .hover-link {
  padding: 8px 16px;
  color: #0A0A0A;
  white-space: nowrap;
  border-bottom: 1px solid #E2E5EF;
  text-align: center;
}
.header .btn-box .hover-link:nth-child(2) {
  border: 0;
}
.header .btn-box .btn-selection:hover .hover-box {
  display: flex;
}
.header .btn-box .btn-logout {
  padding: 8px 16px;
  color: #FFFFFF;
  background-color: #888888;
  font-size: 1rem;
  text-align: center;
  border-radius: 40px;
}

.header-inner {
  border-bottom: 1px solid #E2E5EF;
  padding-bottom: 0;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.header-inner ::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
.header-inner ::-webkit-scrollbar-track-piece {
  background: transparent;
}
.header-inner .nav-wrapper {
  align-items: flex-end;
}
.header-inner .nav-wrapper.align-center {
  align-items: center;
}
.header-inner .align-center .link {
  text-decoration: underline;
}
.header-inner .nav-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding: 0;
  list-style: none;
  min-width: 276px;
  overflow: auto;
}
.header-inner .nav-box li {
  flex: 0 0 auto;
}
.header-inner .nav-box .nav-link {
  color: rgba(79, 82, 89, 0.5);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  padding: 8px 4px;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .header-inner .nav-box .nav-link:hover {
    color: #ED2F2C;
    transition: all 0.2s;
  }
}
.header-inner .nav-box .nav-link.on {
  color: #0A0A0A;
  border-color: #0A0A0A;
  font-weight: 700;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .header-inner .nav-box .nav-link.on:hover {
    color: #ED2F2C;
    border-color: #ED2F2C;
    transition: all 0.2s;
  }
}
.header-inner .nav-box .nav-input-btn-box.on {
  color: #0A0A0A;
  border-color: #0A0A0A;
  font-weight: 700;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .header-inner .nav-box .nav-input-btn-box.on:hover {
    color: #ED2F2C;
    border-color: #ED2F2C;
    transition: all 0.2s;
  }
}
.header-inner .btn-box {
  padding-bottom: 12px;
  flex: 0 0 auto;
}
.header-inner .indexSearch {
  display: flex;
  align-items: center;
  gap: 0 20px;
  height: 40px;
  padding-left: 20px;
  padding-right: 10px;
  margin-bottom: 12px;
  background-color: #fff;
  border: solid 1px #E2E5EF;
  border-radius: 20px;
}
@media screen and (max-width: 767.9px) {
  .header-inner .indexSearch {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 20px 12px 20px;
    height: auto;
  }
}
.header-inner .indexSearch input {
  flex: 1 1 auto;
  background-size: auto 24px;
}
@media screen and (max-width: 767.9px) {
  .header-inner .indexSearch input {
    width: 100%;
  }
}
.header-inner .indexSearch select {
  font-weight: 700;
  color: inherit;
  padding: 10px 18px 10px 0;
  background: url(../images/btn-nav-arrow.svg) right center no-repeat;
  background-size: 16px auto;
}
.header-inner .indexSearch .icoBtn {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}
.header-inner .indexSearch .icoBtn.voice {
  background: url(../images/input-voice.svg);
  background-size: auto 24px;
}
.header-inner .indexSearch-send {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 12px;
  background: #f6f6f6 url(../images/input-send.svg) center center no-repeat;
  background-size: auto 24px;
  flex: 0 0 auto;
}

.mHeader {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .mHeader {
    display: flex;
    justify-content: flex-start;
    gap: 0 8px;
    background-color: #f3f3f3;
    padding: 8px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 374px) {
  .mHeader {
    padding: 8px 8px;
  }
}
.mHeader.border {
  border-bottom: 1px solid #E2E5EF;
}
.mHeader .back-index {
  font-size: 1rem;
  color: #0A0A0A;
  margin-right: auto;
}
@media screen and (max-width: 1023.9px) {
  .mHeader .back-index {
    position: relative;
  }
  .mHeader .back-index::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 36px;
    min-height: 36px;
  }
}
.mHeader .link-txt {
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #ED2F2C;
  text-decoration: underline;
  margin-right: auto;
}
.mHeader .search {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 8px;
  background-color: #fff;
  border: solid 1px #E2E5EF;
  border-radius: 20px;
}
@media screen and (max-width: 560px) {
  .mHeader .search {
    gap: 4px;
  }
}
.mHeader .search input {
  background-size: auto 24px;
  font-size: 16px;
  line-height: 1.25;
  padding-top: 9px;
  padding-bottom: 9px;
  margin-top: -9px;
  margin-bottom: -9px;
}
@media screen and (max-width: 767.9px) {
  .mHeader .search input {
    max-width: 100px;
    background-size: auto 20px;
    background-position: 1px calc(50% - 1px);
  }
}
.mHeader .search select {
  font-weight: 700;
  color: inherit;
  padding: 10px 18px 10px 0;
  background: url(../images/btn-nav-arrow.svg) right center no-repeat;
  background-size: 16px auto;
}
.mHeader .search .icoBtn {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}
@media screen and (max-width: 1023.9px) {
  .mHeader .search .icoBtn {
    position: relative;
  }
  .mHeader .search .icoBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 36px;
    min-height: 36px;
  }
}
.mHeader .search .icoBtn.voice {
  background: url(../images/input-voice.svg);
  background-size: auto 24px;
}
.mHeader .search .icoBtn.send {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: #f6f6f6 url(../images/input-send.svg) center center no-repeat;
  background-size: auto 24px;
  flex: 0 0 auto;
}
.mHeader .header-logo {
  width: 24px;
  height: 24px;
}
.mHeader .header-logo + .m-btn-box {
  margin-left: auto;
  width: auto;
}
.mHeader .btn-sticker {
  display: none;
}
.mHeader.ty-index .btn-sticker {
  display: inline-block;
}
.mHeader .link {
  color: #E13B3B;
  font-size: 0.875rem;
  white-space: nowrap;
}
.mHeader .btn-share {
  width: 24px;
  height: 24px;
  background-image: url("../images/icon-share.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.mHeader .points {
  flex: 0 0 auto;
  color: #000000;
  line-height: 1;
  font-size: 0.875rem;
}
.mHeader .nav-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding: 0;
  list-style: none;
  width: 100%;
  overflow: auto;
  position: relative;
  top: 12px;
}
.mHeader .nav-box .nav-link {
  color: rgba(79, 82, 89, 0.5);
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  padding: 8px 4px;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .mHeader .nav-box .nav-link:hover {
    color: #ED2F2C;
    transition: all 0.2s;
  }
}
.mHeader .nav-box .nav-link.on {
  color: #0A0A0A;
  border-color: #0A0A0A;
  font-weight: 700;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .mHeader .nav-box .nav-link.on:hover {
    color: #ED2F2C;
    border-color: #ED2F2C;
    transition: all 0.2s;
  }
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  background-color: #0A1420;
}
footer:before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgb(43, 210, 223) 0%, rgb(106, 212, 221) 39%, rgb(248, 174, 167) 53%, rgb(255, 61, 43) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
footer .footer-frame {
  width: 100%;
  max-width: 1320px;
  padding: 20px 20px 32px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: #FFFFFF;
}
@media screen and (max-width: 767.9px) {
  footer .footer-frame {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }
}
footer .footer-logo {
  width: 164px;
  height: 72px;
  background-image: url("../images/footer-logo.svg");
  background-position: 0 center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1023.9px) {
  footer .footer-logo {
    width: 100%;
  }
}
footer .txt-wrapper {
  padding: 6px 0;
}
footer .txt-wrapper a {
  color: #5CA5E9;
}
footer .statement-box {
  display: flex;
  gap: 8px;
}
footer .info-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 24px;
}
@media screen and (max-width: 767.9px) {
  footer .info-wrapper {
    flex-direction: column;
  }
}
footer .info-wrapper ul {
  max-width: 248px;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0;
}
footer .info-wrapper ul.width-l {
  max-width: 320px;
}
@media screen and (max-width: 767.9px) {
  footer .info-wrapper ul.width-l {
    max-width: unset;
  }
}
footer .media-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
footer .media-wrapper .media-box {
  width: 36px;
  height: 36px;
}
@media screen and (max-width: 1023.9px) {
  footer .media-wrapper .media-box {
    position: relative;
  }
  footer .media-wrapper .media-box::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 36px;
    min-height: 36px;
  }
}
footer .media-wrapper .media-box {
  border-radius: 50%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
footer .media-wrapper .media-box.line {
  background-image: url("../images/btn-line.svg");
}
footer .media-wrapper .media-box.mail {
  background-image: url("../images/btn-mail.svg");
}
footer .media-wrapper .media-box.fb {
  background-image: url("../images/btn-fb.svg");
}

.frame-aside-wrapper {
  padding: 20px 0;
  width: 100%;
  height: calc(100dvh - 65px);
  overflow: auto;
}
@media screen and (max-width: 1023.9px) {
  .frame-aside-wrapper {
    height: calc(100dvh - 60px);
    padding-right: 0;
  }
}
.frame-aside-wrapper.padding {
  padding: 20px 32px;
}
@media screen and (max-width: 767.9px) {
  .frame-aside-wrapper.padding {
    padding: 20px 12px 20px 8px;
  }
}

.frame-aside-flex-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 40px;
  padding: 40px 0;
}
@media screen and (max-width: 1023.9px) {
  .frame-aside-flex-wrapper {
    flex-direction: column;
    padding: 20px 0;
  }
}
@media screen and (max-width: 1023.9px) {
  .frame-aside-flex-wrapper.m-p {
    padding-top: 0;
  }
}
.frame-aside-flex-wrapper .frame-line {
  width: 1px;
  background-color: #E2E5EF;
}
@media screen and (max-width: 1023.9px) {
  .frame-aside-flex-wrapper .frame-line {
    width: calc(100% - 20px);
    height: 1px;
    margin-left: 10px;
    margin-top: -10px;
  }
}
.frame-aside-flex-wrapper .frame-line.full {
  position: relative;
}
.frame-aside-flex-wrapper .frame-line.full:before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 40px;
  background-color: #E2E5EF;
  position: absolute;
  top: -40px;
}
@media screen and (max-width: 1023.9px) {
  .frame-aside-flex-wrapper .frame-line.full:before {
    display: none;
  }
}

.aside-container-wrapper {
  display: inline-block;
  vertical-align: top;
  margin-right: 56px;
  padding-right: 16px;
  width: calc(100% - 370px - 60px);
}
@media screen and (max-width: 1023.9px) {
  .aside-container-wrapper {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .aside-container-wrapper {
    padding-right: 0;
  }
}

.aside-wrapper {
  width: 360px;
  display: inline-block;
  vertical-align: top;
  position: sticky;
  top: 0px;
}
@media screen and (max-width: 1023.9px) {
  .aside-wrapper {
    display: none;
  }
}

.aside-half-wrapper {
  flex: 1;
}
@media screen and (max-width: 1023.9px) {
  .aside-half-wrapper {
    width: 100%;
  }
}
.aside-half-wrapper.left-s {
  padding-right: 16px;
  max-width: 560px;
  overflow: auto;
  height: calc(100dvh - 145px);
}
@media screen and (max-width: 1023.9px) {
  .aside-half-wrapper.left-s {
    max-width: unset;
    height: calc(100dvh - 160px);
    padding-right: 0;
    padding-top: 20px;
  }
}
.aside-half-wrapper.left-s .ai-dialogue-wrapper {
  padding-left: 0px;
}
@media screen and (max-width: 1023.9px) {
  .aside-half-wrapper.left-s .ai-dialogue-wrapper {
    padding: 0 10px;
  }
}
.aside-half-wrapper.report {
  padding-right: 16px;
  overflow: auto;
  height: calc(100dvh - 145px);
}
@media screen and (max-width: 1023.9px) {
  .aside-half-wrapper.report {
    height: auto;
    padding: 0 10px 20px 10px;
  }
}
.aside-half-wrapper .news-wrapper {
  margin-bottom: 36px;
}

/*------------------------------------*/
/*------------------------------------*/
:root {
  --primary: #ED2F2C;
  --color-main: #C41919;
  --txt: #0A0A0A;
  --txt-sub: #4F5259;
  --border: #E2E5EF;
  --border-light: #EDEFF2;
  --white: #FFFFFF;
  --up: #E13B3B;
  --down: #4FBC63;
  --gray-light: #888888;
  --blue: #5B9CFF;
  --orange: #FF6B40;
}

.card-box {
  background-color: #FFFFFF;
  box-shadow: 0 0 40px rgba(96, 73, 205, 0.1);
  border-radius: 10px;
  padding: 20px;
}
@media screen and (max-width: 767.9px) {
  .card-box {
    padding: 16px 12px;
  }
}

.wrapper {
  width: 100%;
}

.header-login {
  border-bottom: 1px solid #E2E5EF;
}

.header-logo {
  width: 40px;
  height: 40px;
  background-image: url("../images/logo-nemu.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  flex: 0 0 auto;
}

.logo-login {
  width: 252px;
  height: 80px;
  background-image: url("../images/logo-niversal.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 48px;
  flex: 0 0 auto;
}
.logo-login h1 {
  font-size: 1rem;
  visibility: hidden;
}

.login-group-wrapper {
  width: 100dvw;
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-height: 100dvh;
}
.login-group-wrapper .bg {
  width: 50%;
  background-image: url("../images/bg-login.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .login-group-wrapper .bg {
    display: none;
  }
}

.login-choose-box {
  width: 50%;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
@media screen and (max-width: 767.9px) {
  .login-choose-box {
    width: 100%;
  }
}

.login-box {
  padding: 80px 20px;
  width: 50%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767.9px) {
  .login-box {
    width: 100%;
  }
}
.login-box .form-wrapper {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
}

.login-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4F5259;
}

.btn-col-box {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 400px;
}
.btn-col-box .btn-login {
  width: 100%;
  border: 1px solid #E2E5EF;
  height: 48px;
  border-radius: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.btn-col-box .main {
  background-color: #ED2F2C;
  border-color: #ED2F2C;
  color: #fff;
}
.btn-col-box .icon-mail {
  width: 24px;
  height: 24px;
  background-image: url("../images/icon-mail-login.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.btn-col-box .icon-apple {
  width: 24px;
  height: 24px;
  background-image: url("../images/login-apple-login.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.btn-col-box .icon-google {
  width: 24px;
  height: 24px;
  background-image: url("../images/icon-google-login.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.btn-col-box .btn-last {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: underline;
  height: 48px;
  color: #5295F9;
}
.btn-col-box .signup-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #B2B2B4;
}
.btn-col-box .signup-box .link-signup {
  color: #0A0A0A;
  font-size: 500;
}
.btn-col-box .signup-box .link-forget {
  color: #4F5259;
  text-decoration: underline;
}

.popup-body {
  padding-bottom: 20px;
}
.popup-body .img-lock {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
  width: 72px;
  height: 72px;
  background-image: url("../images/img-lock.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.popup-body .popup-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
.popup-body .popup-para {
  font-size: 1rem;
  color: #4F5259;
  margin-bottom: 1.25rem;
  text-align: center;
}

.disclaimer-wrapper {
  padding: 40px 0 80px 0;
}
@media screen and (max-width: 767.9px) {
  .disclaimer-wrapper {
    padding: 20px 0;
  }
}
.disclaimer-wrapper .login-title {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #4F5259;
  font-weight: 700;
  margin-bottom: 8px;
}
.disclaimer-wrapper .sub-title {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #0A0A0A;
  margin-bottom: 1.25rem;
}
.disclaimer-wrapper .color-block {
  width: 60px;
  height: 4px;
  background-color: #ED2F2C;
  margin-bottom: 20px;
}
.disclaimer-wrapper .para {
  margin-bottom: 20px;
}
.disclaimer-wrapper hr {
  margin: 0 0 20px 0;
  border: 0;
  width: 100%;
  height: 1px;
  background-color: 1px solid #E2E5EF;
}
.disclaimer-wrapper .first-ol {
  padding-left: 0;
  color: #4F5259;
  margin-bottom: 20px;
  list-style-type: none;
  counter-reset: list-number; /* 初始化一個名為 'list-number' 的計數器 */
}
.disclaimer-wrapper .first-ol li {
  display: flex;
  align-items: flex-start;
  counter-increment: list-number; /* 每個 li 讓計數器 +1 */
}
.disclaimer-wrapper .first-ol li:before {
  content: counter(list-number) ".";
  width: 24px;
  text-align: left;
  flex-shrink: 0;
}
.disclaimer-wrapper .second-ul {
  width: 100%;
  padding-left: 24px;
  color: #4F5259;
  margin-bottom: 20px;
  list-style: none;
}
.disclaimer-wrapper .second-ul li {
  position: relative;
}
.disclaimer-wrapper .second-ul li::before {
  content: "．";
  display: inline-block;
  position: absolute;
  top: 0;
  left: -20px;
}

.logo-and-switch-wrapper {
  padding: 80px 0 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767.9px) {
  .logo-and-switch-wrapper {
    padding-top: 40px;
  }
}
.logo-and-switch-wrapper .logo-login {
  margin-bottom: 0;
}

.switch-box-other {
  position: relative;
}
.switch-box-other input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.switch-box-other .value-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #E2E5EF;
  border-radius: 40px;
  background-color: #fff;
  position: relative;
}
.switch-box-other .value-box:after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  border-radius: 40px;
  background-color: #DEDEDE;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform: all 0.15s;
}
.switch-box-other .value-box .value-1 {
  padding: 4px 12px;
  color: #0A0A0A;
  border-radius: 40px;
  position: relative;
  z-index: 2;
  transform: all 0.15s;
}
.switch-box-other .value-box .value-2 {
  padding: 4px 12px;
  color: #4F5259;
  border-radius: 40px;
  position: relative;
  z-index: 2;
  transform: all 0.15s;
}
.switch-box-other input:checked + label .value-box:after {
  left: 50%;
  transform: all 0.15s;
}
.switch-box-other input:checked + label .value-1 {
  color: #4F5259;
  transform: all 0.15s;
}
.switch-box-other input:checked + label .value-2 {
  color: #0A0A0A;
  transform: all 0.15s;
}

.plan-card-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  padding-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .plan-card-wrapper {
    flex-direction: column;
  }
}
.plan-card-wrapper .card-box {
  width: calc((100% - 40px) / 3);
  border: 1px solid #E2E5EF;
  box-shadow: 0 0 20px rgba(96, 73, 205, 0.1);
  border-radius: 20px;
  padding: 40px;
}
@media screen and (max-width: 960px) {
  .plan-card-wrapper .card-box {
    width: 100%;
    padding: 20px;
  }
}
.plan-card-wrapper .card-box:hover {
  box-shadow: 0 0 40px rgba(96, 73, 205, 0.2);
}
.plan-card-wrapper .card-box h2 {
  font-weight: 500;
  color: #0A0A0A;
  margin-bottom: 20px;
}
.plan-card-wrapper .card-box .price-wrapper {
  padding-bottom: 20px;
}
.plan-card-wrapper .card-box .price-wrapper .price-box {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  margin-bottom: 8px;
}
.plan-card-wrapper .card-box .price-wrapper .price-box div:first-of-type {
  font-size: 28px;
  font-weight: 700;
}
.plan-card-wrapper .card-box .price-wrapper .price-box div:last-of-type {
  color: #4F5259;
}
.plan-card-wrapper .card-box .line-txt {
  color: #0A0A0A;
  font-weight: 500;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .plan-card-wrapper .card-box .line-txt {
    margin-bottom: 0;
  }
}
.plan-card-wrapper .card-box .btn-up-1 {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  border-radius: 48px;
  color: #0A0A0A;
  background-color: #DEDEDE;
}
.plan-card-wrapper .card-box .btn-up-2 {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  border-radius: 48px;
  color: #ffffff;
  background-color: #0A0A0A;
}
.plan-card-wrapper .card-box .btn-up-3 {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  border-radius: 48px;
  color: #ffffff;
  background-color: #ED2F2C;
}
.plan-card-wrapper .card-box .icon-and-txt-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 12px;
}
.plan-card-wrapper .card-box .icon-and-txt-wrapper .icon-and-txt-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.plan-card-wrapper .card-box .icon-and-txt-wrapper .icon-box {
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.plan-card-wrapper .card-box .icon-and-txt-wrapper .icon-box-1-1 {
  background-image: url("../images/icon-price-1-1.svg");
}
.plan-card-wrapper .card-box .icon-and-txt-wrapper .icon-box-1-2 {
  background-image: url("../images/icon-price-1-2.svg");
}
.plan-card-wrapper .card-box .icon-and-txt-wrapper .icon-box-1-3 {
  background-image: url("../images/icon-price-1-3.svg");
}
.plan-card-wrapper .card-box .icon-and-txt-wrapper .icon-box-1-4 {
  background-image: url("../images/icon-price-1-4.svg");
}
.plan-card-wrapper .card-box .icon-and-txt-wrapper .icon-box-2-1 {
  background-image: url("../images/icon-price-2-1.svg");
}
.plan-card-wrapper .card-box .icon-and-txt-wrapper .icon-box-2-2 {
  background-image: url("../images/icon-price-2-2.svg");
}
.plan-card-wrapper .card-box .icon-and-txt-wrapper .icon-box-2-3 {
  background-image: url("../images/icon-price-2-3.svg");
}
.plan-card-wrapper .card-box .icon-and-txt-wrapper .icon-box-2-4 {
  background-image: url("../images/icon-price-2-4.svg");
}
.plan-card-wrapper .card-box .icon-and-txt-wrapper .icon-box-2-5 {
  background-image: url("../images/icon-price-2-5.svg");
}
.plan-card-wrapper .card-box .icon-and-txt-wrapper .icon-box-3-1 {
  background-image: url("../images/icon-price-3-1.svg");
}
.plan-card-wrapper .card-box .icon-and-txt-wrapper .icon-box-3-2 {
  background-image: url("../images/icon-price-3-2.svg");
}
.plan-card-wrapper .card-box .icon-and-txt-wrapper .icon-box-3-3 {
  background-image: url("../images/icon-price-3-3.svg");
}
.plan-card-wrapper .card-box .icon-and-txt-wrapper .icon-box-3-4 {
  background-image: url("../images/icon-price-3-4.svg");
}
.plan-card-wrapper .card-box .icon-and-txt-wrapper .icon-box-3-5 {
  background-image: url("../images/icon-price-3-5.svg");
}
.plan-card-wrapper .card-box .icon-and-txt-wrapper .txt-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  letter-spacing: 0;
}
.plan-card-wrapper .card-box .icon-and-txt-wrapper .txt {
  font-weight: 500;
}
.plan-card-wrapper .card-box .icon-and-txt-wrapper .txt-sub {
  font-size: 0.875rem;
  line-height: 1;
  color: #AFB2BA;
}

.switch-and-txt-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.switch-and-txt-wrapper .switch-box {
  position: relative;
}
.switch-and-txt-wrapper .switch-box input {
  width: 1px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
}
.switch-and-txt-wrapper .switch-box label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.switch-and-txt-wrapper .switch-box label .switch {
  width: 48px;
  height: 24px;
  border-radius: 48px;
  background-color: #E2E5EF;
  position: relative;
}
.switch-and-txt-wrapper .switch-box label .switch:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #E2E5EF;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.switch-and-txt-wrapper .switch-box input:checked + label .switch {
  background-color: #ED2F2C;
}
.switch-and-txt-wrapper .switch-box input:checked + label .switch:after {
  left: 27px;
  border: 1px solid #ED2F2C;
  transition: all 0.2s;
}

.link-share {
  color: #ED2F2C;
  text-decoration: underline;
}

.subscription-group-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-height: 100dvh;
}
@media screen and (max-width: 960px) {
  .subscription-group-wrapper {
    flex-direction: column;
    min-height: auto;
  }
}
.subscription-group-wrapper .subscription-log-wrapper {
  width: 50%;
  padding: 40px 20px;
  background-color: #0A0A0A;
}
@media screen and (max-width: 960px) {
  .subscription-group-wrapper .subscription-log-wrapper {
    width: 100%;
  }
}
.subscription-group-wrapper .subscription-log-wrapper .pagesize-log {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  .subscription-group-wrapper .subscription-log-wrapper .pagesize-log {
    max-width: 448px;
  }
}
.subscription-group-wrapper .subscription-log-wrapper .pageMenu-logo {
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .subscription-group-wrapper .subscription-log-wrapper .pageMenu-logo {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767.9px) {
  .subscription-group-wrapper .subscription-log-wrapper .pageMenu-logo {
    margin-bottom: 20px;
  }
}
.subscription-group-wrapper .subscription-log-wrapper .subscription-title {
  font-size: 1rem;
  font-weight: 500;
  color: #C0BDCC;
  margin-bottom: 20px;
}
.subscription-group-wrapper .subscription-log-wrapper .price-box {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  margin-bottom: 40px;
}
.subscription-group-wrapper .subscription-log-wrapper .price-box .price {
  font-size: 72px;
  line-height: 100%;
  color: #fff;
}
@media screen and (max-width: 374px) {
  .subscription-group-wrapper .subscription-log-wrapper .price-box .price {
    font-size: 68px;
  }
}
.subscription-group-wrapper .subscription-log-wrapper .price-box .unit {
  font-size: 1rem;
  line-height: 100%;
  color: #888888;
}
.subscription-group-wrapper .subscription-log-wrapper .currency-wrapper {
  margin-bottom: 8px;
}
.subscription-group-wrapper .subscription-log-wrapper .currency-wrapper .btn-box {
  width: 100%;
  gap: 20px;
}
.subscription-group-wrapper .subscription-log-wrapper .currency-wrapper .btn-currency {
  width: calc(50% - 10px);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  background-color: #3f3f3f;
  color: #FFFFFF;
  border-radius: 40px;
  font-weight: 500;
}
.subscription-group-wrapper .subscription-log-wrapper .currency-wrapper .btn-currency.on {
  background-color: #fff;
  color: #0A0A0A;
}
.subscription-group-wrapper .subscription-log-wrapper .currency-wrapper .btn-tw div {
  background-position: 0 50%;
  background-size: 20px auto;
  background-repeat: no-repeat;
}
.subscription-group-wrapper .subscription-log-wrapper .currency-wrapper .btn-us div {
  background-position: 0 50%;
  background-size: 20px auto;
  background-repeat: no-repeat;
}
.subscription-group-wrapper .subscription-log-wrapper .detail-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.subscription-group-wrapper .subscription-log-wrapper .detail-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.subscription-group-wrapper .subscription-log-wrapper .detail-box .detail-name-and-sub-box {
  color: #FFFFFF;
}
.subscription-group-wrapper .subscription-log-wrapper .detail-box .detail-sub {
  color: #888888;
}
.subscription-group-wrapper .subscription-log-wrapper .detail-box .detail-price {
  color: #FFFFFF;
}
.subscription-group-wrapper .subscription-form-wrapper {
  width: 50%;
  padding: 80px 20px;
}
@media screen and (max-width: 960px) {
  .subscription-group-wrapper .subscription-form-wrapper {
    width: 100%;
    padding: 40px 20px;
  }
}
.subscription-group-wrapper .subscription-form-wrapper .pagesize-form {
  max-width: 448px;
  margin-left: auto;
  margin-right: auto;
}
.subscription-group-wrapper .subscription-form-wrapper .subscription-sub-title {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 8px;
}
.subscription-group-wrapper .subscription-form-wrapper .info-mail-box {
  border: 1px solid #E2E5EF;
  padding: 16px;
  background-color: #F7F7F7;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  color: #4F5259;
  border-radius: 8px;
  margin-bottom: 24px;
}
.subscription-group-wrapper .subscription-form-wrapper .form-wrapper {
  box-shadow: 0 0 20px rgba(96, 73, 205, 0.1);
  border: 1px solid #E2E5EF;
  padding: 24px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 24px;
}
.subscription-group-wrapper .subscription-form-wrapper label {
  color: #4F5259;
  line-height: 1.5;
}
.subscription-group-wrapper .subscription-form-wrapper .form-title {
  font-size: 1.25rem;
  line-height: 2;
  color: #0A0A0A;
  font-weight: 500;
}
.subscription-group-wrapper .subscription-form-wrapper .icon-title {
  padding-left: 32px;
  font-size: 1.125rem;
  line-height: 1.875rem;
  font-weight: 500;
  background-image: url("../images/icon-cradit-card.svg");
  background-position: 0 calc(50% - 1px);
  background-size: 24px auto;
  background-repeat: no-repeat;
}
.subscription-group-wrapper .subscription-form-wrapper .input-txt-inner-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 4px;
}
.subscription-group-wrapper .subscription-form-wrapper .input-txt-inner-box input {
  height: 56px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid #E2E5EF;
}
.subscription-group-wrapper .subscription-form-wrapper .input-txt-inner-box .input-txt-more-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.subscription-group-wrapper .subscription-form-wrapper .input-txt-inner-box .input-txt-more-box input {
  width: calc((100% - 24px) / 4);
}
.subscription-group-wrapper .subscription-form-wrapper .expiry-and-cvc-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.subscription-group-wrapper .subscription-form-wrapper .expiry-and-cvc-wrapper .input-txt-inner-box {
  width: calc(50% - 6px);
}
.subscription-group-wrapper .subscription-form-wrapper .expiry-and-cvc-wrapper .input-txt-inner-box input {
  width: 100%;
}
.subscription-group-wrapper .subscription-form-wrapper .expiry-and-cvc-wrapper .input-txt-inner-box .input-icon {
  padding-right: 40px;
  background-image: url("../images/icon-cradit-card-2.svg");
  background-position: calc(100% - 16px) 50%;
  background-size: 24px auto;
  background-repeat: no-repeat;
}

.icon-and-alert-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
  color: #ED2F2C;
}
.icon-and-alert-box .icon-alert {
  width: 24px;
  height: 24px;
  background-image: url("../images/icon-alert.svg");
  background-position: center -1px;
  background-size: contain;
  background-repeat: no-repeat;
}

.bgi-box {
  width: 96px;
  height: 96px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
.bgi-box.shield {
  background-image: url(../images/icon-shield.svg);
}
.bgi-box.error {
  background-image: url(../images/icon-nok.svg);
}

.m-show {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .m-show {
    display: block;
  }
}

@media screen and (max-width: 767.9px) {
  .m-hide {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .web-hide {
    display: none;
  }
}
.color-primary {
  color: #ED2F2C;
}

.color-main {
  color: #C41919;
}

.color-up {
  color: #E13B3B;
}

.color-down {
  color: #4FBC63;
}

.color-link {
  color: #1A0DAB;
}

.color-gray {
  color: #636363;
}

.color-gray-light {
  color: #888888;
}

.color-txt-sub {
  color: #4F5259;
}

.color-txt {
  color: #0A0A0A;
}

.color-orange {
  color: #FF6B40;
}

.color-blue {
  color: #5B9CFF;
}

.color-black {
  color: #000000;
}

.color-blue-lo {
  color: #5B9CFF;
}

.fs-ss {
  font-size: 0.75rem;
  line-height: 1.5;
}

.fs-s {
  font-size: 0.875rem;
  line-height: 1.5;
}

.fs-m {
  font-size: 1rem;
  line-height: 1.5;
}

.fs-l {
  font-size: 1.125rem;
  line-height: 1.5;
}

.cut-text-5 {
  min-height: 7.5em;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 767.9px) {
  .cut-text-5 {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
  }
}

.text-under {
  text-decoration: underline;
}

.tL {
  text-align: left;
}

.tR {
  text-align: right;
}

.tC {
  text-align: center;
}

.tB {
  font-weight: bold;
}

.fw-mid {
  font-weight: 500;
}

.fw-bold {
  font-weight: 700;
}

@media screen and (max-width: 767.9px) {
  .m-tL {
    text-align: left;
  }
  .m-fw-m {
    font-weight: 400 !important;
  }
}
.underLine {
  text-decoration: underline;
}

.h-full {
  height: 100%;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.9;
  }
}

.btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
}

.btn-full {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-primary {
  height: 48px;
  background-color: #ED2F2C;
  color: #FFFFFF;
  border-radius: 48px;
}
@media screen and (min-width: 768px) {
  .btn-primary:hover {
    background-color: rgba(237, 47, 44, 0.9);
  }
}

.btn-read-more {
  background-color: #E9EBF0;
  font-size: 1rem;
  line-height: 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  padding: 12px 20px;
}
.btn-read-more .icon {
  width: 16px;
  height: 16px;
  background-image: url("../images/icon-read-more.svg");
  background-position: center;
  background-size: 16px auto;
  background-repeat: no-repeat;
}

.mar-center {
  margin: 0 auto;
}

.ml-auto {
  margin-left: auto;
}

.mt-2x {
  margin-top: 8px;
}

.mt-6x {
  margin-top: 24px;
}

.mt-10x {
  margin-top: 40px;
}

.mr-auto {
  margin-right: auto;
}

.mr-x {
  margin-right: 4px;
}

.mr-10x {
  margin-right: 40px;
}

.mb-2x {
  margin-bottom: 8px;
}

.mb-3x {
  margin-bottom: 12px;
}

.mb-4x {
  margin-bottom: 16px;
}

.mb-5x {
  margin-bottom: 20px;
}

.mb-6x {
  margin-bottom: 24px;
}

.mb-8x {
  margin-bottom: 32px;
}

.mb-10x {
  margin-bottom: 40px;
}

.mb-12x {
  margin-bottom: 48px;
}

.mb-20x {
  margin-bottom: 80px;
}

.p-4x {
  padding: 16px;
}

.pt-x {
  padding-top: 4px;
}

.pt-5x {
  padding-top: 20px;
}

.pt-10x {
  padding-top: 40px;
}
@media screen and (max-width: 767.9px) {
  .pt-10x {
    padding-top: 20px;
  }
}

.pt-20x {
  padding-top: 80px;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-20x {
  padding-bottom: 80px;
}

.gap-2x {
  gap: 8px;
}

.gap-3x {
  gap: 12px;
}

.gap-4x {
  gap: 16px;
}

.gap-5x {
  gap: 20px;
}
@media screen and (max-width: 767.9px) {
  .gap-5x {
    gap: 12px;
  }
}

.gap-15x {
  gap: 60px;
}

@media screen and (max-width: 767.9px) {
  .m-gap-5x {
    gap: 20px;
  }
}

.w-full {
  width: 100%;
}

.start-start {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.start-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.start-stretch {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}

.center-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.end-center {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.col-center-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flex-0 {
  flex: 0 0 auto;
}

.flex-1 {
  flex: 1 1 auto;
}

.flex-wrap {
  flex-wrap: wrap;
}

.img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.img-box img {
  display: block;
  width: 100%;
  height: auto;
}
.img-box .img-h {
  display: block;
  height: 100%;
  width: auto;
}

hr {
  margin: 0 0 20px 0;
  border: 0;
  width: 100%;
  height: 1px;
  background-color: #E2E5EF;
}

.tab-box {
  border-bottom: 1px solid #E2E5EF;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.tab-box .tab-link {
  display: block;
  color: rgba(79, 82, 89, 0.5);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  padding: 0 8px 8px 8px;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .tab-box .tab-link:hover {
    color: #ED2F2C;
    transition: all 0.2s;
  }
}
.tab-box .tab-link.on {
  color: #0A0A0A;
  border-color: #0A0A0A;
  font-weight: 700;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .tab-box .tab-link.on:hover {
    color: #ED2F2C;
    border-color: #ED2F2C;
  }
}

.popup-wrapper {
  width: 100%;
  height: 100dvh;
  padding: 0 20px;
  background-color: rgba(25, 24, 24, 0.6);
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 560px) {
  .popup-wrapper {
    padding: 0 8px;
  }
}
.popup-wrapper .popup-box {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  border-radius: 8px;
}
.popup-wrapper .popup-box.l {
  max-width: 480px;
}
.popup-wrapper .popup-box.xl {
  max-width: 700px;
}
.popup-wrapper .popup-box .popup-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 8px 0;
}
.popup-wrapper .popup-box .popup-head .btn-close {
  margin-left: auto;
  width: 40px;
  height: 40px;
  background-image: url("../images/btn-popup-close.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.popup-wrapper .popup-box .popup-body {
  padding: 40px;
  max-height: calc(100dvh - 160px);
  overflow-y: auto;
  background-color: #fff;
  border-radius: 8px;
}
@media screen and (max-width: 767.9px) {
  .popup-wrapper .popup-box .popup-body {
    padding: 12px;
  }
}
.popup-wrapper .popup-box .popup-body .description-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #ED2F2C;
  gap: 4px;
}
.popup-wrapper .popup-box .popup-body .description-box .img-info {
  width: 24px;
  height: 24px;
  background-image: url("../images/icon-attention.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.popup-wrapper .popup-box .popup-body .title-popup {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.popup-wrapper .popup-box .popup-body .title-description {
  font-size: 1rem;
  color: #4F5259;
  text-align: center;
}
.popup-wrapper .popup-box .popup-body .btn {
  border: 0;
}

.lobster-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1px;
  background-color: #eee;
}
.lobster-info .info-1 {
  width: calc(50% - 1px);
  aspect-ratio: 340/200;
  background: #fff url(../images/info-1.png) no-repeat center center/cover;
}
.lobster-info .info-2 {
  width: 50%;
  aspect-ratio: 340/200;
  background: #fff url(../images/info-2.png) no-repeat center center/cover;
}
.lobster-info .info-3 {
  width: calc(50% - 1px);
  aspect-ratio: 340/200;
  background: #fff url(../images/info-3.png) no-repeat center center/cover;
}
.lobster-info .info-4 {
  width: 50%;
  aspect-ratio: 340/200;
  background: #fff url(../images/info-4.png) no-repeat center center/cover;
}
@media screen and (max-width: 767.9px) {
  .lobster-info > div {
    width: 100% !important;
  }
}

.input-txt-box {
  border: 1px solid #E2E5EF;
  border-radius: 8px;
  padding: 0 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  position: relative;
}
@media screen and (max-width: 414px) {
  .input-txt-box {
    padding: 0 8px;
    gap: 8px;
  }
}
.input-txt-box label {
  flex: 0 0 auto;
}
@media screen and (max-width: 414px) {
  .input-txt-box label {
    font-size: 0.875rem;
  }
}
.input-txt-box input {
  flex: 1 1 auto;
  height: 56px;
}
.input-txt-box input::placeholder {
  color: #C0BDCC;
}
.input-txt-box .btn-eye {
  display: block;
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 1023.9px) {
  .input-txt-box .btn-eye {
    position: absolute;
  }
  .input-txt-box .btn-eye::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 36px;
    min-height: 36px;
  }
}
.input-txt-box .btn-eye {
  background-image: url("../images/btn-eye.svg");
  background-position: center;
  background-size: 30px auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  z-index: 1;
}
@media screen and (max-width: 414px) {
  .input-txt-box .btn-eye {
    right: 0;
    background-size: 24px auto;
  }
}
.input-txt-box .btn-eye.off {
  background-image: url("../images/btn-eye-off.svg");
}
.input-txt-box .btn-verify {
  color: #fff;
  background-color: #0A0A0A;
  border-radius: 8px;
  padding: 4px 14px;
}

.input-txt-col-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.input-txt-col-box label {
  font-size: 1rem;
  line-height: 1.5;
  flex: 0 0 auto;
}
.input-txt-col-box input {
  width: 240PX;
  height: 48px;
  padding: 0 10px;
  font-size: 1.125rem;
  color: #0A0A0A;
  flex: 1 1 auto;
  font-weight: 700;
  border: 1px solid #E2E5EF;
  border-radius: 4px;
}

.input-txt-box.in-popup {
  width: 360px;
}

.input-checkbox-box {
  position: relative;
}
.input-checkbox-box input {
  width: 16px;
  height: 16px;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.input-checkbox-box label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.input-checkbox-box label span {
  width: 16px;
  height: 16px;
  border: 1px solid #E2E5EF;
  border-radius: 2px;
  background-color: #fff;
  margin-bottom: 4px;
}
.input-checkbox-box input:checked + label span {
  background-image: url("../images/icon-checkbox-check.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.input-switch-box {
  position: relative;
}
.input-switch-box input[type=checkbox] {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
}
.input-switch-box label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  line-height: 1.5;
  color: #0A0A0A;
}
.input-switch-box label span {
  top: 2px;
  width: 44px;
  height: 24px;
  background: #E2E5EF;
  border-radius: 30px;
  border-color: transparent;
  position: relative;
}
.input-switch-box label span:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #aaa;
  border-radius: 50%;
  left: 2px;
  top: 2px;
  transition: 0.2s all ease-in-out;
}
.input-switch-box input:checked + label span {
  background-color: #ED2F2C;
}
.input-switch-box input:checked + label span:before {
  background-color: #FFFFFF;
  left: 22px;
}

.select-box select {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  border: 1px solid #E2E5EF;
  padding-left: 16px;
  padding-right: 40px;
  background-image: url("../images/icon-down.svg");
  background-position: calc(100% - 16px) 50%;
  background-size: 16px auto;
  background-repeat: no-repeat;
  background-color: transparent;
  color: #0A0A0A;
}

.loading-wrapper {
  width: 100dvw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  overflow: hidden;
}
.loading-wrapper .loading-box {
  width: 100px;
  height: 100px;
  background-image: url("../images/loading.gif");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}/*# sourceMappingURL=login.css.map */