:root {
  --toyama-x: 1.0rem;
  --toyama-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: #f5f4f4;
  --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;
  margin-bottom: 20px;
}

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

.row {
  width: 100%;
}

.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;
}

/* 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;
}

/* --- 03-08.form ------------------------------------------------------------*/
.form-control {
  border-radius: 5px;
  border: 0px;
  color: #d13933;
  font-weight: bold;
}

.multiselect-native-select .btn-group {
  width: 100%;
  position: relative;
}

.multiselect-native-select .btn-group .multiselect.btn-default {
  border-radius: 5px;
  border: 0px;
  text-align: left;
  background-color: #fff;
  display: flex;
  align-items: center;
}

.multiselect-native-select .btn-group .multiselect.btn-default .multiselect-selected-text {
  font-weight: bold;
  padding-left: 20px;
  font-size: 16px;
  width: 100%;
  margin-right: 40px;
  overflow: hidden;
}

.multiselect-native-select .btn-group .multiselect.btn-default .caret {
  position: relative;
  margin-left: auto;
  width: 0px;
}

.multiselect-native-select .btn-group .multiselect.btn-default.dropdown-toggle::after {
  display: block;
  width: 10px;
  height: 10px;
  border: 2.5px solid;
  border-color: transparent transparent #d13933 #d13933;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -5px;
}

.multiselect-container {
  padding: 10px 0px;
}

.multiselect-container li>a>label {
  padding: 10px 20px 10px 20px;
}