@charset "UTF-8";
/*---------------------------
▼▼▼　START DEFAULT　▼▼▼
---------------------------*/
html,
body,
h1,
h2,
h3,
h4,
h5,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
input,
textarea,
select,
button,
b,
i,
figure {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  vertical-align: baseline;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  outline: none;
  -webkit-appearance: none;
  border-collapse: collapse;
  border-spacing: 0;
}

article,
header,
footer,
aside,
figure,
figcaption,
nav,
main,
.main,
.main_content {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
}

body {
  line-height: 1.3;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
  color: #3e3e3e;
  width: 100%;
  background-color: #eee;
}

a {
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

input[type='text'],
input[type='password'],
input[type='datetime-local'],
input[type='date'],
input[type='number'],
input[type='search'],
input[type='time'],
input[type='email'],
input[type='tel'],
select,
textarea {
  border: solid 1px #ccc;
  padding: 5px;
  border-radius: 5px;
  width: auto;
  display: block;
  background-color: #fff;
}

input[type='text']:disabled,
input[type='password']:disabled,
input[type='datetime-local']:disabled,
input[type='date']:disabled,
input[type='number']:disabled,
input[type='search']:disabled,
input[type='time']:disabled,
input[type='email']:disabled,
input[type='tel']:disabled,
select:disabled,
textarea:disabled {
  background-color: #eee;
}

input[type='radio'] {
  background-color: #fff;
  border: solid 1px #3e3e3e;
  width: auto;
  border-radius: 100px;
  margin: 0 5px;
  height: 1.5em;
  width: 1.5em;
  position: relative;
  vertical-align: middle;
}

input[type='radio']:checked::after {
  content: '';
  border-radius: 100px;
  background-color: #3e3e3e;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 0.5em;
  width: 0.5em;
  position: absolute;
  top: 50%;
  left: 50%;
}

input[type='radio']:disabled {
  background-color: #eee;
}

input[type='checkbox'] {
  background-color: #fff;
  border: solid 1px #3e3e3e;
  width: auto;
  border-radius: 5px;
  margin: 0 5px;
  height: 1.5em;
  width: 1.5em;
  position: relative;
  vertical-align: middle;
}

input[type='checkbox']:checked {
  background-color: #3e3e3e;
}

input[type='checkbox']:checked::after {
  content: '';
  border-bottom: #fff 3px solid;
  border-left: #fff 3px solid;
  -webkit-transform: rotate(314deg) translate(-10%, -115%);
          transform: rotate(314deg) translate(-10%, -115%);
  width: 0.5em;
  height: 0.3em;
  top: 50%;
  left: 60%;
  position: absolute;
  display: block;
}

input[type='checkbox']:disabled {
  background-color: #eee;
}

button {
  background-color: #00a5b1;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  padding: 5px;
  display: block;
}

button:hover {
  background-color: #00858f;
}

button:disabled {
  background-color: #888;
  cursor: default;
}

label,
select {
  cursor: pointer;
}

.select_label {
  position: relative;
  display: block;
  background-color: #eee;
  width: auto;
  border-bottom: solid 1px #3e3e3e;
  border-radius: 3px;
}

.select_label select {
  border: none;
  padding: 8px;
  padding-right: 1rem;
  width: 100%;
  height: 100%;
}

.select_label::after {
  content: '';
  position: absolute;
  right: 0.25rem;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 2px solid #3e3e3e;
  border-left: 2px solid #3e3e3e;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-135deg);
          transform: translateX(-50%) translateY(-50%) rotate(-135deg);
  pointer-events: none;
}

.price_label {
  position: relative;
  display: block;
}

.price_label input[type='number'] {
  height: 100%;
  padding-right: 3em;
}

.price_label input[type='number']::-webkit-inner-spin-button, .price_label input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}

.price_label::after {
  content: '円';
  position: absolute;
  right: 1em;
  top: 50%;
  width: 1em;
  height: 1em;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
  line-height: 1;
  background-color: #fff;
}

input::-webkit-input-placeholder {
  color: #ccc;
}

input:-ms-input-placeholder {
  color: #ccc;
}

input::-ms-input-placeholder {
  color: #ccc;
}

input::placeholder {
  color: #ccc;
}

.td_num {
  text-align: right;
}

.error_msg {
  color: tomato;
}

.btn_input {
  background-color: #00a5b1;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  padding: 5px;
  display: block;
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 20px;
  text-align: center;
  text-decoration: none;
}

.btn_input:hover {
  background-color: #00858f;
}

.btn_input:disabled {
  background-color: #888;
  cursor: default;
}

::-webkit-scrollbar {
  width: 0px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb {
  background: #dbdbdb;
  border-radius: 5px;
}

.col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  padding: 20px;
}

.col2 .col {
  width: 50%;
}

.col2 .col:nth-child(1) {
  border-right: solid 1px #ccc;
  padding-right: 10px;
}

.col2 .col:nth-child(2) {
  padding-left: 20px;
}

.form_title {
  margin-top: 20px;
  font-weight: bold;
}

.form_title:first-child {
  margin-top: 0;
}

.form_title_center {
  margin-top: 20px;
  font-weight: bold;
  text-align: center;
}

.form_title_center:first-child {
  margin-top: 0;
}

.qr_cap {
  font-size: 0.8rem;
}

.tab_btn,
.tab_con {
  display: none;
}

.tab_btn.act,
.tab_con.act {
  display: block;
}

.cap_title {
  font-size: 1rem;
  margin-top: 10px;
}

.read_msg {
  font-weight: bold;
  margin-top: 30px;
}

.read_msg_center {
  font-weight: bold;
  margin-top: 30px;
  text-align: center;
}

.sec {
  margin-top: 30px;
}

.req_icon {
  padding: 3px 5px;
  display: inline-block;
  color: #fff;
  font-weight: normal;
  font-size: 0.8rem;
  margin: 0 5px;
  background-color: tomato;
}

.txt_link {
  color: dodgerblue;
}

.txt_link[target='_blank']::after {
  font-family: 'Font Awesome 5 Free';
  content: '\f35d';
  display: inline;
  font-weight: bold;
  margin: 0 0 0 5px;
  font-size: 0.8rem;
}

.yet_mail_msg {
  color: tomato;
  text-align: center;
  font-weight: bold;
  text-decoration: underline;
  font-size: 1rem;
  margin-top: 20px;
}

.kiyaku_sec {
  margin-top: 30px;
  text-align: center;
}

.reg_chek_input {
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding: 10px 0;
  border-bottom: 2px solid #ddd;
  font-size: 1.2rem;
}

.sub_btn {
  width: 50%;
  border: solid 2px #aaa;
  color: #666;
  border-radius: 5px;
  text-align: center;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  padding: 5px;
}

.sub_btn:hover {
  background-color: #ccc;
}

.main_title {
  text-align: center;
  font-size: 1.5rem;
}

main {
  background: #fff;
  max-width: 500px;
  margin: 0 auto;
}

@media DEVICE_SP {
  main {
    max-width: unset;
  }
}

main .input_title {
  margin-top: 2rem;
}

main .msg {
  padding: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 2px gray;
          box-shadow: 0 0 2px gray;
  border-radius: 3px;
  margin-top: 1rem;
}

main .error_msg {
  padding: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 2px gray;
          box-shadow: 0 0 2px gray;
  border-radius: 3px;
  margin-top: 1rem;
  color: tomato;
  white-space: pre-wrap;
}

main table {
  margin-top: 1rem;
  width: 100%;
  border-left: solid 1px #3e3e3e;
  border-top: solid 1px #3e3e3e;
}

main table th,
main table td {
  border-right: solid 1px #3e3e3e;
  border-bottom: solid 1px #3e3e3e;
  padding: 10px;
}

main table th {
  background-color: #eee;
}

main .check_input {
  margin-top: 1rem;
  display: block;
  text-indent: -2.5rem;
  padding-left: 2.5rem;
}

main .radio_input {
  border: solid 1px #3e3e3e;
  padding: 20px 10px;
  display: block;
  margin-top: 0.5em;
  border-radius: 3px;
}

main .radio_input.act {
  background-color: lightblue;
}

main .btn_input.return {
  background-color: #333;
}

main .btn_input.return:hover {
  background-color: #222;
}

.main_inner {
  padding: 20px;
  max-width: 1000px;
}

.main_inner > *:first-child {
  margin-top: 0;
}

.err_msg {
  padding: 10px;
  text-align: center;
  color: tomato;
  font-size: 0.8rem;
}

.err_msg.ok {
  display: none;
}

.login_user_icon {
  text-align: center;
  color: #ccc;
  font-size: 5rem;
}

/*---------------------------
▲▲▲　END DEFAULT　▲▲▲
---------------------------*/
/*---------------------------
▼▼▼　START #c　▼▼▼
---------------------------*/
.reg_header {
  padding: 20px 20px 10px;
  border-bottom: solid 1px #ccc;
}

.reg_header .header_inner {
  text-align: center;
  font-weight: bold;
}

.reg_header .header_inner .site_title {
  color: gold;
}

.reg_header .header_inner .page_title {
  color: orange;
  font-size: 1.2rem;
}

.reg_header .header_inner .page_title img {
  max-width: 200px;
}

.default_header {
  position: fixed;
  z-index: 10;
  padding: 10px 60px 10px;
  background-color: #fff;
  border-bottom: solid 1px #ccc;
  color: #333;
  width: 100%;
  top: 0;
  left: 0;
}

.default_header .header_inner {
  text-align: center;
  font-weight: bold;
}

.default_header .site_title {
  color: #333;
}

.default_header .page_title {
  color: #333;
  font-size: 1.2rem;
}

.default_header .page_title img {
  max-width: 200px;
}

.default_header .g_menu_content {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, 0.3);
  color: #3e3e3e;
  width: 100%;
  right: 0;
  height: 100%;
  top: 0;
  z-index: 50;
  overflow-x: hidden;
}

.default_header .g_menu_content.act {
  display: block;
}

.default_header .g_menu_inner {
  width: 80%;
  height: 80%;
  max-width: 800px;
  background: #fff;
  padding: 20px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 8px gray;
          box-shadow: 0 0 8px gray;
  border-radius: 3px;
  overflow-x: hidden;
}

.default_header .g_menu_inner a {
  display: block;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  padding: 1rem;
}

.default_header .g_menu {
  cursor: pointer;
  height: 2rem;
  width: 2rem;
  font-size: 2rem;
}

.default_header .g_menu > i {
  vertical-align: top;
}

.default_header .g_menu_close {
  cursor: pointer;
  font-size: 1.5rem;
  height: 1.5rem;
  width: 1.5rem;
  position: absolute;
  right: 20px;
  top: 20px;
}

.default_header .user_ctl_area {
  position: absolute;
  right: 20px;
}

.default_header .user_ctl_name {
  margin-right: 20px;
}

.default_header .mgmt_site_title {
  font-size: 0.5rem;
}

.edit_btn {
  margin-left: 10px;
  cursor: pointer;
}

.rem_btn {
  margin-left: 10px;
  cursor: pointer;
}

.edit_con {
  display: none;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.edit_con.active {
  display: block;
}

.edit_con .edit_con_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 40%;
  padding: 20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  -webkit-box-shadow: 0 0 8px gray;
          box-shadow: 0 0 8px gray;
  border-radius: 5px;
  overflow-y: scroll;
}

.rem_con {
  display: none;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.rem_con.active {
  display: block;
}

.rem_con .rem_con_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 40%;
  padding: 20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  -webkit-box-shadow: 0 0 8px gray;
          box-shadow: 0 0 8px gray;
  border-radius: 5px;
  overflow-y: scroll;
}

#home {
  background: #eee;
}

#home .qr {
  text-align: center;
  margin: 10px auto;
  width: 80%;
  border-radius: 5px;
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

#home .qr img {
  display: inline-block;
  margin: 10px 0;
  width: 100%;
  height: auto;
}

#home .status_area {
  padding: 20px 0;
}

#home .status_area table {
  border: none;
  border-bottom: 1px solid #aaa;
}

#home .status_area table tr {
  border: none;
  border-top: 1px solid #aaa;
}

#home .status_area table td,
#home .status_area table th {
  border: none;
  text-align: left;
  padding: 20px 0;
  width: auto;
}

#home .status_area table td {
  padding-right: 20px;
}

#home .status_area table th {
  padding-left: 20px;
}

#home .big_point {
  display: inline-block;
  font-size: 2rem;
  color: orange;
  font-weight: bold;
}

#home .small_point {
  display: inline-block;
  color: orange;
}

#home table td.point_td {
  text-align: right;
}

#res_date .res_rooms {
  display: none;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

#res_date .res_rooms.active {
  display: block;
}

#res_date .res_rooms .res_rooms_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 40%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  -webkit-box-shadow: 0 0 8px gray;
          box-shadow: 0 0 8px gray;
  border-radius: 5px;
}

#res_date .res_rooms .room_manu_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px auto 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.8rem;
  padding: 0 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#res_date .res_rooms .room_manu_area .m_act,
#res_date .res_rooms .room_manu_area .m_inact,
#res_date .res_rooms .room_manu_area .m_tmp {
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
}

#res_date .res_rooms .room_manu_area .m_act {
  background-color: #00a5b1;
  vertical-align: middle;
}

#res_date .res_rooms .room_manu_area .m_inact {
  background-color: #888;
  vertical-align: middle;
}

#res_date .res_rooms .room_manu_area .m_tmp {
  background-color: tomato;
  vertical-align: middle;
}

#res_date .res_rooms .room_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: auto;
  padding: 10px;
}

#res_date .res_rooms .room {
  width: 24%;
  text-align: center;
}

#res_date .res_rooms .room:first-child {
  margin-left: 0;
}

#res_date .res_rooms .room .btn_input {
  font-size: 0.8rem;
}

#res_date .res_rooms .room .btn_input.is_tmp_active {
  background: tomato;
}

#res_date .res_rooms .room_title {
  padding: 10px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

#res_date .res_rooms .room_title_year {
  display: block;
  font-size: 0.8rem;
}

#res_date .cal_page_nav {
  margin-top: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#res_date .res_detail_box {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  display: none;
}

#res_date .res_detail_box.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#res_date .new_cal {
  border-top: solid 1px #ccc;
  border-left: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  margin-top: 10px;
}

#res_date .new_cal .tr {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#res_date .new_cal .th,
#res_date .new_cal .td {
  width: 12.5%;
  text-align: center;
  border-right: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}

#res_date .new_cal .thead,
#res_date .new_cal .tbody {
  display: block;
}

#res_date .new_cal .thead {
  font-size: 0.8rem;
}

#res_date .new_cal .tbody {
  height: 50vh;
  overflow-y: scroll;
}

#res_date .new_cal .day_btn,
#res_date .new_cal .day_end,
#res_date .new_cal .the_time,
#res_date .new_cal .the_day {
  position: relative;
  width: 100%;
  height: 100%;
}

#res_date .new_cal .day_btn > span,
#res_date .new_cal .day_end > span,
#res_date .new_cal .the_time > span,
#res_date .new_cal .the_day > span {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#res_date .new_cal .the_time {
  font-size: 0.8rem;
}

#res_date .day_btn_b {
  color: tomato;
  font-weight: bold;
  font-family: monospace;
  font-size: 1.2rem;
}

#res_date .day_btn_b.act {
  background-color: tomato;
  color: #fff;
}

#res_date .day_btn_s {
  color: orange;
  font-weight: bold;
  font-family: monospace;
  font-size: 1.2rem;
}

#res_date .day_btn_s.act {
  background-color: orange;
  color: #fff;
}

#res_date .day_btn_m {
  color: blue;
  font-weight: bold;
  font-family: monospace;
  font-size: 1.2rem;
}

#res_date .day_btn_m.act {
  background-color: blue;
  color: #fff;
}

#res_date .day_end_m {
  color: #333;
  font-weight: bold;
  font-family: monospace;
  font-size: 1.2rem;
  background-color: #eee;
}

#res_date .icon_manual {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.8rem;
}

#payment_res #payment_pointonly_submit {
  display: none;
}

#payment_res_confirm .registed_card,
#payment_get_point_confirm .registed_card {
  text-align: center;
  margin-top: 10px;
  border: solid 1px #ccc;
  padding: 50px 0;
  border-radius: 5px;
  font-size: 1.2rem;
  background-color: floralwhite;
  font-weight: bold;
}

#payment_res_confirm .form_title,
#payment_get_point_confirm .form_title {
  margin-top: 60px;
}

#payment_res_confirm .registed_card_box,
#payment_get_point_confirm .registed_card_box {
  margin-top: 10px;
}

#payment_res_confirm .btn_input,
#payment_get_point_confirm .btn_input {
  margin-top: 10px;
}

#payment_res_confirm #card-container,
#payment_get_point_confirm #card-container {
  padding: 10px;
  background-color: #ccc;
}

main .text_input {
  width: 100%;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding: 10px;
  margin-top: 10px;
}

main .btn_input {
  font-size: 1.2rem;
}

#use_history table {
  font-size: 0.8rem;
}

#use_history .history_page_nav {
  text-align: center;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#use_history .history_page_nav a {
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin: 0 20px;
}

footer {
  background-color: #333;
}

footer .footer_inner {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer_inner .logo_area {
  width: 30%;
}

footer .footer_inner .logo_area img {
  width: 100%;
  height: auto;
}

footer .footer_inner .info_area {
  width: 65%;
}

/*---------------------------
▲▲▲　END #c　▲▲▲
---------------------------*/
:root {
  --color-white: #fff;
  --color-black: #333;
  --color-gray: #75787b;
  --color-gray-light: #bbb;
  --color-gray-disabled: #e8e8e8;
  --color-green: #53a318;
  --color-green-dark: #383;
  --font-size-small: 0.75rem;
  --font-size-default: 0.875rem;
}

h2 {
  color: var(--color-gray);
  font-size: var(--font-size-small);
  line-height: 1.5;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
}

section {
  margin-bottom: 2rem;
}

.progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 20px 0 20px 0;
}

.progress-bar li {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  position: relative;
  padding: 14px 0 0 0;
  font-size: var(--font-size-default);
  line-height: 1.5;
  color: #00a5b1;
  font-weight: 600;
  white-space: nowrap;
  overflow: visible;
  min-width: 0;
  text-align: center;
  border-top: 10px solid var(--color-gray-disabled);
}

.progress-bar li:first-child,
.progress-bar li:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.progress-bar li:last-child {
  text-align: right;
}

.progress-bar li:before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  background-color: var(--color-gray-disabled);
  border-radius: 50%;
  border: 3px solid var(--color-white);
  position: absolute;
  left: calc(50% - 6px);
  top: -16px;
  z-index: 3;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.progress-bar li:first-child:before {
  left: 0;
}

.progress-bar li:last-child:before {
  right: 0;
  left: auto;
}

.progress-bar span {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.progress-bar li:not(.is-active) span {
  opacity: 0;
}

.progress-bar .is-complete:not(:first-child):after,
.progress-bar .is-active:not(:first-child):after {
  content: '';
  display: block;
  width: 98%;
  position: absolute;
  bottom: 34px;
  left: -48%;
  z-index: 2;
  border-bottom: 10px solid #00a5b1;
}

.progress-bar li:last-child span {
  width: 200%;
  display: inline-block;
  position: absolute;
  left: -100%;
}

.progress-bar .is-complete:last-child:after,
.progress-bar .is-active:last-child:after {
  width: 200%;
  left: -100%;
}

.progress-bar .is-complete:before {
  background-color: #00a5b1;
}

.progress-bar .is-active:before,
.progress-bar li:hover:before,
.progress-bar .is-hovered:before {
  background-color: var(--color-white);
  border-color: #00a5b1;
}

.progress-bar li:hover span,
.progress-bar li.is-hovered span {
  opacity: 1;
}

.progress-bar:hover li:not(:hover) span {
  opacity: 0;
}

.x-ray .progress-bar,
.x-ray .progress-bar li {
  border: 1px dashed red;
}

.progress-bar .has-changes {
  opacity: 1 !important;
}

.progress-bar .has-changes:before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  left: calc(50% - 4px);
  bottom: -20px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%208%208%22%3E%3Cpath%20fill%3D%22%23ed1c24%22%20d%3D%22M4%200l4%208H0z%22%2F%3E%3C%2Fsvg%3E");
}
