:root {
  --glico-x: 1.0rem;
  --glico-y: 0;
  --danger: #f44337;
  --active-danger: #a8271f;
  --success: #0d8f23;
  --active-success: #047c18;
  --container-bg: #CE833E;
  --card-bg: #d2d2d2;
  --default-hover: #d5d5d5;
  --form-inputs-radius: 10px;
  --outline-dead-grey: #eeebeb;
  --outline-dead-grey-text: #605f5f;
  --button-active-hover-transition: background-color 0.3s ease, color 0.3s ease;
  --body-bg: #FDFBEF;
  --navi-bg: #ff0000;
  --font-cl: #050505;
  --font-cl2: #E2B140;
  --body-br: #662C1E;
  --body-ln: #EDD0B2;
}
/* */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: 'Hiragino Sans';
  display: inline-block;
  width: 100%;
  background-color: var(--body-bg);
}

/* Removing Scroll bar to all elements */
html {
  overflow: scroll;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 0;
  /* Remove scrollbar space */
  background: transparent;
  /* Optional: just make scrollbar invisible */
}

body {
  margin: 0 auto;
  font-size: 100%;
  font-weight: 700;
  color: #050505;
  background-color: var(--body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

/* General CSS */
.container {
  padding-right: var(--glico-x, .75rem);
  padding-left: var(--glico-x, .75rem);
  margin-right: auto;
  margin-left: auto;
  position: relative;
  display: flow-root;
  overflow: scroll;
  margin-bottom: 100px;
}

.row {
  width: 70%;
}

.row .width100{
  width: 100%;
}

.center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.no-bold {
  font-weight: 100;
}

.m-auto {
  margin: auto !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-10 {
  margin-top: 1em !important;
}

.mt-20px {
  margin-top: 20px !important;
}

.mt-30px {
  margin-top: 30px !important;
}

.mt-40px {
  margin-top: 40px !important;
}

.mt-5vw {
  margin-top: 5vw !important;
}

.my-10 {
  margin: 10px 0 !important;
}

.mb-1em {
  margin-bottom: 1em !important;
}

.mb-20px {
  margin-bottom: 20px !important;
}

.mb-50px {
  margin-bottom: 50px !important;
}

.mb-10vw {
  margin-bottom: 10vw !important;
}

.my-50px {
  margin: 50px 0;
}

.p-0 {
  padding: 0 !important;
}

.p-200 {
  padding-top: 220px;
}

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

.flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flex-0-3 {
  -webkit-box-flex: 0.3;
  -ms-flex: 0.3;
  flex: 0.3;
}

.gap-10 {
  gap: 10px;
}

.scrollable-y {
  overflow-y: scroll;
}

.scrollable-x {
  overflow-x: scroll;
}

.flex-direction-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-direction-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-direction-row>* {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.text-danger {
  color: var(--danger) !important;
}

/* Width */
.w-10 {
  width: 10% !important;
}

.w-25 {
  width: 25% !important
}

.w-50 {
  width: 50% !important
}

.w-75 {
  width: 75% !important
}

.w-100 {
  width: 100% !important
}

.w-auto {
  width: auto !important
}

/* Height */
.h-10 {
  height: 10% !important;
}

.h-25 {
  height: 25% !important
}

.h-height {
  width: 50% !important
}

.h-75 {
  height: 75% !important
}

.h-100 {
  height: 100% !important
}

.h-auto {
  height: auto !important
}

.h-45px {
  height: 45px;
}

.box-right{
  margin-left:10px;
}

.round-container {
  margin: 0 auto;
  padding: 12px;
  /* background-color: var(--container-bg); */
  border-radius: 10px;
  font-weight: 500;
}

#terms .round-container,
#registration .round-container {
  margin: 0 auto;
  padding: 10px 16px;
  /* background-color: white; */
  border-radius: 11px;
}

/* Header */
.logo {
  width: 58px;
  margin: 10px 8px;
}

.logo img {
  width: 22vw;
}

img.office-public {
    margin: 12px;
    width: 135.41px;
    display: block;
}

.page-title {
  margin-top: 1.5em;
}

.page-title .title-left-box{
  margin:0;
}

.page-title .title-right-box{
  margin-left:10px;
}

.page-title .title-right-box .title{
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 150%;
  margin:0;
}

.page-title .title-right-box .sub-title{
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 100%;
  margin:0;
}

/* Button */
.btn,
a.btn {
  padding: 10px;
  min-width: 130px;
  border-radius: 6px;
  border: 0;
  color: #fff;
  text-decoration: none;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-block: 1px;
  padding-inline: 0px;
  font-weight: 600;
}

/* .btn_common {
  color: #FFF;
  height: 42px;
  font-size: 14px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 3px;
} */

.btn_back {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10vw;
  width: fit-content;
  font-size: 3.5vw;
  font-weight: 600;
  letter-spacing: 1px;
  border: 1px solid #682d1e;
  border-radius: 6px;
  gap: 1vw;
  padding: 0 2vw;
}

.btn:hover,
.btn:active {
  background-color: var(--default-hover);
  -webkit-transition: var(--button-active-hover-transition);
  -o-transition: var(--button-active-hover-transition);
  transition: var(--button-active-hover-transition);
}

.btn.danger {
  background-color: var(--danger);
}

.btn.red {
  background-color: #fff;
}

.btn.danger:hover,
.btn.danger:active {
  background-color: var(--active-danger);
  -webkit-transition: var(--button-active-hover-transition);
  -o-transition: var(--button-active-hover-transition);
  transition: var(--button-active-hover-transition);
}

.btn.success {
  background-color: var(--success);
}

.btn.success:hover,
.btn.success:active {
  background-color: var(--active-success);
  -webkit-transition: var(--button-active-hover-transition);
  -o-transition: var(--button-active-hover-transition);
  transition: var(--button-active-hover-transition);
}

.btn.outline-grey {
  background-color: var(--outline-dead-grey);
  color: var(--outline-dead-grey-text);
  border: 1px solid var(--outline-dead-grey-text);
}

.btn.outline-brown {
  background-color: transparent;
  color: #682D1E;
  border: 1px solid #682D1E;
}

.btn-common {
  display: block;
  color: #fff;
  background-color: #682d1e;
  letter-spacing: 0.5vw;
  font-size: 4vw;
  margin: 0 auto;
  padding: 1.6vw 0;
  height: 13vw;
  min-width: auto;
}

.btn-after {
  display: block;
  border: 1px solid #682d1e;
  color: #682d1e;
  letter-spacing: 0.5vw;
  font-size: 4vw;
  margin: 0 auto;
  padding: 1.6vw 0;
  height: 13vw;
  min-width: auto;
}

.group-button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5.5vw;
  flex-direction: column;
}

.action-buttons .group-button-container>* {
  font-family: 'Hiragino Sans';
  font-size: 16px;
}

.form-select-input select {
  background-color: #fff;
  width: 100%;
  border: 0;
  font-size: 4.5vw;
  padding: 3.5vw 3vw;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-select-input .relative {
  position: relative;
}

.form-select-input .relative::before {
  position: absolute;
  top: 0;
  right: -1px;
  content: '';
  width: 9vw;
  height: 100%;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: url(../img/pulldown-button.svg) no-repeat right/auto 14vw;
  pointer-events: none;
}

#registration .form-select-input select {
  border: 1px solid var(--container-bg) !important;
  color: #682D1E;
}

#registration .form-select-input input {
  border: 1px solid var(--container-bg) !important;
  color: #682D1E;
}

#registration .form-select-input radio {
  border: 1px solid var(--container-bg) !important;
  color: #682D1E;
}

#registration .form-select-input .checkbox {
  display: flex;
  vertical-align: middle;
}

#registration .form-select-input .checkbox input {
  margin-right: 5px;
}


#registration .form-select-input .postal-code {
  display: table-cell;
  vertical-align: middle;
}

#registration .form-select-input .postal-code span {
  margin-right: 5px;
}

.form-select-input select.small-icon {
  background-size: 15px;
  background-position: 96%;
  border: 1px solid #682d1e;
  border-radius: 5px;
}

/* for Firefox */
.form-select-input select::-moz-focus-inner {
  border: none;
}

.form-select-input label span.required,
.group-form-select label span.required,
.form-select-input span.required {
  color: white;
  background-color: #E60014;
  font-size: 2.5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  height: 4vw;
  width: 6vw;
}

.group-form-select .input-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 12px;
}

.group-form-select .form-select-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.group-form-select label span.required {
  color: #FFF;
}

.form-select-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 2vw;
}

.form-select-input input {
  border: 0;
  border-radius: var(--form-inputs-radius);
  padding: 10px;
}


/* Navbar */
ul.navigation-bar {
  list-style-type: none;
  padding: 0;
  background: #682D1E;
  position: fixed;
  bottom: 0;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0;
  height: 80px;
  justify-content: space-between;
}

ul.navigation-bar li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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;
}

ul.navigation-bar li a {
  text-decoration: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

ul.navigation-bar li a img {
  width: 24px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  margin-bottom: -8px;
}

ul.navigation-bar li a span {
  -webkit-box-flex: 0.5;
  -ms-flex: 0.5;
  flex: 0.7;
  font-size: 10px;
}

ul.navigation-bar li.center-menu {
  padding: 0 20px;
}

ul.navigation-bar li.center-menu a {
  width: 110px;
  position: absolute;
  top: -32px;
}

ul.navigation-bar li.center-menu a img {
  width: 86%;
}

ul.navigation-bar li a.active_org {
    color: #FFD93C;
}

ul.navigation-bar li img.active_org {
    filter: brightness(0) saturate(100%) invert(45%) sepia(86%) saturate(1888%) hue-rotate(3deg) brightness(105%) contrast(94%);filter: brightness(0) saturate(100%) invert(69%) sepia(87%) saturate(366%) hue-rotate(357deg) brightness(108%) contrast(101%);
}

/* carousel */
.carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2vw;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  overflow-x: scroll;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-right: 24px;
  position: absolute;
  width: 100%;
  margin-left: -24px;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel a {
  text-decoration: none;
}

.carousel a:first-child {
  padding-left: 24px;
}

/* Cards */
.card {
  min-height: 150px;
  min-width: 124px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card .card-header {
  background: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  min-height: 120px;
  position: relative;
}

.card .card-img-top {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 7px 7px 0 0;
}

.card .card-body {
  background-color: var(--container-bg);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 7px;
}

.card .card-body .card-title {
  font-weight: bold;
  font-size: 15px;
}

.card .card-body .card-text {
  font-weight: normal;
  font-size: 12px;
  line-height: 20px;
}

/* Footer */
.footer {
  line-height: 1;
  text-align: right;
  font-size: 10px;
  position: relative;
  margin-top: 20px;
  /* right: -15px; */
  /* margin-bottom: 50px; */
}


.footer.footer-bottom {
  bottom: 90px;
}

/* Radio Button */
.public-radio {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.public-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.public-radio:hover input~.checkmark {
  background-color: #fff;
}

/* When the radio button is checked, add a blue background */
.public-radio input:checked~.checkmark {
  background-color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.public-radio input:checked~.checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.public-radio .checkmark:after {
  top: 5px;
  left: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #000;
}

.input-error {
  border: thin solid var(--danger)
}

.text-error {
  color: var(--danger)
}


/* alert box */
.toast {
  position: absolute;
  width: 75%;
  top: 50px;
  border-radius: 12px;
  background: #fff;
  padding: 20px 35px 20px 25px;
  -webkit-box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-transform: translateX(150%);
  -ms-transform: translateX(150%);
  transform: translateX(150%);
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
  -o-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
  border-right: 2px solid lightgray;
  border-left: 2px solid lightgray;
  border-top: thin solid lightgray;
  border-bottom: thin solid lightgray;
  display: none;
  z-index: 1;
}

.toast.active {
  display: block;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.toast .toast-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.toast-content .check {
  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;
  height: 35px;
  min-width: 35px;
  background-color: #4070f4;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
}

.toast-content .message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 20px;
}

.toast-content .message .text {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
}

.toast-content .message .text.text-1.success {
  font-weight: 600;
  color: #0d8f23;
}

.toast-content .message .text.text-1.error {
  font-weight: 600;
  color: #f44337;
}

.toast .close {
  position: absolute;
  top: 10px;
  right: 15px;
  padding: 5px;
  cursor: pointer;
  opacity: 0.7;
}

.toast .close:hover {
  opacity: 1;
}

.toast .progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
}

.toast .progress:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
}

.progress.active:before {
  -webkit-animation: progress 5s linear forwards;
  animation: progress 5s linear forwards;
}

@-webkit-keyframes progress {
  from {
    width: 100%;
  }

  to {
    width: 0;
  }
}

@keyframes progress {
  from {
    width: 100%;
  }

  to {
    width: 0;
  }
}

.toast.active~button {
  pointer-events: none;
}

/* end alert box */

/* Sidebar container mobile */
.sidebar-container {
  position: fixed;
  z-index: 3;
  background: #00000075;
  width: 100%;
  height: 100vh;
  display: none;
  overflow-x: hidden;
}

.sidebar-container ul {
  background: #fff;
  width: 0;
  right: 0;
  padding: 20px 6vw;
  margin: 0;
  height: -webkit-fill-available;
  position: absolute;
  -webkit-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.sidebar-container ul.open {
  width: 75vw;
  height: 100vh;
  overflow-y: scroll;
  padding-bottom: 9rem;
}

.sidebar-container ul li {
  list-style-type: none;
  margin-bottom: 25px !important;
}

.sidebar-container ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  text-decoration: none;
  color: #000;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sidebar-container ul li img {
  width: 10vw;
}

.sidebar-container ul li span {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.sidebar-container ul li.divider {
  border: 1px solid grey;
  margin: 10px auto;
}

/* sidebar container mobile end */


/* Modal container mobile */
.modal-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.modal-buttons {
  margin-top: 20px;
}

/* Modal container mobile end */

/* Member Ranking used in mypage and home screen*/
.membership-rank {
  text-align: center;
  background-color: #D71618;
  color: #fff;
  font-weight: 100;
  border-radius: 7px;
  padding-bottom: 6px;
}

.membership-rank .membership-rank-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.membership-rank .membership-rank-header .title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  margin: 6px 10px;
}

.membership-rank .membership-rank-header .title h1 {
  margin: 0;
  font-weight: 400;
}

.membership-rank .membership-rank-header .frog-stars {
  position: absolute;
  right: 7%;
  top: -12px;
  -webkit-transform: translate(22%, -30%);
  -ms-transform: translate(22%, -30%);
  transform: translate(22%, -30%);
}

.membership-rank .membership-rank-header .frog-stars img.frog {
  width: 136px;
  margin-top: 10px;
  border-radius: 100%;
  margin-left: 45px;
}

.membership-rank .membership-rank-body {
  background: #fff;
  margin: 0 6px;
  padding: 20px 10px;
  border-radius: 0 0 3px 3px;
}

.membership-rank .membership-rank-body .progress-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #682D1E;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-evenly;
  margin: 3vw 0 5vw;
  gap: 3vw;
}

.membership-rank .membership-rank-body .progress-content img {
  width: 38%;
  padding-left: 3vw;
}

.membership-rank .membership-rank-body .progress-content .frog .frog-talking {
  width: 60%;
}

.membership-rank .membership-rank-body .progress-content .content {
  padding-right: 3vw;
  display: flex;
  flex-direction: column;
}

.membership-rank .membership-rank-body .progress-content .content h4 {
  font-size: 4vw;
  font-weight: 600;
}

.membership-rank .membership-rank-body .progress-content .content h1 {
  font-weight: 100;
  font-size: 13vw;
  margin: 0;
}

.membership-rank .membership-rank-body .progress-content .content .middle-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 2vw;
}
.membership-rank .membership-rank-body .progress-content .content .middle-content div.rank_point_num {
  font-size: 13vw;
  line-height: 100%;
}

.membership-rank .membership-rank-body .progress-content .content .middle-content .word1
 {
  font-size: 5vw;
}

.membership-rank .membership-rank-body .progress-content .content .middle-content .word2 {
  font-size: 8vw;
}

.membership-rank .membership-rank-body .progress-content .content .middle-content .word1 p ,
.membership-rank .membership-rank-body .progress-content .content .middle-content .word2 p {
  margin: 0;
}

.membership-rank .about-membership-rank {
  text-align: right;
  text-decoration: none;
  color: #fff;
  background: #682D1E;
  padding: 2.5vw 5vw;
  border-radius: 20px;
  font-size: 3vw;
  letter-spacing: 1px;
}

.membership-rank .progress ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

.membership-rank .progress {
  margin-top: 3vw;
}

.membership-rank .progress ul li {
  position: relative;
  width: 14.28%;
  float: left;
  z-index: 1;
}

.membership-rank .progress ul li div.circle {
  position: absolute;
  border-radius: 100px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -12%);
  -ms-transform: translate(-50%, -12%);
  transform: translate(-50%, -12%);
}

.membership-rank .progress ul li div.circle img.frog {
  width: 45px;
}

.membership-rank .progress ul li div.circle.active {
  background-color: var(--danger);
}

.membership-rank .progress ul li div.circle.disabled {
  background-color: var(--outline-dead-grey-text);
}

.membership-rank .progress .progress-bar-position {
  margin-top: -12px;
}

.membership-rank .progress progress {
  position: relative;
  top: -12px;
  width: calc(100% - 12%);
  border: 0;
  height: 8px;
  background-color: #D9CBC7;
}

.membership-rank .progress progress::-webkit-progress-value {
  background-color: #CE833E;
}

.how-to-use {
  width: 95%;
  min-height: 200px;
  background-color: #FFFFFF;
  border-radius: 13px;
  position: relative;
  margin: 0 auto 40px;
}

.how-to-use .img-header {
  position: absolute;
  top: -20px;
  left: -7px;
  width: 21vw;
  transform: translate(-10px, -8%);
}

.display-barcode-area {
  width: 100%;
  background-color: #FFFFFF;
  text-align: center;
  margin-top: 30px;
  padding-bottom: 30px;
  height:30vh;
}

.display-barcode-area .display-barcode {
  text-align: center;
  height: 50vw;
}

.display-barcode-area .display-barcode svg {
  width: 75%;
  height: 100%;
}

.display-barcode-area .member-code {
  margin-top: -20px;
}

.member-point {
  /* margin-left: 10px; */
}

.member-point .point {
  margin:5px;
  font-size: 20vw;
}

.member-rank-area {
  width: 100vw;
  height: 40vh;
  margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1);
  background-color: #e9c55d;
  border: 2px solid #e9c55d;
  border-radius: 7px;
}

.member-rank-area .member-rank {
  text-align: center;
  font-size: 8vw;
}

.member-rank-area .test {
  display: table;
  width: 95%;
  margin-left: 15px;
  margin-right: -15px;
}


.member-rank-area .member-rank-logo {
  width: 150px;
  height: 150px;
  margin-right: 15px;
  display: table-cell;
}

.member-rank-area .member-rank-description {
  display: table-cell;
  vertical-align: middle;
}



/* Rotated devices */
@media (max-width: 845px) {
  .membership-rank .membership-rank-header .title {
    font-size: 2.5vw;
  }

  .membership-rank .membership-rank-body .progress-content .content h4 {
    font-size: 3vw;
  }

  .membership-rank .membership-rank-body .progress-content .content h1 {
    font-size: 11vw;
  }

  .membership-rank .about-membership-rank {
    word-break: keep-all;
    padding: 1.5vw 4vw;
  }
}


/* Tablet Responsive */
@media (max-width: 768px) {
  .membership-rank .membership-rank-header .title {
    font-size: 16px;
    height: 30px;
  }

  .membership-rank .membership-rank-body .progress-content .content h4 {
    font-size: 5vw;
  }

  .membership-rank .membership-rank-body .progress-content .frog .frog-talking {
    width: 65%;
  }

  .membership-rank .about-membership-rank {
    padding: 1vw 3.5vw;
    font-size: 3.5vw;
    /* font-weight: 600; */
  }
}

/* Mobile Large Responsive */
@media (max-width: 425px) {
  .membership-rank .membership-rank-header .title {
    font-size: 13px;
    height: 27px;
  }

  .membership-rank .membership-rank-body .progress-content .frog .frog-talking {
    width: 70%;
  }

  .membership-rank .membership-rank-body .progress-content .content h4 {
    /* font-size: 4vw; */
    font-weight: 600;
  }

  .membership-rank .membership-rank-body .progress-content .content h1 {
    font-size: 13vw;
  }

  .membership-rank .about-membership-rank {
    padding: 2vw 3.5vw;
    font-size: 3vw;
    font-weight: 600;
    text-align: center;
  }

  .membership-rank .membership-rank-header .frog-stars img.frog {
    width: 125px;
    margin-right: -3px;
    margin-top: 10px;
  }
}

/* Mobile Medium Responsive */
@media (max-width: 375px) {
  .membership-rank .membership-rank-header .frog-stars img.frog {
    width: 110px;
  }

  .membership-rank .membership-rank-header .title {
    font-size: 12px;
    height: 20px;
  }
}

/* Mobile Small Responsive */
@media (max-width: 320px) {}

.text-nowrap {
  white-space: nowrap;
}

a:link,
a:visited {
  text-decoration: none;
  color: var(--font-cl);
}

/* sidebar Responsive */
@media (min-width: 768px) and (max-width: 1024px) {
.sidebar-container ul.open {
    width: 40vw;
    height: 100vh;
    overflow-y: scroll;
    padding-bottom: 9rem;
}
.sidebar-container ul.open li a img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }
}

@media (min-width: 1024px) and (max-width: 1440px) {
.sidebar-container ul.open {
    width: 40vw;
    height: 100vh;
    overflow-y: scroll;
    padding-bottom: 9rem;
}
.sidebar-container ul.open li a img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }
}
@media (min-width: 1440px) and (max-width: 2660px) {
.sidebar-container ul.open {
    width: 30vw;
    height: 100vh;
    overflow-y: scroll;
    padding-bottom: 9rem;
}
.sidebar-container ul.open li a img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }
}
