/* for PC */
/* PC用ここから */
@media screen and (min-width: 768px) {
  /* PC用のスタイルを指定する */


.popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /* width: 100%; */
  /* height: 100%; */
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: auto;
  padding-right: auto;
  z-index: 900;
}

.popup-content {
  background: #fff;
  padding: 20px 50px;
  border-radius: 8px;
  width: 90%;
  max-width: 1130px;
  position: relative;
  height: 80vh;
  overflow-y: scroll;
}

#close-popup {
  position: absolute;
  right: 20px;
  border: none;
  width: 30px;
  height: 30px;
  background-color: #fff;
  font-size: 2em;
}

.menu-tabs {
  list-style: none;
  display: flex;
}

.menu-tabs li {
  border-top: solid 4px;
  border-left: solid 4px;
  border-right: solid 4px;
  border-bottom: solid 4px; 
  margin-right: -4px;
  border-radius: 10px 10px 0 0;
  width: 100px;
  height: 40px;
  display: flex;
  justify-content: center;
  border-color: #E1B43E;
  background-color: #F3E1B2;
}

.menu-tabs button {
  margin: 5px;
  letter-spacing: 1em;
  text-indent: 1em;
  border-radius: 0;
  border: none;
  color: #fff;
}

.menu-tabs button.japanese {
  background-color: #E1B43E;
}

.menu-tabs button.western {
  background-color: #4AE13E;
}
.menu-tabs button.chinese {
  background-color: #FD3C2F;
}

.menu-tabs li:has(.active) {
  border-bottom-color: #F3E1B2;
}

.menu-list {
  list-style: none;
  flex-wrap: wrap;
  border: solid 4px #E1B43E;
  background-color: #F3E1B2;
  margin-top: -20px;
  padding: 10px;
  /* align-items: stretch; */
}

.menu-item > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.menu-item {
  width: 250px;
  height: 97%;
  display: flex;
  flex-direction: column;
  padding: 10px;
  border: 1px solid #ddd;
  margin: 10px;
  cursor: pointer;
  background-color: #fff;
  position: relative;
  border-radius: 10px;
}

.menu-item > h5 {
  margin: 0.5em 0;
  font-size: 1.1rem;
  text-align: start;
  height: 2.8em;
  color: #63501E;
}

.menu-item > p {
  margin: 0;
  font-size: 0.8rem;
  text-align: start;
  color: #60340C;
}

.menu-item:hover:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255,255,255,.1);
}

.menu-item:hover {
  border: solid 5px #FF6D1F;
  border-radius: 10px;
  transform: scale(1.05);
  z-index: 100;
}

button:disabled {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
}

.test-height {
  height: 1500px;
}

#menu-from {
  max-width: 700px;
  width: 95%;
  margin: 30px auto;
}

.day-selector {
  border: solid 1px #E1B43E;
  border-radius: 10px;
  margin: 10px;
  padding: 10px 20px;
  background-color: #fff;
  display: flex;
  justify-content: space-around;
}

.day-selector > label {
  line-height: 50px;
}

.menu-select-button {
  width: 80%;
  height: 50px;
  display: flex;
  align-items: center;
  background-color: #F3E1B2;
  border: none;
  color: #524E4D;
  padding-left: 50px;
}

.menu-select-button > img {
  margin-right: 20px;
  object-fit: cover;
  object-position: center;
}

#submit-order, .omakase-order {
  display: flex;
  margin: 50px auto;
  height: 50px;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  background-color: #FF6D1F;
  color: #fff;
  border: none;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  padding-left: 1em;
  padding-right: 1em;
}

#submit-order:hover:before ,.omakase-order:hover:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255,255,255,.5);
}

#submit-order > i {
  margin-right: 1em;
}

.woocommerce-cart-form__cart-item {
  display: flex;
  flex-direction: column;
  border: none;
}

.woocommerce-cart-form__contents th {
  display: none;
}

.woocommerce-cart-form__contents td {
  border: none;
  border-top: none;
}

.product-remove {
  display: none;
}

.product-thumbnail {
  display: none;
}

.product-price {
  display: none;
}

.woocommerce-cart-form .product-subtotal {
  display: none;
}

.product-name > a {
  pointer-events: none;
  color: #524E4D;
  font-weight: 700;
  text-decoration: none;
}

.woocommerce-cart-form th.product-quantity {
  display: none;
}

.woocommerce-cart-form .variation {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 30px;
  padding: 20px 10px;
  border: solid 1px #E1B43E;
}


.woocommerce-cart-form dd.variation- {
  width: 140px;
}

.wc-proceed-to-checkout {
  display: none;
}

dd.variation- > p {
  font-size: 0.9rem;
}

dt.variation- {
  font-size: 0.8rem;
  background-color: #F3E1B2;
  height: fit-content;
  padding: 3px;
  border-radius: 20px;
  color: #60340C;
}

.input-text.qty.text {
  height: 50px;
  font-size: 1.2rem;
}

.woocommerce-cart-form .product-quantity {
  display: flex;
  justify-content: flex-end;
}

.woocommerce-cart-form .product-quantity::before {
  content: '複数名分のご注文の際は、こちらから数量を変更してください';
  line-height: 50px;
}

.cart_totals > h2 {
  font-size: 1.2rem;
}

.checkout-button {
  background-color: #FF6D1F;
}

.woocommerce-checkout-review-order-table img {
  display: none;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
  width: 70%;
}

.woocommerce-billing-fields__field-wrapper input {
  height: 40px;
}

.select2-selection.select2-selection--single {
  height: 40px;
}

.woocommerce-checkout h3 {
  font-size: 1.2rem;
}

#place_order {
  display: flex;
  margin: 50px auto;
  width: 250px;
  height: 50px;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  background-color: #FF6D1F;
  color: #fff;
  border: none;
  font-size: 24px;
  font-weight: 700;
}

#place_order:hover {
  opacity: 0.5;
}

.woocommerce-checkout .cart-subtotal {
  display: none;
}

#checkout .col-1 {
  width: 100%;
  margin-bottom: 50px;
}

#checkout {
  margin-bottom: 100px;
}

.woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: baseline;
}

}

/* for SP */
/* SP用ここから */
@media screen and (max-width: 767px) {
  /* PC用のスタイルを指定する */
  .popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 50px;
    padding-left: auto;
    padding-right: auto;
  }
  
  .popup-content {
    background: #fff;
    padding: 20px 10px;
    border-radius: 8px;
    width: 98%;
    position: relative;
    height: 80vh;
    overflow-y: scroll;
  }
  
  #close-popup {
    position: absolute;
    right: 10px;
    top: 10px;
    border: none;
    width: 30px;
    height: 30px;
    background-color: #fff;
    font-size: 2rem;
  }
  
  .menu-tabs {
    list-style: none;
    display: flex;
    padding: 0;
  }
  
  .menu-tabs li {
    border-top: solid 4px;
    border-left: solid 4px;
    border-right: solid 4px;
    border-bottom: solid 4px; 
    margin-right: -4px;
    border-radius: 10px 10px 0 0;
    width: 100px;
    height: 40px;
    display: flex;
    justify-content: center;
    border-color: #E1B43E;
    background-color: #F3E1B2;
  }
  
  .menu-tabs button {
    margin: 5px;
    letter-spacing: 0.5em;
    text-indent: 0.5em;
    border-radius: 0;
    border: none;
    color: #fff;
  }
  
  .menu-tabs button.japanese {
    background-color: #E1B43E;
  }
  
  .menu-tabs button.western {
    background-color: #4AE13E;
  }
  .menu-tabs button.chinese {
    background-color: #FD3C2F;
  }
  
  .menu-tabs li:has(.active) {
    border-bottom-color: #F3E1B2;
  }
  
  .menu-list {
    list-style: none;
    flex-direction: column;
    border: solid 4px #E1B43E;
    background-color: #F3E1B2;
    margin-top: -20px;
    padding: 10px;
    /* align-items: stretch; */
  }
  
  .menu-item > img {
    width: 100%;
    aspect-ratio: 1.6;
    object-fit: cover;
  }
  
  .menu-item {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border: 1px solid #ddd;
    margin: 10px;
    cursor: pointer;
    background-color: #fff;
    position: relative;
    border-radius: 10px;
  }
  
  .menu-item > h5 {
    margin: 0.5em 0;
    font-size: 1.1rem;
    text-align: start;
    height: 2.8em;
    color: #63501E;
  }
  
  .menu-item > p {
    margin: 0;
    font-size: 0.8rem;
    text-align: start;
    color: #60340C;
  }
  
  .menu-item:hover:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(255,255,255,.1);
  }
  
  .menu-item:hover {
    border: solid 5px #FF6D1F;
    border-radius: 10px;
    transform: scale(1.05);
    z-index: 100;
  }
  
  button:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
  }
  
  .test-height {
    height: 1500px;
  }
  
  #menu-from {
    max-width: 700px;
    width: 95%;
    margin: 30px auto;
  }
  
  .day-selector {
    border: solid 1px #E1B43E;
    border-radius: 10px;
    margin: 10px;
    padding: 10px 20px;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
  }
  
  .day-selector > label {
    line-height: 50px;
  }
  
  .menu-select-button {
    width: 80%;
    height: 50px;
    display: flex;
    align-items: center;
    background-color: #F3E1B2;
    border: none;
    color: #524E4D;
    padding-left: 50px;
  }
  
  .menu-select-button > img {
    margin-right: 20px;
    object-fit: cover;
    object-position: center;
  }
  
  #submit-order, .omakase-order {
    display: flex;
    margin: 50px auto;
    height: 50px;
    border-radius: 25px;
    justify-content: center;
    align-items: center;
    background-color: #FF6D1F;
    color: #fff;
    border: none;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    padding-left: 1em;
    padding-right: 1em;
  }
  
  #submit-order:hover:before ,.omakase-order:hover:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(255,255,255,.5);
  }
  
  #submit-order > i {
    margin-right: 1em;
  }
  
  .woocommerce-cart-form__cart-item {
    display: flex;
    flex-direction: column;
    border: none;
  }
  
  .woocommerce-cart-form__contents th {
    display: none;
  }
  
  .woocommerce-cart-form__contents td {
    border: none;
    border-top: none;
  }
  
  .product-remove {
    display: none;
  }
  
  .product-thumbnail {
    display: none;
  }
  
  .product-price {
    display: none;
  }
  
  .woocommerce-cart-form .product-subtotal {
    display: none;
  }
  
  .product-name > a {
    pointer-events: none;
    color: #524E4D;
    font-weight: 700;
    text-decoration: none;
  }
  
  .woocommerce-cart-form th.product-quantity {
    display: none;
  }
  
  .woocommerce-cart-form .variation {
    /* display: flex; */
    /* flex-direction: column; */
    background-color: #fff;
    border-radius: 30px;
    padding: 20px 10px;
    border: solid 1px #E1B43E;
  }
  
  
  .woocommerce-cart-form dd.variation- {
    width: 100%;
  }
  
  .wc-proceed-to-checkout {
    display: none;
  }
  
  dd.variation- > p {
    font-size: 0.9rem;
  }
  
  dt.variation- {
    font-size: 0.8rem;
    background-color: #F3E1B2;
    height: fit-content;
    padding: 3px;
    border-radius: 20px;
    color: #60340C;
  }
  
  .input-text.qty.text {
    height: 50px;
    font-size: 1.2rem;
  }
  
  .woocommerce-cart-form .product-quantity {
    display: flex;
    justify-content: flex-end;
  }
  
  .woocommerce-cart-form .product-quantity::before {
    content: '複数名分のご注文の際は、こちらから数量を変更してください';
    line-height: 50px;
  }
  
  .cart_totals > h2 {
    font-size: 1.2rem;
  }
  
  .checkout-button {
    background-color: #FF6D1F;
  }
  
  .woocommerce-checkout-review-order-table img {
    display: none;
  }
  
  .woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
    width: 70%;
  }
  
  .woocommerce-billing-fields__field-wrapper input {
    height: 40px;
  }
  
  .select2-selection.select2-selection--single {
    height: 40px;
  }
  
  .woocommerce-checkout h3 {
    font-size: 1.2rem;
  }
  
  #place_order {
    display: flex;
    margin: 50px auto;
    width: 250px;
    height: 50px;
    border-radius: 25px;
    justify-content: center;
    align-items: center;
    background-color: #FF6D1F;
    color: #fff;
    border: none;
    font-size: 24px;
    font-weight: 700;
  }
  
  #place_order:hover {
    opacity: 0.5;
  }
  
  .woocommerce-checkout .cart-subtotal {
    display: none;
  }
  
  #checkout .col-1 {
    width: 100%;
    margin-bottom: 50px;
  }
  
  #checkout {
    margin-bottom: 100px;
  }

  .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: baseline;
  }

}