@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}

/*
  main
*/

main {
  -webkit-overflow-scrolling: touch;
  padding-top: 56px;
}

/*
  イメージFIT
*/

.image-range {
  position: relative;
}

.image-range .image-fit {
  width: 100vw;
  height: calc(100vw * 5 / 8);
  object-fit: contain;
  -o-object-fit: contain;
}

.image-range .stock-out {
  -webkit-filter: brightness(60%);
          filter: brightness(60%);
}

.image-range .stock-out-msg {
  position: absolute;
  width: 70%;
  top: 40%;
  left: 15%;
  font-size: 12px;
  padding: 7px;
  background-color: #D92121;
  text-align: center;
  border-radius: 54px;
  color: #FFF;
}

/*
  メニュー詳細
*/

.details-description {
  margin: 10px 17px;
  font-size: 12px;
}

.details-description div {
  margin: 15px 0px;
}

.details-description span:first-of-type {
  font-size: 16px;
}

.details-description .menu-comment span.more-text {
  font-size: 12px;
}

.details-description .menu-comment a.more {
  margin-left: 10px;
  color: #EBA941;
  font-size: 12px;
}

/*
  accordion
*/

.accordion {
  margin-bottom: 15px;
}

.card {
  border: none;
}

.card-header {
  padding: 0px;
  background-color: #FFFFFF;
  border-bottom: none;
}

.card-body {
  font-size: 12px;
  padding: 0px;
  margin: 10px 17px;
}

.btn {
  margin: 0px;
  font-size: 12px;
}

.btn.btn-link {
  width: 100%;
  color: #3C3C3C;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn.btn-link:hover {
  color: #3C3C3C;
  text-decoration: none;
}

.btn .arrow-icon {
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.btn .arrow-icon + .text {
  width: calc(100% - 20px);
  display: block;
  height: 20px;
  line-height: 22px;
  padding-left: 5px;
  text-align: left;
}

.btn a.allergy-link {
  font-size: 12px;
}

.btn.active .arrow-icon {
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.btn-disabled {
  opacity: .2 !important;
}

/*
  option
*/

.option-menu {
  position: -webkit-sticky;
  position: sticky;
  top: 56px;
  z-index: 2;
}

.option {
  padding: 10px 15px;
  font-size: 12px;
  /*
  .option-modal-price {
    position: absolute;
    top: 80%;
    font-size: 12px;
    font-weight: bold;
    width: 50%;
    right:0;
    color: #1c1c1c;
  }
  */
}

.option .option-text {
  position: absolute;
  top: 55%;
  font-size: 12px;
  width: 100%;
  left: 0;
  letter-spacing: -1px;
  line-height: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /* autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.option .option-price {
  position: absolute;
  top: 82%;
  font-size: 12px;
  font-weight: bold;
  width: 100%;
  left: 0;
  color: #1c1c1c;
  letter-spacing: -1px;
}

.option .option-price .intax-price {
  font-weight: normal;
  font-size: 10px;
}

@media only screen and (max-width: 360px) {
  .option .option-text {
    font-size: 11px;
    line-height: 14px;
  }
}

.option .option-modal-cnt {
  position: absolute;
  top: 80%;
  font-size: 12px;
  font-weight: bold;
  width: 40%;
  left: 0;
  color: #1c1c1c;
  display: none;
}

.option .check {
  display: none;
}

.option-img {
  margin: 6px 16px;
  margin-right: 0px;
  padding: 0px;
  width: 12px;
  height: auto;
}

.option-img ~ span {
  font-size: 16px;
}

.choosen {
  padding: 4px 16px;
  font-size: 12px;
  color: #3e3e3e;
}

.choices {
  margin-top: 10px;
}

.menu-button {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.menu-button .check-btn.active svg {
  opacity: 1.0;
}

.menu-button .check-btn svg {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 25px;
}

.menu-button .check-btn svg g {
  fill: #EBA941;
  stroke: #fff;
}

.menu-button .out-square {
  width: calc((100vw - 60px) / 3);
  margin-top: 10px;
}

.menu-button .out-square:nth-child(3n - 1) {
  margin-left: 15px;
  margin-right: 15px;
}

.menu-button .out-square .price-area {
  width: 100%;
  text-align: center;
}

.menu-button .out-square .price-area span {
  display: block;
  white-space: nowrap;
}

.menu-button .out-square .price-area span:first-child {
  font-weight: bold;
}

.menu-button .out-square .btn-option {
  position: relative;
  padding: 0;
  width: 100%;
  height: calc((100vw - 60px) / 3);
}

.menu-button .out-square .btn-option.stock-out {
  background-color: #777777;
}

.menu-button .out-square .btn-option.checked {
  border: 2px solid #EBA941 !important;
  background-color: rgba(235, 169, 65, 0.3) !important;
}

.menu-button .out-square .btn-option .option-image {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  height: 50%;
  overflow: hidden;
}

.menu-button .out-square .btn-option .option-image img {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  width: 100%;
  height: 100%;
  object-fit: contain;
  -o-object-fit: contain;
}

.menu-button .out-square .btn-option .option-image .stock-out {
  -webkit-filter: brightness(60%);
          filter: brightness(60%);
}

.menu-button .out-square .btn-option .modal {
  width: 80%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.menu-button .out-square .btn-option .modal .modal-body {
  position: relative;
  padding: 15px;
}

.menu-button .out-square .btn-option .modal .modal-body .btn-close {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 50px;
}

.menu-button .out-square .btn-option .modal .modal-body svg g line {
  stroke: #EBA941;
}

.menu-button .out-square .btn-option .modal .modal-body .image {
  width: 50%;
  margin: 0 auto;
}

.menu-button .out-square .btn-option .modal .modal-body .image img {
  width: 100%;
  height: calc((300px - 60px) / 3);
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.menu-button .out-square .btn-option .modal .modal-body .count-minus,
.menu-button .out-square .btn-option .modal .modal-body .count-plus {
  width: 34px;
  padding-bottom: 38px;
}

.menu-button .out-square .btn-option .stock-out-msg {
  position: absolute;
  width: 75%;
  height: 30%;
  top: 35%;
  left: 12%;
  font-size: 12px;
  padding: 5px;
  background-color: #D92121;
  text-align: center;
  border-radius: 54px;
  color: #FFF;
}

.menu-button .out-square .btn-option .stock-out-msg .msg-area div {
  margin: 0 auto;
}

.menu-button .btn-outline-light {
  color: #3C3C3C;
  border-color: #DEDEDE !important;
  background: #FFFFFF !important;
}

.require {
  display: block;
  width: 40px;
  height: 20px;
  padding: 0px 5px;
  background-color: #D92121;
  font-size: 12px;
  color: #FFFFFF;
  text-align: center;
  border-radius: 54px;
}

/*
　値段、確定
*/

.float {
  float: right;
}

.price-menu {
  padding: 6px 16px 40px 16px;
}

.price-menu .price {
  display: inline-block;
}

.price-menu .price span {
  font-size: 20px;
}

.price-menu .price span:last-of-type {
  font-size: 12px;
}

.price-menu .counter {
  margin: 6px auto;
  font-size: 20px;
}

.price-menu .counter .btn {
  padding: 0px;
  width: 34px;
  height: 34px;
}

.price-menu .counter .fill-color {
  fill: #EBA941;
}

.btn-block {
  display: inline-block;
  width: 100%;
  margin: 22px 0px;
}

.btn-cartadd {
  font-size: 17px;
  padding: 0.53125rem 0.75rem;
}

.data-area {
  display: none;
}

/*
  modal-menu
*/

.modal {
  max-width: 300px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.modal .modal-body {
  position: relative;
  padding: 15px;
  text-align: center;
}

.modal .modal-body .btn-close {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 50px;
}

.modal .modal-body svg g line {
  stroke: #EBA941;
}

.modal .modal-body .modal-alcohol_check-msg {
  width: 100%;
  text-align: center;
}

.modal .modal-body .modal-alcohol_check-icon {
  float: left;
  width: 40px;
  padding-top: 10px;
  margin-left: 10%;
}

.modal .modal-body .modal-alcohol_check-text {
  float: left;
  width: 60%;
}

.modal .modal-body .modal-alcohol_check-msg-over20 {
  padding-top: 20px;
  font-size: 20px;
  font-weight: bold;
  width: 65%;
  margin: 0 auto;
  text-align: center;
  clear: both;
}

.modal .modal-body .modal-alcohol_check-msg-identifi {
  font-size: 12px;
  width: 65%;
  margin: 0 auto;
  color: #3C3C3C;
  text-align: center;
}

.modal-content {
  position: relative;
  width: -moz-fit-content;
  max-width: 300px;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, 40%);
  transform: translate(-50%, 40%);
}

.modal-window {
  font-size: 16px;
  text-align: center;
}

.modal-window .btn {
  margin: 16px;
  padding: 0px;
  height: 20px;
}

.modal-window div {
  margin-top: 9px;
}

.modal-window span {
  font-size: 20px;
}

.modal-body .image {
  width: 60% !important;
  height: auto;
}

.modal-body .btn {
  font-size: 20px;
  width: 60%;
}

.modal-body .btn-modal {
  font-size: 15px;
  width: 60%;
}

/*
　デザイン調整暫定対応
*/

#menuTypeModal {
  max-width: none;
  left: 0;
  -webkit-transform: translate3d(0, 0, 1050px);
  transform: translateX(0, 0, 1050px);
}

#menuTypeModal .modal-body {
  position: relative;
  padding: 15px;
  text-align: center;
  width: none;
}

#menuTypeModal .modal-body .btn-close {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 50px;
}

#menuTypeModal .modal-body svg g line {
  stroke: #EBA941;
}

#menuTypeModal .modal-content {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, 40%);
  transform: translate(-50%, 40%);
}

#menuTypeModal .modal-window {
  font-size: 16px;
  text-align: center;
}

#menuTypeModal .modal-window .btn-block {
  display: block;
}

#menuTypeModal .modal-window .btn {
  margin: 16px 0px;
  padding: 0px;
  height: 25px;
  width: 100%;
}

#menuTypeModal .modal-window div {
  margin-top: 9px;
}

#menuTypeModal .modal-window span {
  font-size: 20px;
}

#menuTypeModal .modal-window p {
  text-align: center;
}

