main {
  margin: 0;
  padding: 0 0 120px;
  color: #333333;
}

button, input, select, textarea {
  font-family: "Yu Gothic Medium", YuGothic, "Yu Gothic", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
}

main.freezer_menu {
  margin: 0;
  padding: 0 0 0 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

button {
  transition: 0.15s;
}

.category-list {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  padding: 8px;
  background-color: #f5f5f5;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.16);
  overflow-x: scroll;
}

.category-list li {
  text-align: center;
}

.category-list li.list2 button {
  min-width: 48px;
}

.category-list li.list3 button {
  min-width: 64px;
}

.category-list li.list4 button {
  min-width: 76px;
}

.category-list li.list5 button {
  min-width: 90px;
}

.category-list button {
  padding: 0 12px;
  line-height: 27px;
  font-size: 14px;
  color: #306D26;
  white-space: nowrap;
}

.category-list button.selected {
  background-color: #306D26;
  border-radius: 4px;
  font-weight: bold;
  color: #fff;
}

.popular-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 32px);
  max-width: 372px;
  margin: 56px auto 0;
  background-color: #CF9A05;
  border-radius: 4px;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
}

.popular-menu::after {
  content: '';
  width: 14px;
  height: 20px;
  margin: 0 0 0 8px;
  background: no-repeat url("/img/user/click_icon.svg");
  background-size: 100%;
}

.popular-menu:disabled {
  background-color: #fff;
  border: 1px solid #dcdcdc;
  color: #dcdcdc;
  font-weight: normal;
  cursor: auto;
}

.popular-menu:disabled:hover {
  opacity: 1;
}

.menu-category-select {
  position: relative;
  height: 40px;
  margin: 12px 0 0;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
}

.menu-category-select select {
  width: 100%;
  height: 100%;
  padding-left: 12px;
  border: unset;
  background-color: unset;
  border-radius: 4px;
  color: #333333;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.menu-category-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  z-index: -1;
  width: 11px;
  height: 11px;
  background: no-repeat url("/img/user/menu_arrow.svg");
  background-size: 100%;
}

.mitsuboshiStandardCategoryDescription {
  margin-top: 12px;
}

.mitsuboshiStandardCategoryDescription p {
  letter-spacing: 0.1em;
  font-size: 12px;
}

.menu-list {
  display: grid;
  gap: 32px 12px;
  grid-template-columns: 1fr 1fr;
  margin: 24px 0 0;
}

.menu-list li {
  min-height: unset;
  max-height: unset;
}

.menu-img {
  position: relative;
  margin-bottom: 8px;
  aspect-ratio: 1 / 1;
  transition: 0.15s;
  cursor: pointer;
}

.menu-img > span.selected::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 6px;
  border: 4px solid #306D26;
}

.menu-img .menu-img-item {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.menu-img .noImage {
  display:flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background:#f5f5f5;
  color:#888888;
  text-align: center;
  font-size: 10px;
  border-radius: 6px;
}

.cart {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px max(4%, 16px);
  background-color: #ffffff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.14);
  border-radius: 16px 16px 0 0;
  transition: box-shadow 0.5s;
}

.cart.open {
  box-shadow: unset;
  transition-delay: 0s;
}

button.cart-open {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin: 0 12px 0 0;
}

button.cart-open img {
  width: 40px;
}

.cart-icon {
  position: relative;
}

.cart-icon span {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(35%, -50%);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  background-color: #c9532f;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
}

button.cart-button {
  opacity: 0;
}

button.cart-button,
a.cart-button {
  width: 305px;
  background-color: #dcdcdc;
  border-radius: 4px;
  color: #fff;
  line-height: 48px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  cursor:pointer;
}

button.cart-button span,
a.cart-button span {
  font-size: 24px;
}

a.cart-button.complete {
  background-color: #306D26;
}

a.cart-button.complete span {
  font-size: 16px;
}

.cart-overlay {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  overflow-y: auto;
  overscroll-behavior: none;
  scrollbar-width: none;
}

.cart-overlay > div.cart-overlay-inner {
  height: calc(100% + 1px);
}

section.open .cart-overlay {
  opacity: 1;
  visibility: visible;
}

.cart-container {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 0;
  z-index: 101;
  transition: height 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.cart-container.open {
  height: 70%;
  transition-delay: 0s, 0s;
}

.cart-container > div {
  width: 100%;
  height: 100%;
  padding: 12px max(4%, 16px);
  background-color: #ffffff;
  border-radius: 16px 16px 0 0;
}

.cart-overlay-background {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

@media screen and (min-width: 768px) {
  .cart-overlay {
    position: static;
    opacity: 1;
    visibility: visible;
    height: calc(100% - 60px);
  }
  .cart-overlay > div.cart-overlay-inner {
    align-items: flex-start;
    height: 100%;
  }
  .cart-container.open {
    height: 100%;
  }
  .cart-container {
    position: unset;
    height: 100%;
    background-color: #f5f5f5;
    border-radius: 6px;
  }
  .cart-container > div {
    position: unset;
    box-shadow: unset;
    background-color: unset;
    padding: 12px;
  }
  .cart-overlay-background {
    display: none;
  }
}

.cart-top-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #306D26;
  font-weight: bold;
}

.cart-count {
  font-size: 18px;
  letter-spacing: -0.05rem;
  line-height: 1.2;
}

.cart-count span {
  padding: 0 4px;
  font-size: 26px;
}

button.cart-delete {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 4px;
  color: #888888;
  font-size: 12px;
  font-weight: bold;
}

button.cart-delete::before {
  content: '';
  width: 14px;
  height: 14px;
  background: no-repeat url("/img/user/delete_icon.svg");
  background-size: 100%;
}

.cart-data-list {
  height: calc(100% - 106px);
  margin: 8px 0;
  background-color: #fff;
  overflow: auto;
  overscroll-behavior-y: contain;
}

.choose-menu-img {
  width: 64px;
  height: 64px;
}

.choose-menu-img .menu-img-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.cart-data-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #dcdcdc;
  letter-spacing: 0;
  animation: late-open 700ms forwards;
  opacity: 0;
}

@keyframes late-open {
  to {
    opacity:1;
  }
}

.cart-data-list li:last-child {
  border-bottom: unset;
}

.choose-menu-info-container {
  flex: 1;
}

.choose-menu-name {
  min-height: 36px;
  line-height: 1.4;
  font-size: 13px;
  font-weight: bold;
}

.menu-buttons.choosed {
  justify-content: flex-end;
  margin-top: 4px;
}

.menu-buttons.choosed button {
  padding: 0;
}

.menu-buttons.choosed button:disabled {
  opacity: 0.4;
  cursor: auto;
}

.item-meal {
  padding: 0 8px;
}

.menu-buttons.choosed img {
  width: 26px;
  vertical-align: middle;
}

.menu-left-top-label {
  position: absolute;
  top: -3px;
  left: -3px;
  z-index: 1;
}

.menu-bookmark-button {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 36px;
  height: 36px;
}

.menu-bookmark-button button {
  padding: 0;
}

.menu-bookmark-button button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  transform: scale(0);
  opacity: 1;
}

.menu-bookmark-button button:active::after {
  animation: ripple-animation 0.3s cubic-bezier(0, 0, 0.2, 1);
}

@keyframes ripple-animation {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.menu-category-tag-wrap {
  display: flex;
  gap: 4px;
}

.menu-category-tag {
  padding: 2px 4px;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  color: #888888;
}

.menu-name {
  min-height: 36px;
  margin: 4px 0;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
  font-weight: bold;
  font-size: 13px;
  line-height: 1.4;
  color: #333;
}

.menu-info {
  display: flex;
  font-weight: bold;
  font-size: 9px;
  line-height: 1.2;
  color: #888888;
}

.menu-info span {
  display: inline-block;
  letter-spacing: 0;
  font-feature-settings: "palt";
  color: #888888;
}

.menu-info span:not(:last-child) {
  margin-right: 2px;
  padding-right: 2px;
  border-right: 1px solid #dcdcdc;
}

.menu-specs {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 16px;
  margin-top: 6px;
}

.menu-specs .menu-rating {
  display: flex;
  gap: 2px;
}

.menu-specs .menu-rating .menu-rating-star {
  width: 16px;
  height: 16px;
}

.menu-specs .menu-spiciness-level {
  width: 36px;
}

.menu-specs .menu-spiciness-level .menu-spiciness-icon {
  width: 36px;
  height: 16px;
}

.menu-number-meals {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  font-weight: bold;
  font-size: 14px;
  color: #333333;
}

.out-of-stock {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 116px;
  height: 34px;
  margin: 12px auto 0;
  border: 1px solid #dcdcdc;
  border-radius: 20px;
  font-weight: bold;
  color: #888888;
}

.menu-list button:disabled img {
  cursor: auto;
}

.menu-list button:disabled img:hover {
  transform: scale(1);
}

.menu-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

.menu-buttons span {
  width: 48px;
  padding: 0 12px;
  color: #306D26;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.menu-buttons button {
  padding: 0;
}

.menu-buttons button img {
  vertical-align: middle;
}

.menu-buttons button:disabled {
  opacity: 0.4;
  cursor: auto;
}

.user-header {
  display: none;
}

.out-of-stock-exist-message {
  text-align: center;
  font-size: 12px;
  color: #c9532f;
  opacity: 0;
  margin: 8px auto 12px;
}

@media screen and (max-width: 767px) {
  .menu-container {
    padding: 0 max(4%, 16px);
  }
}

@media screen and (min-width: 768px) {
  ::-webkit-scrollbar {
    width: 4px;
  }

  ::-webkit-scrollbar-track {
    border-radius: 10px;
    border: 1px solid #dcdcdc;
  }

  ::-webkit-scrollbar-thumb {
    background-color: #dcdcdc;
    border-radius: 10px;
  }

  main {
    overflow: hidden;
    height: calc(100vh - 60px);
    padding-top: 60px;
    padding-bottom: 0;
  }

  section {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(100% - 40px);
    padding: 24px 32px 0;
  }

  button:hover {
    opacity: .7;
  }

  .user-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    max-width: unset;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.16);
    background-color: #fff;
  }

  .popular-menu {
    margin: 0 auto;
  }

  .menu-container {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    height: calc(100% - 100px);
    max-width: 1000px;
  }

  .menu-container.freezer_ {
    display: flex;
    justify-content: space-between;
    height: calc(100vh - 170px);
    max-width: 1027px;
    padding: 0 16px;
    margin: 8px auto 0;
  }

  /* 冷凍庫メニュー選択の場合、縦のボックスサイズを変更*/
  main.freezer_menu .menu-container {
    height: calc(100vh - 260px);
  }

  .menu-list-container {
    display: flex;
    flex-direction: column;
    width: calc(100% - 284px);
    height: 100%;
  }

  .menu-list-wrap {
    position: relative;
    overflow: hidden;
    margin-left: -3px;
  }

  .menu-list {
    flex: 1;
    overflow-y: scroll;
    grid-template-columns: repeat(4, 1fr);
    height: 100%;
    margin: 20px 0 0;
    padding: 3px 8px 0 3px;
  }

  .menu-list li {
    display: flex;
    flex-direction: column;
  }

  .category-list {
    flex: 1;
    position: unset;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    background-color: unset;
    box-shadow: unset;
    overflow-x: auto;
  }

  .category-list button {
    border: 1px solid #306D26;
    border-radius: 4px;
  }

  .menu-category-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
  }

  .menu-category-select {
    width: 144px;
    height: 40px;
    margin: 0;
  }

  .cart-wrapper {
    width: 268px;
    height: 100%;
  }

  button.cart-open {
    display: none;
  }

  .cart-icon span {
    display: none;
  }

  .cart-count {
    display: flex;
    align-items: flex-end;
    line-height: 1;
    opacity:0;
  }

  .cart-count::before {
    content: "";
    width: 26px;
    height: 26px;
    margin: 0 6px 0 0;
    background: no-repeat url("/img/user/cart.svg");
    background-size: 100%;
  }

  .cart-data-list {
    height: calc(100% - 38px);
    margin: 12px 0 0;
  }

  .cart-data-list li {
    padding: 6px;
  }

  .cart {
    position: unset;
    padding: 0;
    margin: 12px 0 0;
    box-shadow: unset;
    background-color: unset;
  }

  button.cart-button,
  a.cart-button {
    width: 100%;
  }

  .choose-menu-img {
    width: 48px;
    height: 48px;
  }

  .choose-menu-img .menu-img-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
  }

  .choose-menu-name {
    min-height: 24px;
    line-height: 1.4;
    font-size: 11px;
    font-weight: bold;
  }

  .menu-buttons.choosed img {
    width: 20px;
    height: 20px;
  }

  a.cart-button.complete span {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  a.cart-button.complete span::before {
    content: '';
    width: 20px;
    height: 20px;
    margin: 0 12px 0 0;
    background: no-repeat url("/img/user/check_white.svg");
    background-size: 100%;
  }

  .out-of-stock-exist-message {
    margin: 8px auto 24px;
  }
}

@media screen and (max-width: 1000px) and (min-width: 850px) {
  .menu-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 849px) and (min-width: 768px) {
  .menu-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.active, button.cart-button.active{opacity:1;}

/*********************************************************/
/*** modal ***/
/*********************************************************/
.menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 100vh;
  padding: 30px 0 60px;
  background-color: #fff;
  overflow-y: auto;
}

.menu-modal-inner {
  max-width: 860px;
  margin: 0 auto;
  overflow-x: hidden;
}

.menu-modal__close {
  position: absolute;
  top: 36px;
  right: 36px;
  z-index: 100;
  outline: none;
  display: block;
  width: 48px;
  height: 48px;
  background: #fff;
  box-shadow: 2px 2px 4px #3336;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.modalGrid .swiper-slide-active img {
  width: 100%
}

.modalGrid .swiper-slide img {
  width: 100%;
}

@media (max-width:767px) {
  .menu-modal {
    padding: 3% 0 60px;
  }

  .modalGrid .swiper-slide-active img {
    width: 91%;
    margin: auto;
    display: block;
    padding-top: 3%;
  }
}

@media (min-width:768px) {
  .modalGrid {
    position: relative;
    display: grid;
    display: -ms-grid;
    grid-template-columns: 50% 50%;
    -ms-grid-columns: 50% 50%;
  }

  .modalGrid>div:nth-child(2n-1) {
    -ms-grid-column: 1;
  }

  .modalGrid>div:nth-child(2n) {
    -ms-grid-column: 2;
  }
}

.modal-product {
  left: 0;
  right: 0;
  top: 0px;
  z-index: 9999;
  background: #fff;
  position: fixed;
  /*opacity: 98%;*/
  height: 100%;
  border-top: 1px #ddd solid;
  box-shadow: 1px 1px 10px #c3c3c3;
  transition: all 0.3s;
}

.modal-product__header {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  top: 36px;
  right: 36px;
  font-size: 16px;
  font-weight: bold;
  align-items: center;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 2px 2px 4px #3336;
  border-radius: 50%;
  position: absolute;
  z-index: 100;
}

.modal-product__ttl {
  margin-bottom: 0;
}

.modal-product__close {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  cursor: pointer;
  background: #fff;
  outline: navajowhite;
  position: absolute;
}

.modal-product-content {
  max-width: 860px;
  margin: 0 auto;
  padding-top: 36px;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100%;
}

.modal-product__img {
  width: 84%;
  margin: 36px auto 24px;
}

.modal-product__img img {
  width: calc(33.3% - 24px) !important;
  height: auto;
  padding: 0 12px;
  border-radius: 1%;
  box-sizing: border-box;
  display: inline-block;
}

.modal-spice {
  margin: 12px auto 0;
  padding: 0 0 24px;
}

.modal-spice__content {
  display: flex;
  flex-wrap: wrap;
  color: #333;
  justify-content: center;
}

.modal-spice__item {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border-right: 1px solid #ddd;
  padding: 0 2px;
  font-weight: 600;
  font-size: 10px;
  width: 14.28%;
  margin: 8px 0;
}

.modal-spice__txt {
  font-size: 11px;
  min-height: 32px;
}

.modal-spice__num {
  font-weight: bold;
  font-size: 18px;
}

.modal-spice__item:nth-child(7n) {
  padding-right: 0;
  border: 0;
}

.modal-spice__item:nth-child(8n) {
  padding-left: 0;
}

.modal-spice__ttl {
  text-align: center;
  font-weight: bold;
  font-size: 19px;
  margin: 20px 25px 0;
  border-top: solid 1px #ddd;
  padding-top: 30px;
  letter-spacing: 2px;
}

.modal__desctiption {
  margin-top: 24px;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.6px;
  line-height: 1.8;
  font-size: 14px;
}

.modal-product__ttl {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

/* END: modal */
/* Hide scrollbar for Chrome, Safari and Opera */
.modal-product-content::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.modal-product-content {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.menu-list li.end_sales {
  display: none;
}

@media screen and (min-width: 1040px) {
  .modal-product__header::after {
    width: 810px;
  }
}

@media screen and (max-width: 767px) {
  .menu-modal__close {
    top: 16px;
    right: 16px;
  }

  .modal__desctiption {
    line-height: 21px;
    font-size: 14px;
  }

  .modal__desctiption p {
    font-weight: 400
  }

  .modal-spice {
    padding: 0
  }

  .modal-spice__ttl {
    font-size: 15px;
  }

  .modal-spice__content {
    display: flex;
    flex-wrap: wrap;
    color: #333;
    justify-content: flex-start;
  }

  .modal-spice__item {
    width: 24%;
    margin: 21px 0 0px;
  }

  .modal-spice__txt {
    min-height: 16px;
  }

  .modal-spice__item:nth-child(4n) {
    padding-right: 0;
    border: 0;
  }

  .modal__desctiption {
    margin-bottom: 24px;
  }

  .modal-product__img {
    width: unset;
    margin: 24px 24px 12px;
  }

  .modal-product__img img {
    width: calc(33.3% - 4px) !important;
    padding: 0 4px;
  }
}

/* hover制御 */
@media (hover: hover) {
  .menu-img > span:hover {
    opacity: 0.7;
  }
}


.freezer-header-logo img {
  width: 80px;
  padding: 10px 0;
  margin: auto;
  display: block;
}

/* .sume-plan-area ---------------------------------------------------------- */
.sume-plan-area {
  display: flex;
  width: 100%;
  max-width: 860px;
  background: #cf9a05;
  margin: auto;
}
.sume-plan-area-wrap {
  background: #cf9a05;
}
.sume-plan-area .plan-item {
  width:50%;
  letter-spacing: 0.17em;
  color: #FFFFFF;
  text-align: center;
  opacity: 0.2;
  height: 61px;
  position: relative;
  cursor: pointer;
}
.sume-plan-area .plan-item .active-line {
  position: absolute;
  height: 8px;
  width: 100%;
  background-color: #306d26;
  bottom: 0;
  display: none;
}
.sume-plan-area .plan-item.active {
  opacity: 1;
}
.sume-plan-area .plan-item.active .active-line {
  display: block;
  height: 5px;
}
.sume-plan-area .plan-item .pi-num img {
  width: 53px;
  margin: 9px 0 0;
}
.sume-plan-area .plan-item .pi-text {
  font-size: 10px;
  height: 34px;
}
@media screen and (max-width: 767px) {
  .freezer_menu .popular-menu {
    margin: 110px auto 0;
  }
  .freezer-header {
    position: fixed;
    top:43px;
    width:100%;
    z-index:1000;
  }
  .sume-plan-area .plan-item {
    height: 55px;
  }
  .sume-plan-area .plan-item .pi-num img {
    width: 46px;
  }
  .freezer-header-logo img {
    display: none;
  }
}
/* .sume-checkbox-area -------------------------------------------- */
