/* =======================
VARIABLES
* ======================= */
/* colors */
/* breakpoints */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Sans:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap");
/* =======================
 * Functions CLASS
 * ======================= */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #000000;
}

p {
  font-size: 18px;
}

ul {
  list-style: none;
}

input,
textarea {
  font-family: "Noto Sans JP", sans-serif;
}

.clearfix::before, .clearfix::after {
  content: "";
  display: table;
}
.clearfix::after {
  clear: both;
}

/*====================================================================
siteHeader
====================================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 390px;
  z-index: 4;
  background-color: #1f4f77;
}
.header__container {
  margin: 0 auto;
  padding: 22px 15px 13px 15px;
  width: 100%;
  max-width: 390px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}
@media screen and (max-width: 375px) {
  .header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.header__logo {
  margin-right: 32px;
  display: block;
  width: 100%;
  max-width: 150px;
  font-size: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 1;
}
@media screen and (max-width: 375px) {
  .header__logo {
    max-width: 33vw;
  }
}
.header__logo:hover {
  opacity: 0.7;
}
.header__languageToggle {
  margin-right: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.header__languageToggleItm {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 38px;
  height: 21px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #848686;
}
.header__languageToggleItm:hover {
  opacity: 0.7;
}
@media screen and (max-width: 355px) {
  .header__languageToggleItm {
    width: 34px;
    height: 17px;
  }
}
.header__languageToggleItm.is-active {
  background-color: #a9000d;
}
.header__languageToggleItm:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.header__languageToggleItm:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.header__logoutBtn {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header__logoutBtn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 355px) {
  .header__logoutBtn {
    font-size: 11px;
  }
}
.header__logoutBtn img {
  position: absolute;
  top: 50%;
  left: -18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-right: 5px;
  width: 100%;
  max-width: 20px;
}

/*====================================================================
MENU
====================================================================*/
body {
  position: relative;
}

.navPanel {
  margin: auto;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 768px;
  -webkit-box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.5);
}
.navPanel__container {
  padding: 9px 0 11px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.navPanel__itms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 46px;
}
.navPanel__itm {
  display: block;
  cursor: pointer;
}
.navPanel__itm.menu-is-active .navPanel__itmIcon .nav-icon-hover, .navPanel__itm:hover .navPanel__itmIcon .nav-icon-hover {
  opacity: 1;
}
.navPanel__itm.menu-is-active .navPanel__itmLabel, .navPanel__itm:hover .navPanel__itmLabel {
  color: #386fb6;
}
.navPanel__itmIcon {
  margin: 0 auto 6px;
  max-width: 26px;
  position: relative;
}
.navPanel__itmIcon img {
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.navPanel__itmIcon img.nav-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
}
.navPanel__itmLabel {
  font-size: 10.4px;
  font-weight: 400;
  letter-spacing: 0;
  color: #848686;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.adicoMenu {
  margin: 0 auto 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 768px;
  width: 100%;
  height: 100%;
  background-color: #638cc7;
  display: none;
}
.adicoMenu__container {
  margin: 0 auto;
  padding: 102px 27px 161px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  height: 100%;
}
.adicoMenu__logo {
  margin: 0 auto 22px;
  width: 100%;
  max-width: 110px;
  display: block;
}
.adicoMenu__menuItms {
  display: block;
}
.adicoMenu__menuItm {
  padding: 14px 8px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 0.5px solid #fff;
}
.adicoMenu__menuItm:first-child {
  border-top: 0.5px solid #fff;
}
.adicoMenu__menuItm:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 21px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5px;
  height: 9px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/common/icon-menu-item-arrow.png);
}
.adicoMenu__menuItmIcon {
  max-width: 31px;
}
.adicoMenu__menuItmLabel {
  margin-left: 20px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
}

/*====================================================================
COMMON LAYOUT
====================================================================*/
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}

body {
  margin: auto;
  width: 100%;
  max-width: 768px;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  overflow-x: hidden;
  line-height: 1;
}
body.menu-is-active {
  overflow: hidden;
}
body.menu-is-active .header__logo {
  color: #fff;
}
body.menu-is-active .header__menuBar {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
    overflow-x: hidden;
  }
}

/*-----------------------------------------------
PC/SP
------------------------------------------------*/
.m-pcDb {
  display: block;
}

.m-pcDib {
  display: inline-block;
}

.m-pcDin {
  display: inline;
}

.m-pcDf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.m-pcDt {
  display: table;
}

.m-pcDtc {
  display: table-cell;
}

.m-spDb,
.m-spDib,
.m-spDin,
.m-spDf,
.m-spDt,
.m-spDtc {
  display: none;
}

@media screen and (max-width: 767px) {
  .m-pcDb,
  .m-pcDib,
  .m-pcDin,
  .m-pcDf,
  .m-pcDt,
  .m-pcDtc {
    display: none;
  }
  .m-spDb {
    display: block;
  }
  .m-spDib {
    display: inline-block;
  }
  .m-spDin {
    display: inline;
  }
  .m-spDf {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .m-spDt {
    display: table;
  }
  .m-spDtc {
    display: table-cell;
  }
}
/*-----------------------------------------------
Container
------------------------------------------------*/
.siteContainer {
  margin: auto;
  width: 100%;
  max-width: 768px;
  position: relative;
  background-color: #1f4f77;
}
/*-----------------------------------------------
Anchor
------------------------------------------------*/
.anchor {
  position: relative;
}
.anchor__box {
  margin: auto;
  position: absolute;
  top: -2.9411764706vw;
  left: 0;
  right: 0;
  width: 2.9411764706vw;
  height: 2.9411764706vw;
  outline: none;
  pointer-events: none;
  cursor: default;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .anchor__box {
    top: -15.625vw;
    left: 0;
    right: 0;
    width: 15.625vw;
    height: 15.625vw;
  }
}

/*-----------------------------------------------
Yellow Tag Label
------------------------------------------------*/
.yellow__tagLabel {
  width: 140px;
  height: 20px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  border-radius: 30px;
  color: #000000;
  background-color: #f5a700;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.yellow__tagLabel.transfer-tag-2 {
  width: 136px;
}

/*-----------------------------------------------
Form Button
------------------------------------------------*/
.adico__processBtn {
  display: block;
  width: 100%;
  max-width: 380px;
  height: 32px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 5px;
  background-color: #386fb6;
  color: #fff;
  border: 0;
  -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

/*-----------------------------------------------
Form Button
------------------------------------------------*/
/*-----------------------------------------------
Form Button
------------------------------------------------*/
.template-page main {
  min-height: calc(100vh - 70px);
  background-color: #638cc7;
}

/*====================================================================
Login Page PC
====================================================================*/
.loginPage {
  margin: 0 auto;
  padding: 75px 33px 102px;
  width: 100%;
  background-color: #1f4f77;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.loginPage__logo {
  margin: 0 auto;
  width: 100%;
  max-width: 166px;
  font-size: 0;
}
.loginPage__walletHeading {
  margin: 58px auto 0;
  width: 100%;
  font-size: 0;
  position: relative;
}
.loginPage__walletHeading:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.loginPage__walletHeading__img {
  margin: auto;
  padding: 28px 0 0;
  width: 100%;
  max-width: 250px;
  display: block;
}
.loginPage__form {
  margin: 70px auto 0;
  width: 100%;
  max-width: 224px;
}
.loginPage__formItems {
  display: block;
}
.loginPage__formItem {
  margin: 0 auto 23px;
}
.loginPage__formItem:last-child {
  margin-bottom: 0;
}
.loginPage__formField {
  padding: 12px 14px 12px;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  border-radius: 6px;
  border: 0;
  color: #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: 0;
  -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}
.loginPage__formField::-webkit-input-placeholder {
  font-size: 14px;
  color: #969898;
}
.loginPage__formField::-moz-placeholder {
  font-size: 14px;
  color: #969898;
}
.loginPage__formField:-ms-input-placeholder {
  font-size: 14px;
  color: #969898;
}
.loginPage__formField::-ms-input-placeholder {
  font-size: 14px;
  color: #969898;
}
.loginPage__formField::placeholder {
  font-size: 14px;
  color: #969898;
}
.loginPage__forgotAccount {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
.loginPage__forgotAccount a {
  color: #3a6cb3;
}
.loginPage__submit {
  margin: 20px auto 44px;
  max-width: 160px;
}
.loginPage__footerLogo {
  margin: 0 auto;
  width: 100%;
  max-width: 145px;
}

/*====================================================================
Login Page SP
====================================================================*/
/*====================================================================
Top Page PC
====================================================================*/
.currentBranch {
  margin: 0 auto;
  width: 100%;
}
.currentBranch__container {
  padding: 18px 0 20px;
  width: 100%;
  background-color: #181b2c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.currentBranch__currentCard {
  width: 100%;
  max-width: 172px;
}
.currentBranch__currentCardHeading {
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
}
.currentBranch__currentCardPreview {
  width: 100%;
}

.totalValue {
  margin: 0 auto;
  width: 100%;
}
.totalValue__container {
  padding: 38px 0 42px;
  display: block;
}
.totalValue__heading {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
}
.totalValue__amount {
  margin-bottom: 16px;
  font-family: "Oswald", sans-serif;
  font-size: 47px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: normal;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.totalValue__amount span {
  margin-left: 0;
  padding-bottom: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}
.totalValue__ticketApplication__wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 278px;
}
.totalValue__ticketApplicationHeading {
  margin: 0 auto 7px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
}
.totalValue__ticketApplication {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.totalValue input {
  padding: 8px 12px;
  width: 100%;
  max-width: 126px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  border: 0;
  outline: 0;
}
.totalValue input::-webkit-input-placeholder {
  color: #9b9c9c;
}
.totalValue input::-moz-placeholder {
  color: #9b9c9c;
}
.totalValue input:-ms-input-placeholder {
  color: #9b9c9c;
}
.totalValue input::-ms-input-placeholder {
  color: #9b9c9c;
}
.totalValue input::placeholder {
  color: #9b9c9c;
}
.totalValue__ticketApplication__sheet {
  margin: 0 18px 0 6px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
}
.totalValue button {
  max-width: 114px;
}

.dashboardMenu {
  margin: 0 auto;
  width: 100%;
  padding: 40px 18px 44px;
  width: 100%;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
}
.dashboardMenu__container {
  margin: auto;
  display: block;
}
.dashboardMenu__items {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px 13px;
}
@media screen and (max-width: 375px) {
  .dashboardMenu__items {
    gap: 40px 8px;
  }
}
.dashboardMenu__itm {
  width: calc(25% - 13px);
  display: block;
}
@media screen and (max-width: 375px) {
  .dashboardMenu__itm {
    width: calc(25% - 8px);
  }
}
.dashboardMenu__itmIcon {
  width: 100%;
}
.dashboardMenu__itmIcon img {
  margin: auto;
  max-width: 30px;
  display: block;
}
.dashboardMenu__itmTtl {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
}
@media screen and (max-width: 375px) {
  .dashboardMenu__itmTtl {
    font-size: 10px;
  }
}

.currentBranchAndStore {
  margin: 0 auto;
  width: 100%;
  background-color: #181b2c;
}
.currentBranchAndStore__container {
  margin: 0 auto;
  padding: 23px 0 34px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
}
.currentBranchAndStore__cards {
  padding: 0 7px;
  display: block;
  width: 100%;
  max-width: 170px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.currentBranchAndStore__cards:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #6e7070;
}
.currentBranchAndStore__cardsHeading {
  margin: 0 auto 34px;
}
.currentBranchAndStore__cardItms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
}
.currentBranchAndStore__cardItm {
  padding: 5px 3px 0;
  width: 100%;
  max-width: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.currentBranchAndStore__cardItm.is-current:after {
  margin: auto;
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  right: 0;
  width: 9px;
  height: 21px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/common/icon-user-active.png);
}
.currentBranchAndStore__cardItm.silver--card {
  background-color: #a2a3a3;
  height: 21px;
}
.currentBranchAndStore__cardItm.gold--card {
  background-color: #d1bc6e;
  height: 32px;
}
.currentBranchAndStore__cardItm.platinum--card {
  background-color: #8099b1;
  height: 43px;
}
.currentBranchAndStore__cardItm.black--card {
  background-color: #3b3837;
  height: 54px;
}
.currentBranchAndStore__cardItm.diamond--card {
  background-color: #1c83b0;
  height: 70px;
}
.currentBranchAndStore__cardItm figure {
  font-size: 0;
}
.currentBranchAndStore__cardItm__label {
  margin: auto;
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
}

.mvpQuotation {
  margin: 0 auto;
  padding: 0 18px 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.mvpQuotation__container {
  padding: 23px 0 28px;
  width: 100%;
}
.mvpQuotation .yellow__tagLabel {
  margin: 0 auto 0;
}
.mvpQuotation__rest {
  margin: 15px auto 5px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  text-align: center;
}
.mvpQuotation__ranking {
  margin: 0 auto 15px;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 47px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #fff;
  position: relative;
  display: table;
}
.mvpQuotation__ranking span {
  position: absolute;
  bottom: 0;
  right: -20px;
  font-size: 13px;
  font-weight: 400;
}
.mvpQuotation__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
}
.mvpQuotation__block {
  padding-bottom: 10px;
  width: 100%;
  max-width: 155px;
  background-color: #fff;
  border-radius: 7px;
  overflow: hidden;
}
.mvpQuotation__heading {
  padding: 6px 0 5px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
  background-color: #386fb6;
  text-align: center;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.mvpQuotation__qtLabel {
  margin: 8px auto 3px;
  padding: 4px 0;
  width: 100%;
  max-width: 85px;
  min-height: 17px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  background-color: #f5a700;
  border-radius: 20px;
  text-align: center;
}
.mvpQuotation__qtLabel.empty {
  background-color: transparent;
}
.mvpQuotation__val {
  margin: 0 auto 10px;
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #386fb6;
  text-align: center;
  position: relative;
  display: table;
}
.mvpQuotation__val span {
  position: absolute;
  bottom: 0;
  right: -10px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}
.mvpQuotation__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 14px;
}
.mvpQuotation__tag {
  width: 100%;
  max-width: 27px;
  height: 26px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #000000;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #f5a700;
  border-radius: 50%;
}

.ownedNft {
  margin: 0 auto;
  width: 100%;
  background-color: #fff;
  position: relative;
}
.ownedNft__container {
  margin: 0 auto;
  padding: 22px 0 36px;
  width: 100%;
  max-width: 290px;
}
.ownedNft__heading {
  margin: 0 auto 0;
}
.ownedNft__barGraph {
  margin: 0 auto;
  width: 100%;
  max-width: 256px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}
.ownedNft__barGraph:after {
  content: "";
  position: absolute;
  bottom: 17px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #6e7070;
}
.ownedNft__barGraph__itm {
  width: 100%;
  max-width: 50px;
  text-align: center;
}
.ownedNft__barGraph__itm.silver--card .ownedNft__barGraph__itmGraph {
  background-color: #a2a3a3;
  height: 40px;
}
.ownedNft__barGraph__itm.gold--card .ownedNft__barGraph__itmGraph {
  background-color: #d1bc6e;
  height: 56px;
}
.ownedNft__barGraph__itm.platinum--card .ownedNft__barGraph__itmGraph {
  background-color: #8099b1;
  height: 71px;
}
.ownedNft__barGraph__itm.black--card .ownedNft__barGraph__itmGraph {
  background-color: #3b3837;
  height: 86px;
}
.ownedNft__barGraph__itm.diamond--card .ownedNft__barGraph__itmGraph {
  background-color: #1c83b0;
  height: 106px;
}
.ownedNft__barGraph__itmVal {
  margin-bottom: 9px;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #386fb6;
}
.ownedNft__barGraph__itmGraph {
  margin: 0 auto 8px;
  width: 100%;
  max-width: 31px;
}
.ownedNft__barGraph__itmLabel {
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #386fb6;
}
.ownedNft__statsItms {
  margin: 36px auto 36px;
  width: 100%;
  max-width: 288px;
  display: block;
}
.ownedNft__statsItm {
  margin-bottom: 22px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.ownedNft__statsItm:last-child {
  margin-bottom: 0;
}
.ownedNft__statsItm__card {
  margin-right: 28px;
  display: block;
}
.ownedNft__statsItm__card figure {
  margin: 0 auto 6px;
  width: 100%;
  max-width: 50px;
}
.ownedNft__statsItm__card p {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #969898;
  text-align: center;
}
.ownedNft__statsItm__amount {
  width: 86px;
  height: 86px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/common/img-progress-0.png);
}
.ownedNft__statsItm__amount.today {
  margin-right: 32px;
}
.ownedNft__statsItm__amount.empty {
  background-image: url(../images/common/img-progress-0.png);
}
.ownedNft__statsItm__amount.progress-7 {
  background-image: url(../images/common/img-progress-7.png);
}
.ownedNft__statsItm__amount.progress-36 {
  background-image: url(../images/common/img-progress-36.png);
}
.ownedNft__statsItm__amountTtl {
  margin-bottom: 8px;
  font-size: 8px;
  font-weight: 400;
  color: #969898;
}
.ownedNft__statsItm__amountVal {
  margin-bottom: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #f5a700;
}
.ownedNft__statsItm__amountLabel {
  font-size: 8px;
  font-weight: 400;
  color: #969898;
}

/*====================================================================
Tickets Page PC
====================================================================*/
.tickets {
  margin: 0 auto;
  width: 100%;
}
.tickets__container {
  padding: 20px 0 33px;
  display: block;
  background-color: #181b2c;
}
.tickets .yellow__tagLabel {
  margin: 0 30px 0 30px;
}
.tickets__currentTicketsHeading {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
}
.tickets__currentTicketsAmount {
  margin: 0 auto 16px;
  font-family: "Oswald", sans-serif;
  font-size: 57px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: normal;
  color: #fff;
  text-align: center;
  display: table;
  position: relative;
}
.tickets__currentTicketsAmount span {
  position: absolute;
  bottom: 0;
  right: -10px;
  padding-bottom: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}
.tickets__applicationWrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 270px;
}
.tickets__applicationHeading {
  margin: 0 auto 8px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
}
.tickets__application {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.tickets__applicationField {
  padding: 8px 12px;
  width: 100%;
  max-width: 251px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  border: 0;
  outline: 0;
}
.tickets__applicationField::-webkit-input-placeholder {
  color: #9b9c9c;
}
.tickets__applicationField::-moz-placeholder {
  color: #9b9c9c;
}
.tickets__applicationField:-ms-input-placeholder {
  color: #9b9c9c;
}
.tickets__applicationField::-ms-input-placeholder {
  color: #9b9c9c;
}
.tickets__applicationField::placeholder {
  color: #9b9c9c;
}
.tickets__applicationSheetLabel {
  margin: 0 0 0 6px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
}
.tickets__applicationButton {
  margin: 18px auto 0;
  display: block;
  width: 100%;
  max-width: 160px;
  height: 32px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 5px;
  background-color: #386fb6;
  color: #fff;
  border: 0;
  -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}
.tickets__transfer {
  margin: 0 auto;
  padding: 27px 0 243px;
  width: 100%;
  background-color: #1f4f77;
}
.tickets__transferFields {
  margin: auto;
  width: 100%;
  max-width: 252px;
  display: block;
}
.tickets__transferField {
  margin-bottom: 26px;
  display: block;
  position: relative;
}
.tickets__transferField:last-child {
  margin-bottom: 0;
}
.tickets__transferField span {
  position: absolute;
  right: -16px;
  bottom: 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
}
.tickets__transferFieldLabel {
  margin-bottom: 7px;
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
}
.tickets__transferFieldInput {
  padding: 7px 12px;
  width: 100%;
  max-width: 251px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  border: 0;
  outline: 0;
}
.tickets__transferFieldInput::-webkit-input-placeholder {
  color: #9b9c9c;
}
.tickets__transferFieldInput::-moz-placeholder {
  color: #9b9c9c;
}
.tickets__transferFieldInput:-ms-input-placeholder {
  color: #9b9c9c;
}
.tickets__transferFieldInput::-ms-input-placeholder {
  color: #9b9c9c;
}
.tickets__transferFieldInput::placeholder {
  color: #9b9c9c;
}
.tickets__transferButton {
  margin: 18px auto 0;
  display: block;
  width: 100%;
  max-width: 160px;
  height: 32px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 5px;
  background-color: #386fb6;
  color: #fff;
  border: 0;
  -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

/*====================================================================
Purchase Branch Page PC
====================================================================*/
.currentBranchPurchase {
  margin: 0 auto;
  width: 100%;
}
.currentBranchPurchase__container {
  padding: 18px 0 20px;
  width: 100%;
  background-color: #181b2c;
  display: block;
}
.currentBranchPurchase .yellow__tagLabel {
  margin: 0 auto 17px;
}
.currentBranchPurchase__currentCard {
  margin: auto;
  width: 100%;
  max-width: 247px;
  text-align: center;
}
.currentBranchPurchase__currentCardHeading {
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
}
.currentBranchPurchase__currentCardPreview {
  width: 100%;
}
.currentBranchPurchase__cardLabel {
  margin-top: 10px;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #fff;
}

.branchGraphPurchase {
  margin: 0 auto;
  padding: 25px 0 161px;
  width: 100%;
  background-color: #fff;
  position: relative;
}
.branchGraphPurchase__container {
  margin: 0 auto;
  padding: 0 0 36px;
  width: 100%;
  max-width: 335px;
}
.branchGraphPurchase__heading {
  margin: 0 auto 0;
}
.branchGraphPurchase__barGraph {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  gap: 11px;
}

/* ここがライン？
.branchGraphPurchase__barGraph:after {
  content: "";
  position: absolute;
  bottom: 68px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #6e7070;
}
*/
.branchGraphPurchase__itm {
  width: 100%;
  max-width: 55px;
  text-align: center;
  position: relative;
}
.branchGraphPurchase__itm.is-current:after {
  margin: auto;
  content: "";
  position: absolute;
  top: -70px;
  left: 0;
  right: 0;
  width: 18px;
  height: 43px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/common/icon-user-active.png);
}
.branchGraphPurchase__itm.silver--card .branchGraphPurchase__itmGraph {
  background-color: #a2a3a3;
  height: 40px;
}
.branchGraphPurchase__itm.gold--card .branchGraphPurchase__itmGraph {
  background-color: #d1bc6e;
  height: 64px;
}
.branchGraphPurchase__itm.platinum--card .branchGraphPurchase__itmGraph {
  background-color: #8099b1;
  height: 86px;
}
.branchGraphPurchase__itm.black--card .branchGraphPurchase__itmGraph {
  background-color: #3b3837;
  height: 110px;
}
.branchGraphPurchase__itm.diamond--card .branchGraphPurchase__itmGraph {
  background-color: #1c83b0;
  height: 137px;
}
.branchGraphPurchase__itmCurrentTag {
  margin: 0 auto 54px;
  font-size: 14px;
  font-weight: 400;
  color: #386fb6;
  display: table;
}
.branchGraphPurchase__itmCurrentTag.silver-card-active {
  padding-right: 260px;
}
.branchGraphPurchase__itmCurrentTag.gold-card-active {
  padding-right: 130px;
}
.branchGraphPurchase__itmCurrentTag.platinum-card-active {
  text-align: center;
}
.branchGraphPurchase__itmCurrentTag.black-card-active {
  padding-left: 125px;
}
.branchGraphPurchase__itmCurrentTag.diamond-card-active {
  padding-left: 256px;
}
.branchGraphPurchase__itmVal {
  margin: auto;
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-bottom: 9px;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
}
@media screen and (max-width: 340px) {
  .branchGraphPurchase__itmVal {
    top: -22px;
    font-size: 13px;
  }
}
.branchGraphPurchase__itmGraph {
  margin: 0 auto 8px;
  width: 100%;
  max-width: 50px;
}
.branchGraphPurchase__itmLabel {
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #386fb6;
}
.branchGraphPurchase__itmBuyBtn {
  margin: 7px auto 0;
  width: 100%;
  max-width: 47px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  background-color: #386fb6;
  border-radius: 5px;
  border: 0;
  -webkit-box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.3);
}

/*====================================================================
MVP Page PC
====================================================================*/
.mvp {
  margin: 0 auto;
  width: 100%;
}
.mvp__container {
  padding: 27px 0 25px;
  width: 100%;
  background-color: #181b2c;
  display: block;
  position: relative;
}
.mvp__remainingTag {
  position: absolute;
  top: 0;
  right: 15px;
  padding: 9px 0 12px 15px;
  width: 100%;
  max-width: 70px;
  height: 61px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #80b60a;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.mvp__remainingTagLabel {
  margin-bottom: 3px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
}
.mvp__remainingTagVal {
  font-family: "Oswald", sans-serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #fff;
}
.mvp__remainingTagVal span {
  font-size: 13px;
}
.mvp .yellow__tagLabel {
  margin: 0 auto 17px;
}
.mvp__qLabel {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
.mvp__statsWrapper {
  margin: 5px auto 0;
  padding: 0 20px 8px;
  width: 100%;
  max-width: 226px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-bottom: 1px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.mvp__statsWrapper:after {
  margin: 0 auto;
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  width: 3px;
  height: 1px;
  background-color: #fff;
}
.mvp__statsItm {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  width: 55px;
  position: relative;
}
.mvp__statsItm:after {
  margin: 0 auto;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
}
.mvp__levels {
  margin: 0 auto;
  padding: 28px 0 32px;
  width: 100%;
}
.mvp__levels.alternate {
  padding-bottom: 165px;
  background-color: #fff;
}
.mvp__levels.alternate .mvp__levelsHeading {
  max-width: 270px;
  color: #386fb6;
}
.mvp__levels.alternate .mvp__levelsHeading span {
  letter-spacing: 0;
}
.mvp__levels.alternate .mvp__levelsHeading span.percentage {
  top: 35px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  left: auto;
  right: 85px;
  font-size: 20px;
  font-weight: bold;
}
.mvp__levels.alternate .mvp__levelsItm__val {
  color: #386fb6;
}
.mvp__levelsHeading {
  margin: 0 auto 6px;
  width: 100%;
  max-width: 220px;
  font-family: "Oswald", sans-serif;
  font-size: 58px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #fff;
  position: relative;
  text-align: center;
}
.mvp__levelsHeading span {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
}
.mvp__levelsPath {
  margin: 0 auto;
  width: 100%;
  max-width: 212px;
}
.mvp__levelsItms {
  margin: 0 auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 60px;
}
.mvp__levelsItm {
  display: block;
  position: relative;
  text-align: center;
}
.mvp__levelsItm__groupIcon {
  position: absolute;
  top: 3px;
  right: -25px;
  width: 100%;
  max-width: 28px;
}
.mvp__levelsItm__numbericTtl {
  margin: 8px auto 5px;
  display: block;
  width: 100%;
  max-width: 27px;
}
.mvp__levelsItm__val {
  margin-bottom: 9px;
  font-family: "Oswald", sans-serif;
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #f5a700;
}
.mvp__levelsItm__label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 14px;
  color: #fff;
}

/*====================================================================
Deposit Page PC
====================================================================*/
.deposit {
  margin: 0 auto;
  width: 100%;
}
.deposit__container {
  padding: 20px 0 54px;
  display: block;
  background-color: #181b2c;
}
.deposit .yellow__tagLabel {
  margin: 0 auto 20px;
}
.deposit__heading {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
  color: #fff;
  text-align: center;
}
.deposit__process {
  margin: 0 auto;
  padding: 27px 0 243px;
  width: 100%;
  background-color: #fff;
}
.deposit__processFields {
  margin: auto;
  width: 100%;
  max-width: 100%;
  display: block;
}
.deposit__processField {
  margin: 0 auto 26px;
  width: 100%;
  max-width: 252px;
  display: block;
  position: relative;
}
.deposit__processField.radio-button {
  padding: 0 7px;
  max-width: 284px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-bottom: 1px solid #000000;
  gap: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.deposit__processField.radio-button label {
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}
.deposit__processField.radio-button input {
  margin-right: 6px;
}
.deposit__processField.w-note {
  max-width: 100%;
}
.deposit__processField:last-child {
  margin-bottom: 0;
}
.deposit__processField span.sm-txt {
  position: absolute;
  right: -35px;
  bottom: 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
}
.deposit__processFieldNote {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 17.68px;
  color: #000000;
  text-align: center;
}
.deposit__processFieldNote span {
  color: #d60010;
}
.deposit__processFieldLabel {
  margin-bottom: 7px;
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
}
.deposit__processFieldInput {
  padding: 7px 12px;
  width: 100%;
  max-width: 251px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  background-color: #f0eeee;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  border: 0;
  outline: 0;
}
.deposit__processFieldInput::-webkit-input-placeholder {
  color: #9b9c9c;
}
.deposit__processFieldInput::-moz-placeholder {
  color: #9b9c9c;
}
.deposit__processFieldInput:-ms-input-placeholder {
  color: #9b9c9c;
}
.deposit__processFieldInput::-ms-input-placeholder {
  color: #9b9c9c;
}
.deposit__processFieldInput::placeholder {
  color: #9b9c9c;
}
.deposit__processButton {
  margin: 18px auto 0;
}

/*====================================================================
Withdrawal Page PC
====================================================================*/
.withdrawal {
  margin: 0 auto;
  width: 100%;
}
.withdrawal__container {
  padding: 20px 0 20px;
  display: block;
  background-color: #181b2c;
}
.withdrawal .yellow__tagLabel {
  margin: 0 auto 20px;
}
.withdrawal__heading {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
  color: #fff;
  text-align: center;
}
.withdrawal__amountHeading {
  margin: 0 auto;
  font-family: "Oswald", sans-serif;
  font-size: 57px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: normal;
  color: #fff;
  text-align: center;
  display: table;
  position: relative;
}
.withdrawal__amountHeading span {
  position: absolute;
  bottom: 0;
  right: -35px;
  padding-bottom: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}
.withdrawal__process {
  margin: 0 auto;
  padding: 27px 0 0;
  width: 100%;
  background-color: #fff;
}
.withdrawal__process.withdrawal-amount {
  padding-bottom: 22px;
  position: relative;
}
.withdrawal__process.withdrawal-amount:after {
  margin: auto;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 284px;
  height: 1px;
  background-color: #000000;
}
.withdrawal__process.withdrawal-amount .withdrawal__processFields {
  max-width: 284px;
}
.withdrawal__process.target-date {
  padding-top: 32px;
}
.withdrawal__process.target-date .withdrawal__processField {
  margin: 0 auto;
  width: 100%;
  max-width: 212px;
}
.withdrawal__processFields {
  margin: auto;
  width: 100%;
  max-width: 284px;
  display: block;
}
.withdrawal__processField {
  margin: 0 auto 26px;
  width: 100%;
  max-width: 252px;
  display: block;
  position: relative;
}
.withdrawal__processField:last-child {
  margin-bottom: 0;
}
.withdrawal__processField span.sm-txt {
  position: absolute;
  right: -35px;
  bottom: 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
}
.withdrawal__processFieldSelect {
  margin-bottom: 12px;
  position: relative;
}
.withdrawal__processFieldSelect:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background-color: #848686;
}
.withdrawal__processFieldSelect:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 3px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/common/icon-dropdown.png);
}
.withdrawal__processFieldSelect:last-child {
  margin-bottom: 0;
}
.withdrawal__processFieldSelect select {
  margin: 0 auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 9px 12px;
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  background-color: #f0eeee;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  border: 0;
  outline: 0;
}
.withdrawal__processFieldNote {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 17.68px;
  color: #000000;
  text-align: center;
}
.withdrawal__processFieldNote span {
  color: #d60010;
}
.withdrawal__processFieldLabel {
  margin-bottom: 7px;
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
}
.withdrawal__processFieldInput {
  padding: 7px 12px;
  width: 100%;
  max-width: 251px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  background-color: #f0eeee;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  border: 0;
  outline: 0;
}
.withdrawal__processFieldInput::-webkit-input-placeholder {
  color: #9b9c9c;
}
.withdrawal__processFieldInput::-moz-placeholder {
  color: #9b9c9c;
}
.withdrawal__processFieldInput:-ms-input-placeholder {
  color: #9b9c9c;
}
.withdrawal__processFieldInput::-ms-input-placeholder {
  color: #9b9c9c;
}
.withdrawal__processFieldInput::placeholder {
  color: #9b9c9c;
}
.withdrawal__processButton {
  margin: 18px auto 0;
}

/*====================================================================
transfer Page PC
====================================================================*/
.transfer {
  margin: 0 auto;
  width: 100%;
}
.transfer__container {
  padding: 20px 0 20px;
  display: block;
  background-color: #181b2c;
}
.transfer .yellow__tagLabel {
  margin: 0 auto 20px;
}
.transfer__heading {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
  color: #fff;
  text-align: center;
}
.transfer__amountHeading {
  margin: 0 auto;
  font-family: "Oswald", sans-serif;
  font-size: 57px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: normal;
  color: #fff;
  text-align: center;
  display: table;
  position: relative;
}
.transfer__amountHeading span {
  position: absolute;
  bottom: 0;
  right: -35px;
  padding-bottom: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}
.transfer__process {
  margin: 0 auto;
  padding: 27px 0 0;
  width: 100%;
  background-color: #fff;
}
.transfer__process.transfer-amount {
  padding-bottom: 22px;
  position: relative;
}
.transfer__process.transfer-amount:after {
  margin: auto;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 284px;
  height: 1px;
  background-color: #000000;
}
.transfer__process.transfer-amount .withdrawal__processFields {
  max-width: 284px;
}
.transfer__process.target-date {
  padding-top: 32px;
  padding-bottom: 100px;
}
.transfer__process.target-date .withdrawal__processField {
  margin: 0 auto;
  width: 100%;
  max-width: 212px;
}
.transfer__processFields {
  margin: auto;
  width: 100%;
  max-width: 284px;
  display: block;
}
.transfer__processField {
  margin: 0 auto 12px;
  width: 100%;
  max-width: 252px;
  display: block;
  position: relative;
}
.transfer__processField:last-child {
  margin-bottom: 0;
}
.transfer__processField span.sm-txt {
  position: absolute;
  right: -35px;
  bottom: 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
}
.transfer__processFieldSelect {
  margin-bottom: 12px;
  position: relative;
}
.transfer__processFieldSelect:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background-color: #848686;
}
.transfer__processFieldSelect:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 3px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/common/icon-dropdown.png);
}
.transfer__processFieldSelect:last-child {
  margin-bottom: 0;
}
.transfer__processFieldSelect select {
  margin: 0 auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 9px 12px;
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  background-color: #f0eeee;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  border: 0;
  outline: 0;
}
.transfer__processFieldNote {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 17.68px;
  color: #000000;
  text-align: center;
}
.transfer__processFieldNote span {
  color: #d60010;
}
.transfer__processFieldLabel {
  margin-bottom: 7px;
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
}
.transfer__processFieldInput {
  padding: 7px 12px;
  width: 100%;
  max-width: 251px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  background-color: #f0eeee;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  border: 0;
  outline: 0;
}
.transfer__processFieldInput::-webkit-input-placeholder {
  color: #9b9c9c;
}
.transfer__processFieldInput::-moz-placeholder {
  color: #9b9c9c;
}
.transfer__processFieldInput:-ms-input-placeholder {
  color: #9b9c9c;
}
.transfer__processFieldInput::-ms-input-placeholder {
  color: #9b9c9c;
}
.transfer__processFieldInput::placeholder {
  color: #9b9c9c;
}
.transfer__processButton {
  margin: 18px auto 0;
}

/*====================================================================
inquiries Page PC
====================================================================*/
.inquiries {
  margin: 0 auto;
  padding-bottom: 195px;
  width: 100%;
}
.inquiries__container {
  padding: 20px 0 240px;
  display: block;
  background-color: #181b2c;
}
.inquiries .yellow__tagLabel {
  margin: 0 auto 20px;
}
.inquiries__heading {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
  color: #fff;
  text-align: center;
}
.inquiries__amountHeading {
  font-size: 57px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: normal;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.inquiries__amountHeading span {
  margin-left: 5px;
  padding-bottom: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}
.inquiries__form {
  margin: -220px auto 0;
  padding: 27px 0 25px;
  width: 100%;
  max-width: 357px;
  background-color: #fff;
}
.inquiries__formIntro {
  margin-bottom: 25px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
  color: #000000;
}
.inquiries__formFields {
  margin: auto;
  width: 100%;
  max-width: 287px;
  display: block;
}
.inquiries__formField {
  margin: 0 auto 15px;
  width: 100%;
  max-width: 100%;
  display: block;
  position: relative;
}
.inquiries__formField:nth-child(2) {
  margin-bottom: 36px;
}
.inquiries__formField:last-child {
  margin-bottom: 0;
}
.inquiries__formFieldSelect {
  margin: 0 auto 15px;
  width: 100%;
  max-width: 195px;
  position: relative;
}
.inquiries__formFieldSelect:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background-color: #848686;
}
.inquiries__formFieldSelect:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 3px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/common/icon-dropdown.png);
}
.inquiries__formFieldSelect:last-child {
  margin-bottom: 0;
}
.inquiries__formFieldSelect select {
  margin: 0 auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 9px 12px;
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  background-color: #f0eeee;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  border: 0;
  outline: 0;
}
.inquiries__formFieldNote {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 17.68px;
  color: #000000;
  text-align: center;
}
.inquiries__formFieldNote span {
  color: #d60010;
}
.inquiries__formFieldLabel {
  margin-bottom: 7px;
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
}
.inquiries__formFieldInput {
  padding: 7px 12px;
  width: 100%;
  max-width: 100%;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  background-color: #f0eeee;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  border: 0;
  outline: 0;
}
.inquiries__formFieldInput::-webkit-input-placeholder {
  color: #9b9c9c;
}
.inquiries__formFieldInput::-moz-placeholder {
  color: #9b9c9c;
}
.inquiries__formFieldInput:-ms-input-placeholder {
  color: #9b9c9c;
}
.inquiries__formFieldInput::-ms-input-placeholder {
  color: #9b9c9c;
}
.inquiries__formFieldInput::placeholder {
  color: #9b9c9c;
}
.inquiries__formFieldInput {
  padding: 9px 12px;
  width: 100%;
  max-width: 100%;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  background-color: #f0eeee;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  border: 0;
  outline: 0;
  resize: none;
}
.inquiries__formFieldInput.textarea {
  background-color: #fff;
  border: 1px solid #151514;
}
.inquiries__formFieldInput::-webkit-input-placeholder {
  color: #9b9c9c;
}
.inquiries__formFieldInput::-moz-placeholder {
  color: #9b9c9c;
}
.inquiries__formFieldInput:-ms-input-placeholder {
  color: #9b9c9c;
}
.inquiries__formFieldInput::-ms-input-placeholder {
  color: #9b9c9c;
}
.inquiries__formFieldInput::placeholder {
  color: #9b9c9c;
}
.inquiries__formButton {
  margin: 18px auto 0;
}

/*====================================================================
myAccount Page PC
====================================================================*/
.myAccount {
  margin: 0 auto;
  width: 100%;
}
.myAccount__container {
  padding: 20px 0 17px;
  display: block;
  background-color: #181b2c;
}
.myAccount .yellow__tagLabel {
  margin: 0 auto 15px;
}
.myAccount__currentCard {
  margin: 0 auto;
  width: 100%;
  max-width: 152px;
}
.myAccount__heading {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
  color: #fff;
  text-align: center;
}
.myAccount__amountHeading {
  font-size: 57px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: normal;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.myAccount__amountHeading span {
  margin-left: 5px;
  padding-bottom: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}
.myAccount__form {
  margin: 0 auto 0;
  padding: 27px 0 25px;
  width: 100%;
  max-width: 100%;
  background-color: #fff;
}
.myAccount__formFields {
  margin: auto;
  width: 100%;
  max-width: 287px;
  display: block;
}
.myAccount__formField {
  margin: 0 auto 20px;
  width: 100%;
  max-width: 100%;
  display: block;
  position: relative;
}
.myAccount__formField:last-child {
  margin-bottom: 0;
}
.myAccount__formFieldSelect {
  margin: 0 auto 15px;
  width: 100%;
  max-width: 195px;
  position: relative;
}
.myAccount__formFieldSelect:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background-color: #848686;
}
.myAccount__formFieldSelect:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 3px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/common/icon-dropdown.png);
}
.myAccount__formFieldSelect:last-child {
  margin-bottom: 0;
}
.myAccount__formFieldSelect select {
  margin: 0 auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 9px 12px;
  width: 100%;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  background-color: #f0eeee;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  border: 0;
  outline: 0;
}
.myAccount__formFieldNote {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 17.68px;
  color: #000000;
  text-align: center;
}
.myAccount__formFieldNote span {
  color: #d60010;
}
.myAccount__formFieldLabel {
  margin-bottom: 7px;
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
}
.myAccount__formFieldInput {
  padding: 7px 12px;
  width: 100%;
  max-width: 100%;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  background-color: #f0eeee;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  border: 0;
  outline: 0;
}
.myAccount__formFieldInput::-webkit-input-placeholder {
  color: #9b9c9c;
}
.myAccount__formFieldInput::-moz-placeholder {
  color: #9b9c9c;
}
.myAccount__formFieldInput:-ms-input-placeholder {
  color: #9b9c9c;
}
.myAccount__formFieldInput::-ms-input-placeholder {
  color: #9b9c9c;
}
.myAccount__formFieldInput::placeholder {
  color: #9b9c9c;
}
.myAccount__formFieldInput {
  padding: 9px 12px;
  width: 100%;
  max-width: 100%;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  background-color: #f0eeee;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 3px;
  border: 0;
  outline: 0;
  resize: none;
}
.myAccount__formFieldInput.textarea {
  background-color: #fff;
  border: 1px solid #151514;
}
.myAccount__formFieldInput::-webkit-input-placeholder {
  color: #9b9c9c;
}
.myAccount__formFieldInput::-moz-placeholder {
  color: #9b9c9c;
}
.myAccount__formFieldInput:-ms-input-placeholder {
  color: #9b9c9c;
}
.myAccount__formFieldInput::-ms-input-placeholder {
  color: #9b9c9c;
}
.myAccount__formFieldInput::placeholder {
  color: #9b9c9c;
}
.myAccount__formButton {
  margin: 18px auto 0;
}

/*====================================================================
notice Page PC
====================================================================*/
.notice {
  margin: 0 auto;
  padding-bottom: 195px;
  width: 100%;
}
.notice__container {
  padding: 20px 0 240px;
  display: block;
  background-color: #181b2c;
}
.notice .yellow__tagLabel {
  margin: 0 auto 20px;
}
.notice__heading {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
  color: #fff;
  text-align: center;
}
.notice__amountHeading {
  font-size: 57px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: normal;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.notice__amountHeading span {
  margin-left: 5px;
  padding-bottom: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
}
.notice__list {
  margin: -220px auto 0;
  padding: 20px 15px 15px;
  width: 100%;
  max-width: 357px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.notice__listItms {
  display: block;
}
.notice__listItm {
  margin-bottom: 13px;
  padding: 0 15px 15px;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.notice__listItm:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #373737;
}
.notice__listItm:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 21px;
  height: 21px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/common/icon-list-arrow-right.png);
}
.notice__listItmDate {
  margin-bottom: 12px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #6e7070;
}
.notice__listItmTtl {
  font-size: 14px;
  color: #373737;
}
.notice__nextPage {
  margin: 18px auto 0;
  display: block;
  text-align: center;
}

/*====================================================================
affiliate Page PC
====================================================================*/
.affiliate {
  margin: 0 auto;
  width: 100%;
  background-color: #fff;
}
.affiliate__headingContainer {
  padding: 20px 0 30px;
  display: block;
  background-color: #181b2c;
}
.affiliate .yellow__tagLabel {
  margin: 0 auto 26px;
}
.affiliate .yellow__tagLabel.binary-tag {
  margin-bottom: 13px;
}
.affiliate .yellow__tagLabel.unilevel-tag {
  margin-bottom: 12px;
}
.affiliate .yellow__tagLabel.w-135 {
  width: 135px;
}
.affiliate__heading {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.affiliate__heading span.numeric {
  margin: 0 7px 0 10px;
  width: 27px;
  height: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000000;
  background-color: #fff;
  border-radius: 3px;
  -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}
.affiliate__heading span.change {
  width: 43px;
  height: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #386fb6;
  border-radius: 3px;
  -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}
.affiliate__marketing {
  margin: 0 auto;
  padding: 25px 0 26px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #1f4f77;
}
.affiliate__marketingHeading {
  margin: 0 auto 20px;
  max-width: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.affiliate__marketingItms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 3px;
}
.affiliate__marketingItm {
  width: 100%;
  max-width: 100px;
  text-align: center;
}
.affiliate__marketingItmLabel {
  margin-bottom: 3px;
  padding: 5px 5px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
  background-color: #80b60a;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.affiliate__marketingItmVal {
  padding: 5px 5px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.affiliate__binaryMap {
  padding-bottom: 30px;
  padding-top: 19px;
  display: block;
  background-color: #fff;
}
.affiliate__userBranch1 {
  display: block;
  width: 100%;
}
.affiliate__userIcon {
  margin: 0 auto;
  width: 100%;
  max-width: 12px;
}
.affiliate__userIcon img {
  width: 12px;
  height: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.affiliate__userLabel {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #386fb6;
  text-align: center;
}
.affiliate__userBranch1__guide {
  margin: 5px auto 3px;
  width: 100%;
  max-width: 132px;
}
.affiliate__userBranch2__wrapper {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 50px;
}
.affiliate__userBranch2 {
  width: 82px;
}
.affiliate__userBranch3 {
  margin-top: 5px;
}
.affiliate__unilevelMap {
  margin: 0 auto 18px;
  padding: 19px 0 33px;
  display: block;
  width: 100%;
  max-width: 356px;
  background-color: #fff;
  border-bottom: 0.3px solid #151514;
}
.affiliate__unilevelMap__branch {
  margin: 0 auto;
  width: 100%;
  max-width: 225px;
}
.affiliate__commission {
  margin: 0 auto;
  width: 100%;
  max-width: 306px;
  background-color: #fff;
}
.affiliate__commissionItms {
  display: block;
}
.affiliate__commissionItm {
  margin-bottom: 23px;
  padding: 0 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-bottom: 0.5px solid #151514;
}
.affiliate__commissionItm:last-child {
  margin-bottom: 16px;
}
.affiliate__commissionItmDate, .affiliate__commissionItmBonus, .affiliate__commissionItmTag {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #575959;
}
.affiliate__commissionItmBonus {
  margin-top: 10px;
}
.affiliate__commissionItmTag {
  margin: 0 30px 0 70px;
}
.affiliate__commissionItmVal {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.5;
  color: #f5a700;
}
.affiliate__commissionItmVal span {
  padding-left: 5px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #575959;
}
.affiliate__commisisonItmsBtn {
  margin: 0 0 32px auto;
  width: 100%;
  max-width: 102px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: block;
  border: 0.1px solid #151514;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #575959;
  position: relative;
}
.affiliate__commisisonItmsBtn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  width: 6px;
  height: 6px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/common/icon-dropdown.png);
}