*,
*::after,
*::before {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  box-sizing: border-box;
}

:root {
  --primary-color: #4dbbae;
  --secondary-color: #FF8E00;
}

body {
  font-family: Arial, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 1.6;
  color: #0a0a0a;
  background-color: #F5F5F5;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

html,
body {
  height: 100%;
}

img {
  text-decoration: none;
  vertical-align: top;
  font-size: 0px;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  box-sizing: border-box;
  outline: none;
}

a:not([class]) {
  text-decoration: underline;
}

button {
  appearance: none;
  background: transparent;
  cursor: pointer;
}

/* class */
.bg-white {
  background-color: #fff;
}
.bg-dark-gray {
  background-color: #737373;
}
.bg-gray {
  background-color: #E5E5E5;
}
.bg-pink {
  background-color: #FEDFDF;
}
.bg-green {
  background-color: #4DBBAE;
}
.min-height100 {
  min-height: calc(100% - 55px);
}
.button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.25);
  gap: 10px;
  line-height: 1;
}
.button--clear-right-round {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.button--clear-left-round {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.button--clear-shadow {
  box-shadow: none;
}
.button--fit {
  width: fit-content;
}
.button--gray {
  border: 1px solid #a3a3a3;
  background-color: #a3a3a3;
  color: #fff;
}

.button--gray-gradient {
  border: 1px solid #D4D4D4;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(211, 211, 211, 1) 100%);
  color: #0a0a0a;
}
.button--orange-gradient {
  border: 1px solid #D77D2D;
  background: linear-gradient(180deg, rgba(255, 169, 63, 1) 0%, rgba(199, 109, 0, 1) 100%);
}
.button--fat-border {
  border-width: 2px;
}
.button--fat {
  padding: 25px;
}
.button--slim {
  padding: 7px 15px;
}
.button--middle {
  padding: 11px;
}
.text-input {
  display: block;
  width: 100%;
  border-radius: 4px;
  padding: 15px;
  border: 1px solid #e5e5e5;
}
.text-input.is-hidden {
  display: none;
}

.select {
  width: 100%;
  position: relative;
}
.select:after {
  content: '\e5cf';
  font-family: 'Material Icons';
  font-size: 24px;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  pointer-events: none;
}

.select__body {
  display: block;
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 20px 15px;
  background-color: #fff;
  font-size: 14px;
  appearance: none;
}
.floating-bottom-nav {
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: #fff;
  padding: 8px;
}
.bottom-nav {
  background-color: #fff;
  padding: 8px;
}

.order-header {
  background-color: #fff;
  border-bottom: 1px solid #E5E5E5;
  padding: 10px 0;
  white-space: nowrap;
  overflow: auto;
  position: sticky;
  top: 0;
  left: 0;
}
.order-header__body {
  display: inline-flex;
  gap: 8px;
  padding: 0 10px;
}
.order-body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 75px 1fr;
  height: 100%;
}
.order-body__header {
  grid-column: 1 /3;
  grid-row: 1 / 2;
}
.order-body__side {
  grid-column: 1 /2;
  grid-row: 2 / 3;
  background-color: #fff;
  border-right: 1px solid #E5E5E5;
  overflow: auto;
}
.order-body__side-button {
  min-height: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #737373;
  padding: 5px;
  line-height: 1.2;
}
.order-body__side-button.is-active {
  color: inherit;
  background-color: #f5f5f5;
}
.order-body__main {
  grid-column: 2 /3;
  grid-row: 2 / 3;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: auto;
}
.order-body__footer {
  grid-column: 1 /3;
  grid-row: 3 / 4;
}

.order-card {
  border: 1px solid #E5E5E5;
  background-color: #fff;
  padding: 15px 10px;
  border-radius: 2px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.modal {
  display: none;
}

.modal__overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5000;
}

.modal__head {
  text-align: center;
  background-color: #f00;
  padding: 10px;
}

.modal__body {
  padding: 25px 10px;
}

.modal__contents {
  width: calc(100% - 50px);
  transform: translateY(0);
  opacity: 1;
  transform-origin: 50%;
  max-height: calc(100% - 60px);
  background-color: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  overflow: auto;
}

.modal__header {
  display: flex;
  background-color: var(--primary-color);
  align-items: center;
  padding: 15px;
  justify-content: space-between;
}

.modal__title {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}

.modal__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.modal__buttons--single {
  grid-template-columns: 50%;
  justify-content: center;
}

.modal__close {
  line-height: 1;
  color: #fff;
  font-size: 24px;
}

.modal.is-open {
  display: block;
}

.modal[aria-hidden=false] .modal__overlay {
  animation: modalBgFadeIn 250ms ease;
}

.modal[aria-hidden=false] .modal__contents {
  animation: modalSlideIn 250ms ease;
}

.modal[aria-hidden=true] .modal__overlay {
  animation: modalBgFadeOut 250ms ease;
}

.modal[aria-hidden=true] .modal__contents {
  animation: modalSlideOut 250ms ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes modalSlideOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(30px);
    opacity: 0;
  }
}

@keyframes modalBgFadeIn {
  from {
    background-color: rgba(0, 0, 0, 0);
  }

  to {
    background-color: rgba(0, 0, 0, 0.6);
  }
}

@keyframes modalBgFadeOut {
  from {
    background-color: rgba(0, 0, 0, 0.6);
  }

  to {
    background-color: rgba(0, 0, 0, 0);
  }
}

.badge {
  display: block;
  font-size: 14px;
  padding: 0 4px;
  background-color: var(--secondary-color);
  width: fit-content;
  color: #fff;
  border-radius: 2px;
  white-space: nowrap;
}
.badge--large {
  font-size: 16px;
  font-weight: bold;
  padding: 5px;
}
.badge--red {
  background-color: #f00;
}

.counter-control {
  display: grid;
  grid-template-columns: repeat(3, 35px);
  align-items: center;
  text-align: center;
}

.counter-control__button {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D4D4D4;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(211, 211, 211, 1) 100%);
  color: inherit;
}
.counter-control__button.is-inactive {
  background: #fff;
}

.user-board {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border: 1px solid #D4D4D4;
  padding: 8px;
  border-radius: 4px;
}
.user-board--yellow {
  background: #FFFCE1;
}
.user-board--borderless {
  border-radius: 0;
  border: none;
}
.user-board__name {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
}
.user-board__icons {
  display: flex;
  gap: 5px;
}
.user-board.is-hidden {
  display: none;
}

.user-search {
  position: relative;
}
.user-search__result {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  background-color: #F5F5F5;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}
.item-list>*+* {
  border-top: 1px solid #d4d4d4;
}
.radio-selector__input {
  display: none;
}
.radio-selector__label {
  padding-left: 30px;
  display: block;
  position: relative;
}
.radio-selector__label:before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: 1px solid #D4D4D4;
  position: absolute;
  left: 0;
  top: 0;
}
.radio-selector__input:checked + .radio-selector__label:after {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 20px;
    position: absolute;
    left: 3px;
    top: 3px;
    background: var(--primary-color);
}
.checkbox-selector__input {
  display: none;
}

.checkbox-selector__label {
  padding-left: 30px;
  display: block;
  position: relative;
}

.checkbox-selector__label:before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid #D4D4D4;
  position: absolute;
  left: 0;
  top: 0;
}
.checkbox-selector__input:checked+.checkbox-selector__label:before {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.checkbox-selector__input:checked+.checkbox-selector__label:after {
  content: '\e876';
  font-family: 'Material Icons';
  font-size: 20px;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
}
.three-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.six-column {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.color-inherit {
  color: inherit;
}
.color-primary {
  color: var(--primary-color);
}
.color-red {
  color: #e00;
}
.color-orange {
  color: #FF8E00;
}
.color-gray {
  color: #737373;
}
.color-light-gray {
  color: #a3a3a3;
}
.color-green {
  color: #02AB09;
}
.color-white {
  color: #fff;
}
.narrow-text-line {
  line-height: 1.2;
}

.pass-box {
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background-color: #fff;
  font-size: 28px;
  border-radius: 4px;
}


.border-bottom {
  border-bottom: 1px solid #E5E5E5;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: 10px;
}

.basic-table {
  width: 100%;
}

.basic-table__head {
  background-color: #e5e5e5;
}
.basic-table__body {
  background-color: #fff;
}

.basic-table__cell {
  padding: 8px;
  border-bottom: 1px solid #e5e5e5;
  line-height: 1.2;
  vertical-align: middle;
}

.basic-table__cell.is-disabled {
  opacity: .5;
}
.border-bottom {
  border-bottom: 1px solid #E5E5E5;
}
.color-secondary {
  color: var(--secondary-color);
}
.weight-normal {
  font-weight: normal;
}
.weight-bold {
  font-weight: bold;
}
.white-space-nowarp {
  white-space: nowrap;
}
.w100 {
  width: 100px;
}
.fz10 {
  font-size: 10px;
}
.fz11 {
  font-size: 11px;
}
.fz12 {
  font-size: 12px;
}
.fz13 {
  font-size: 13px;
}
.fz14 {
  font-size: 14px;
}
.fz15 {
  font-size: 15px;
}
.fz16 {
  font-size: 16px;
}
.fz20 {
  font-size: 20px;
}
.fz25 {
  font-size: 25px;
}
.fz28 {
  font-size: 28px;
}
.fz32 {
  font-size: 32px;
}
.fz40 {
  font-size: 40px;
}
.vertical-top {
  vertical-align: top;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-truncate {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.flex-inline {
  display: inline-flex;
}
.flex-column {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.align-center {
  align-items: center;
}

.align-baseline {
  align-items: baseline;
}

.content-start {
  align-content: flex-start;
}

.content-end {
  align-content: flex-end;
}

.content-center {
  align-content: center;
}

.content-between {
  align-content: space-between;
}

.content-around {
  align-content: space-around;
}

.content-stretch {
  align-content: stretch;
}

.self-auto {
  align-self: auto;
}

.self-start {
  align-self: flex-start;
}

.self-end {
  align-self: flex-end;
}

.self-center {
  align-self: center;
}

.self-baseline {
  align-self: baseline;
}

.self-stretch {
  align-self: stretch;
}

.gap5 {
  gap: 5px;
}

.gap10 {
  gap: 10px;
}
.gap15 {
  gap: 15px;
}
.gap20 {
  gap: 20px;
}

/* Padding */
.pa0 {
  padding: 0;
}

.pl0 {
  padding-left: 0;
}

.pr0 {
  padding-right: 0;
}

.pt0 {
  padding-top: 0;
}

.pb0 {
  padding-bottom: 0;
}

.pa5 {
  padding: 5px;
}

.pl5 {
  padding-left: 5px;
}

.pr5 {
  padding-right: 5px;
}

.pt5 {
  padding-top: 5px;
}

.pb5 {
  padding-bottom: 5px;
}

.pa10 {
  padding: 10px;
}

.pl10 {
  padding-left: 10px;
}

.pr10 {
  padding-right: 10px;
}

.pt10 {
  padding-top: 10px;
}

.pb10 {
  padding-bottom: 10px;
}

.pa15 {
  padding: 15px;
}

.pl15 {
  padding-left: 15px;
}

.pr15 {
  padding-right: 15px;
}

.pt15 {
  padding-top: 15px;
}

.pb15 {
  padding-bottom: 15px;
}

.pa20 {
  padding: 20px;
}

.pl20 {
  padding-left: 20px;
}

.pr20 {
  padding-right: 20px;
}

.pt20 {
  padding-top: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.pa25 {
  padding: 25px;
}

.pl25 {
  padding-left: 25px;
}

.pr25 {
  padding-right: 25px;
}

.pt25 {
  padding-top: 25px;
}

.pb25 {
  padding-bottom: 25px;
}

.pa30 {
  padding: 30px;
}

.pl30 {
  padding-left: 30px;
}

.pr30 {
  padding-right: 30px;
}

.pt30 {
  padding-top: 30px;
}

.pb30 {
  padding-bottom: 30px;
}

.pa35 {
  padding: 35px;
}

.pl35 {
  padding-left: 35px;
}

.pr35 {
  padding-right: 35px;
}

.pt35 {
  padding-top: 35px;
}

.pb35 {
  padding-bottom: 35px;
}

.pa40 {
  padding: 40px;
}

.pl40 {
  padding-left: 40px;
}

.pr40 {
  padding-right: 40px;
}

.pt40 {
  padding-top: 40px;
}

.pb40 {
  padding-bottom: 40px;
}

.pa45 {
  padding: 45px;
}

.pl45 {
  padding-left: 45px;
}

.pr45 {
  padding-right: 45px;
}

.pt45 {
  padding-top: 45px;
}

.pb45 {
  padding-bottom: 45px;
}

.pa50 {
  padding: 50px;
}

.pl50 {
  padding-left: 50px;
}

.pr50 {
  padding-right: 50px;
}

.pt50 {
  padding-top: 50px;
}

.pb50 {
  padding-bottom: 50px;
}

/* Margin */
.ma0 {
  margin: 0;
}

.ml0 {
  margin-left: 0;
}

.mr0 {
  margin-right: 0;
}

.mt0 {
  margin-top: 0;
}

.mb0 {
  margin-bottom: 0;
}

.ma5 {
  margin: 5px;
}

.ml5 {
  margin-left: 5px;
}

.mr5 {
  margin-right: 5px;
}

.mt5 {
  margin-top: 5px;
}

.mb5 {
  margin-bottom: 5px;
}

.ma10 {
  margin: 10px;
}

.ml10 {
  margin-left: 10px;
}

.mr10 {
  margin-right: 10px;
}

.mt10 {
  margin-top: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.ma15 {
  margin: 15px;
}

.ml15 {
  margin-left: 15px;
}

.mr15 {
  margin-right: 15px;
}

.mt15 {
  margin-top: 15px;
}

.mb15 {
  margin-bottom: 15px;
}

.ma20 {
  margin: 20px;
}

.ml20 {
  margin-left: 20px;
}

.mr20 {
  margin-right: 20px;
}

.mt20 {
  margin-top: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.ma25 {
  margin: 25px;
}

.ml25 {
  margin-left: 25px;
}

.mr25 {
  margin-right: 25px;
}

.mt25 {
  margin-top: 25px;
}

.mb25 {
  margin-bottom: 25px;
}

.ma30 {
  margin: 30px;
}

.ml30 {
  margin-left: 30px;
}

.mr30 {
  margin-right: 30px;
}

.mt30 {
  margin-top: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.ma35 {
  margin: 35px;
}

.ml35 {
  margin-left: 35px;
}

.mr35 {
  margin-right: 35px;
}

.mt35 {
  margin-top: 35px;
}

.mb35 {
  margin-bottom: 35px;
}

.ma40 {
  margin: 40px;
}

.ml40 {
  margin-left: 40px;
}

.mr40 {
  margin-right: 40px;
}

.mt40 {
  margin-top: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.ma45 {
  margin: 45px;
}

.ml45 {
  margin-left: 45px;
}

.mr45 {
  margin-right: 45px;
}

.mt45 {
  margin-top: 45px;
}

.mb45 {
  margin-bottom: 45px;
}

.ma50 {
  margin: 50px;
}

.ml50 {
  margin-left: 50px;
}

.mr50 {
  margin-right: 50px;
}

.mt50 {
  margin-top: 50px;
}

.mb50 {
  margin-bottom: 50px;
}
.w5p {
  width: 5%;
}

.w10p {
  width: 10%;
}

.w15p {
  width: 15%;
}

.w20p {
  width: 20%;
}

.w25p {
  width: 25%;
}

.w30p {
  width: 30%;
}

.w35p {
  width: 35%;
}

.w40p {
  width: 40%;
}

.w45p {
  width: 45%;
}

.w50p {
  width: 50%;
}

.w55p {
  width: 55%;
}

.w60p {
  width: 60%;
}

.w65p {
  width: 65%;
}

.w70p {
  width: 70%;
}

.w75p {
  width: 75%;
}

.w80p {
  width: 80%;
}

.w85p {
  width: 85%;
}

.w90p {
  width: 90%;
}

.w95p {
  width: 95%;
}

.w100p {
  width: 100%;
}