html, body {
  font-size: 16pt;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  /* font-family: 'Noto Sans JP', sans-serif; */
}

.bg-digi-primary {
  background-color: #ee9b00 !important;
}

.liff-top-icon {
  font-size: 4rem;
}

input:focus, textarea:focus, select:focus, button:focus {
  box-shadow: none !important;
}

p.form-control {
  min-height: 51px;
}

::placeholder {
  color: #ccc !important;
}

/* ----------------
Vue
v-cloak制御
---------------- */

@keyframes cloak-in {
  0% {
    opacity: 0;
  }
}

#app {
  animation: cloak-in 1s;
}

[v-cloak] {
  opacity: 0;
}

/* ----------------
ステップバー
----------------- */

.step-bar {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.step-bar li {
  position: relative;
  list-style-type: none;
  text-align: center;
  text-transform: uppercase;
  width: 33.333%;
  color: #999999;
  font-weight: bold;
  counter-increment: steps;
  font-size: 16px;
}

.step-bar li:before {
  display: block;
  width: 26px;
  height: 26px;
  margin: 9px auto;
  content: '';
  line-height: 26px;
  font-size: 12px;
  text-align: center;
  border-radius: 50%;
  background-color: #F5F5F5;
  content: counter(steps);
}

.step-bar li:after {
  position: absolute;
  z-index: -1;
  top: 20px;
  left: -50%;
  width: 100%;
  height: 2px;
  content: '';
  background-color: #F5F5F5;
}

.step-bar li:first-child:after {
  content: none;
}

.step-bar li.active, .step-bar li.complete {
  color: #3459e6;
}

.step-bar li.active:before, .step-bar li.complete:before {
  background-color: #3459e6;
  color: #FFF;
}

.step-bar li.active:after, .step-bar li.complete:after {
  background-color: #3459e6;
}