@charset "UTF-8";
/* メインカラーを定義
 * ここの変数は直接使用しないこと
 */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  touch-action: manipulation;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a {
  color: #000000;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
i,
picture {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "Noto Sans CJK JP", sans-serif;
  color: #000000;
  background-color: #F2F2F2;
}

/**
 * Name: Default Input Text Parts
 * Example: created
 */
input[type=text],
input[type=tel],
input[type=email],
input[type=date],
input[type=password] {
  width: 100%;
  max-width: none;
  height: 40px;
  border: 1px solid #BEBEBE;
  border-radius: 4px;
  padding: 0 12px;
  background-color: #FFFFFF;
}

/**
 * Name: Default Textarea
 * Example: created
 */
textarea {
  width: 100%;
  max-width: none;
  border: 1px solid #BEBEBE;
  border-radius: 4px;
  padding: 6px 12px;
  background-color: #FFFFFF;
}

/**
 * Name: Default Input Checkbox Parts
 * Example: created
 */
label.partsCheckbox {
  display: flex;
  align-items: center;
}
label.partsCheckbox input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  margin: 0;
  width: 0;
  height: 0;
  visibility: hidden;
}
label.partsCheckbox input[type=checkbox] + .box {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #BEBEBE;
  border-radius: 4px;
  position: relative;
}
label.partsCheckbox input[type=checkbox]:checked + .box::after {
  font-family: "icomoon" !important;
  content: "\ea10";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #927A41;
  z-index: 10;
}
label.partsCheckbox .main {
  flex-grow: 1;
  margin-left: 6px;
}
label.partsCheckbox .sub {
  margin-left: 24px;
  flex-shrink: 0;
}
label.partsCheckbox.opt-center {
  justify-content: center;
}
label.partsCheckbox.opt-center .main {
  flex-grow: unset;
}
label.partsCheckbox.opt-tag input[type=checkbox] + span {
  display: inline-block;
  background-color: #E6E6E6;
  color: #575757;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 22px;
  border-radius: 17px;
  cursor: pointer;
}
label.partsCheckbox.opt-tag input[type=checkbox]:checked + span {
  background-color: #E1A500;
  color: #FFFFFF;
}

/**
 * Name: Default Input Radio Parts
 * Example: created
 */
label.partsRadio {
  display: flex;
  align-items: center;
}
label.partsRadio input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  margin: 0;
  width: 0;
  height: 0;
  visibility: hidden;
}
label.partsRadio input[type=radio] + .box {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #BEBEBE;
  border-radius: 12px;
  position: relative;
}
label.partsRadio input[type=radio]:checked + .box::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: #927A41;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
label.partsRadio .main {
  flex-grow: 1;
  margin-left: 6px;
}
label.partsRadio .sub {
  margin-left: 24px;
  flex-shrink: 0;
}
label.partsRadio.opt-label input[type=radio] + span {
  display: inline-block;
  background-color: #F9EDCC;
  color: #333333;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 22px;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
}
label.partsRadio.opt-label input[type=radio]:checked + span {
  background-color: #E1A500;
  color: #FFFFFF;
}
label.partsRadio.opt-dummy span {
  display: inline-block;
  background-color: #F2F2F2;
  color: #BEBEBE;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 22px;
  border-radius: 4px;
  text-align: center;
}

/**
 * Name: Default Select Parts
 * Example: created
 */
.partsSelect {
  border: 1px solid #BEBEBE;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.partsSelect::after {
  font-family: "icomoon" !important;
  content: "\e902";
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: 0;
  transform-origin: center;
  transform: translateY(-50%) rotate(90deg);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  pointer-events: none;
}
.partsSelect select {
  width: 100%;
  max-width: none;
  height: 38px;
  padding: 0 12px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #FFFFFF;
}

/**
 * Name: partsHeading01
 * Example: created
 */
.partsHeading01 {
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  padding: 12px 10px;
  background-color: var(--corp-color);
  color: #FFFFFF;
  word-break: break-all;
}
.partsHeading01.opt-center {
  text-align: center;
}
.partsHeading01 span {
  display: block;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 600px) {
  .partsHeading01 {
    font-size: 22px;
    line-height: 30px;
    padding: 14px 0;
  }
  .partsHeading01 span {
    padding: 0 50px;
  }
}

/**
 * Name: partsHeading02
 * Example: created
 */
.partsHeading02 {
  font-size: 16px;
  word-break: break-all;
}
.partsHeading02.opt-center {
  text-align: center;
}
.partsHeading02.opt-underline {
  border-bottom: 1px solid #BEBEBE;
  padding-bottom: 8px;
}

/**
 * Name: partsHeading03
 * Example: created
 */
.partsHeading03 {
  font-size: 13px;
  color: #575757;
  word-break: break-all;
}

/**
 * Name: partsNewsTitle
 * Example: created
 */
.partsNewsTitle {
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  border-top: 1px solid var(--corp-color);
  border-bottom: 1px solid var(--corp-color);
}

/**
 * Name: partsSimpleLink
 * Example: created
 */
.partsSimpleLink {
  text-decoration: underline;
}
.partsSimpleLink.opt-small {
  font-size: 14px;
}

/**
 * Name: partsColoredLink
 * Example: created
 */
.partsColoredLink {
  color: #C60A16;
}
.partsColoredLink.opt-x-small {
  font-size: 11px;
}
.partsColoredLink.opt-small {
  font-size: 14px;
}
.partsColoredLink.opt-bold {
  font-weight: bold;
}

/**
 * Name: partsAccordionLink
 * Example: created
 */
.partsAccordionLink {
  font-size: 11px;
  display: inline-block;
  padding-right: 12px;
  position: relative;
}
.partsAccordionLink::after {
  font-family: "icomoon" !important;
  content: "\e902";
  font-size: 10px;
  color: #575757;
  position: absolute;
  top: 50%;
  right: 0;
  transform-origin: center;
  transform: translateY(-50%) rotate(90deg);
}
.partsAccordionLink .mt-open {
  display: none;
}
.partsAccordionLink .mt-close {
  display: block;
}
.partsAccordionLink.open::after {
  transform: translateY(-50%) rotate(270deg);
}
.partsAccordionLink.open .mt-open {
  display: block;
}
.partsAccordionLink.open .mt-close {
  display: none;
}

/**
 * Name: partsText
 * Example: created
 */
.partsText {
  font-size: 16px;
}
.partsText.opt-center {
  text-align: center;
}
.partsText.opt-right {
  text-align: right;
}
.partsText.opt-small {
  font-size: 13px;
}
.partsText.opt-x-small {
  font-size: 11px;
}
.partsText.opt-large {
  font-size: 18px;
}
.partsText.opt-normal {
  font-weight: normal;
}
.partsText.opt-medium {
  font-weight: 500;
}
.partsText.opt-bold {
  font-weight: bold;
}
.partsText.opt-medium-bold {
  font-weight: 500;
}
.partsText.opt-alert {
  color: #C60A16;
}
.partsText.opt-action {
  color: #927A41;
}

/**
 * Name: partsFootnote
 * Example: created
 */
.partsFootnote {
  font-size: 12px;
  position: relative;
  padding-left: 1.5em;
}
.partsFootnote::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/**
 * Name: partsImage
 * Example: created
 */
.partsImage.opt-center {
  margin-left: auto;
  margin-right: auto;
}

/**
 * Name: partsSearchIcon
 * Example: created
 */
.partsSearchIcon {
  text-align: center;
}
.partsSearchIcon a, .partsSearchIcon button {
  display: block;
  width: 100%;
  color: #FFFFFF;
  background-color: #927A41;
  border: none;
  border-radius: 4px;
  padding: 6px 0;
}
.partsSearchIcon a > *, .partsSearchIcon button > * {
  display: block;
}
.partsSearchIcon a [class^=icon-], .partsSearchIcon a [class*=" icon-"], .partsSearchIcon button [class^=icon-], .partsSearchIcon button [class*=" icon-"] {
  display: flex;
  height: 32px;
  align-items: center;
  justify-content: center;
}
.partsSearchIcon a .icon-map, .partsSearchIcon button .icon-map {
  font-size: 29px;
}
.partsSearchIcon a .icon-bookmark, .partsSearchIcon button .icon-bookmark {
  font-size: 27px;
}
.partsSearchIcon a .icon-favorite, .partsSearchIcon button .icon-favorite {
  font-size: 22px;
}
.partsSearchIcon a .icon-search, .partsSearchIcon button .icon-search {
  font-size: 27px;
}
.partsSearchIcon a .text, .partsSearchIcon button .text {
  font-size: 14px;
  font-weight: bold;
  margin-top: 4px;
}
@media screen and (min-width: 600px) {
  .partsSearchIcon a, .partsSearchIcon button {
    padding: 12px 0;
  }
  .partsSearchIcon a .text, .partsSearchIcon button .text {
    font-size: 20px;
    margin-top: 8px;
  }
}

/**
 * Name: partsTag
 * Example: created
 */
.partsTag {
  display: inline-block;
  text-align: center;
  font-size: 13px;
  line-height: 18px;
  height: 18px;
  font-weight: bold;
  margin-left: 6px;
  padding: 0 12px;
  background-color: var(--corp-color);
  border-radius: 9px;
  color: #FFFFFF;
}

/**
 * Name: partsButton
 * Example: created
 */
.partsButton {
  display: block;
  width: 200px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  text-align: center;
  border-radius: 4px;
  padding: 10px 8px;
  background-color: #FFFFFF;
}
.partsButton.opt-next {
  border: 1px solid #E1A500;
  background-color: #E1A500;
  color: #FFFFFF;
}
.partsButton.opt-list {
  border: 1px solid #000000;
  background-color: #FFFFFF;
  color: #000000;
}
.partsButton.opt-fix {
  border: 1px solid #BEBEBE;
  background-color: #FFFFFF;
  color: #575757;
}
.partsButton.opt-disabled {
  border: 1px solid #BEBEBE;
  background-color: #FFFFFF;
  color: #BEBEBE;
}
.partsButton.opt-action {
  border: 1px solid #927A41;
  background-color: #927A41;
  color: #FFFFFF;
}
.partsButton.opt-confirm {
  border: 1px solid #9C7200;
  background-color: #FFFFFF;
  color: #9C7200;
}
.partsButton.opt-login {
  border: 2px solid #927A41;
  background-color: #FFFFFF;
  color: #927A41;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.16);
}
.partsButton.opt-no-border {
  border: none;
  background-color: transparent;
}
.partsButton.opt-full {
  width: 100%;
  max-width: 425px;
}
.partsButton.opt-pc-full {
  width: 100%;
}
.partsButton.opt-w-auto {
  width: auto;
}
.partsButton.opt-w-x-small {
  width: 75px;
}
.partsButton.opt-w-small {
  width: 100px;
}
.partsButton.opt-h-small {
  font-size: 13px;
  padding-top: 2px;
  padding-bottom: 2px;
}
.partsButton.opt-h-large {
  font-size: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.partsButton.opt-h-x-large {
  font-size: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.partsButton.opt-no-padding {
  padding: 0;
}
.partsButton.opt-text-alert {
  color: #C60A16;
}
.partsButton.opt-icon-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.partsButton.opt-icon-right [class^=icon-], .partsButton.opt-icon-right [class*=" icon-"] {
  margin-left: 8px;
}
.partsButton.opt-icon-left {
  display: flex;
  justify-content: center;
  align-items: center;
}
.partsButton.opt-icon-left [class^=icon-], .partsButton.opt-icon-left [class*=" icon-"] {
  margin-right: 8px;
}
.partsButton.opt-icon-right-full {
  position: relative;
}
.partsButton.opt-icon-right-full [class^=icon-], .partsButton.opt-icon-right-full [class*=" icon-"] {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  z-index: 1;
}
.partsButton.opt-with-app {
  position: relative;
  padding-right: 42px;
}
.partsButton.opt-with-app span {
  position: absolute;
  bottom: 4px;
  right: 4px;
  z-index: 1;
}
.partsButton.opt-with-app-full {
  padding-left: 42px;
}
.partsButton.opt-with-subtext {
  position: relative;
}
.partsButton.opt-with-subtext span {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  z-index: 1;
  font-weight: normal;
}
.partsButton.opt-with-quantity, .partsButton.opt-with-quantity-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.partsButton.opt-with-quantity .quantity, .partsButton.opt-with-quantity-right .quantity {
  /*
  margin-top: 1px;
  position: static;
  top: auto;
  right: auto;
  transform: none;
  font-weight: normal;
  z-index: 1;
  margin-right: 8px;
  padding: 0 7px;
  font-size: 13px;
  line-height: 20px;
  background-color: #ffffff;
  color: $buttonActionBack;
  border-radius: 10px;
  */
  position: absolute;
  top: -10px;
  left: -15px;
  transform: none;
  font-weight: bold;
  z-index: 1;
  font-size: 13px;
  line-height: 28px;
  background-color: #ffffff;
  color: #927A41;
  border-radius: 50%;
  border: solid 2px #927A41;
  width: 30px;
  height: 30px;
}
.partsButton.opt-with-quantity {
  justify-content: flex-start;
  padding-left: 15px;
}
.partsButton.opt-with-quantity-right .quantity {
  margin-top: 2px;
  margin-left: 8px;
}
@media screen and (min-width: 600px) {
  .partsButton {
    width: 280px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.4s;
    padding: 14px 10px;
  }
  .partsButton.opt-disabled {
    cursor: default;
  }
  .partsButton:not(.opt-disabled):hover {
    opacity: 0.7;
  }
  .partsButton.opt-w-x-small {
    width: 100px;
  }
  .partsButton.opt-with-quantity {
    padding-left: 7px;
    justify-content: center;
  }
  .partsButton.opt-with-quantity.opt-lang-en {
    justify-content: flex-start;
    padding-left: 15px;
  }
}
@media screen and (max-width: 374px) {
  .partsButton.opt-with-app-full {
    padding-left: 10px;
  }
}

/**
 * Name: partsDeleteIcon
 * Example: created
 */
.partsDeleteIcon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: 1px solid #000000;
  background-color: #FFFFFF;
}
.partsDeleteIcon .mt-delete {
  font-size: 16px;
}

/**
 * Name: partsTotal
 * Example: created
 */
.partsTotal {
  font-size: 24px;
  text-align: right;
  padding: 12px 0;
}

/**
 * Name: partsFaq
 * Example: created
 */
.partsFaq {
  padding-left: 35px;
  position: relative;
  font-size: 12px;
  font-weight: normal;
  color: #000000;
}
.partsFaq::before {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 16px;
  text-align: center;
  line-height: 25px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.partsFaq.opt-q::before {
  content: "Q";
  background-color: #E1A500;
}
.partsFaq.opt-a::before {
  content: "A";
  background-color: #927A41;
}

/**
 * Name: partsLabelTitle
 * Example: created
 */
.partsLabelTitle {
  font-size: 14px;
  padding: 12px 24px;
  text-align: center;
}
.partsLabelTitle.opt-alert {
  font-weight: bold;
  background-color: #F4DFE1;
  color: #C60A16;
}
.partsLabelTitle.opt-done {
  background-color: #F2F2F2;
  color: #000000;
}

/**
 * Name: partsDate
 * Example: created
 */
.partsShop {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
  margin-top: -10px;
}
@media screen and (min-width: 600px) {
  .partsShop {
    margin-top: -20px;
  }
}

/**
 * Name: partsDate
 * Example: created
 */
.partsDate {
  text-align: center;
  font-size: 14px;
}
.partsDate .month-day {
  font-size: 24px;
}

/**
 * Name: partsTime
 * Example: created
 */
.partsTime {
  text-align: center;
  font-size: 32px;
}

/**
 * Name: partsBrandBanner
 * Example: created
 */
.partsBrandBanner {
  border-bottom: 2px solid var(--corp-color);
}
.partsBrandBanner .mt-image img {
  width: 100%;
}
.partsBreak.opt-pc {
  display: none;
}
@media screen and (min-width: 600px) {
  .partsBreak.opt-pc {
    display: inline;
  }
}

/**
 * Name: partsDummy
 * Example: not created
 */
.partsDummy {
  padding: 8px 16px;
  font-size: 14px;
  background-color: #F2F2F2;
}
.partsDummy.opt-darken {
  background-color: #E1E1E1;
}

/**
 * Name: partsDummySpace
 * Example: not created
 */
.partsDummySpace {
  background-color: #F9EDCC;
}

/**
 * Name: partsDummyMargin
 * Example: not created
 */
.partsDummyMargin {
  background-color: #E2AAAF;
  padding: 0.1px;
}

.partsNotice {
  font-size: 14px;
  width: 100%;
  text-align: center;
}
.partsNotice.status {
  margin-top: 30px;
}
.partsNotice.search-shop {
  margin-top: 30px;
}

/**
 * Name: next-controll
 */
.prev-next-controll {
  width: 100%;
  display: block;
  margin-bottom: 50px;
}

.prev-next-controll .prev-button {
  width: 50%;
  display: flex;
  float: left;
  padding: 40px 20px;
  justify-content: right;
}

.prev-next-controll .next-button {
  width: 50%;
  display: flex;
  float: left;
  padding: 40px 20px;
  justify-content: left;
}

.prev-next-controll .prev-button .prev,
.prev-next-controll .next-button .next {
  width: 180px;
  display: block;
  font-size: 14px;
  padding: 8px;
  border: none;
  background-color: var(--corp-color);
  color: #FFFFFF;
  text-align: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 500;
  line-height: 22px;
  max-width: 425px;
  position: relative;
  -webkit-box-pack: start;
}

/**
 * Name: comSingleLink
 * Example: created
 */
.comSingleLink {
  font-size: 13px;
  text-align: center;
}
.comSingleLink a {
  text-decoration: underline;
}
.comSingleLink [class^=icon-], .comSingleLink [class*=" icon-"] {
  vertical-align: middle;
}

/**
 * Name: comLinks
 * Example: created
 */
.comLinks {
  border-top: 1px solid #EDC966;
}
.comLinks > * a, .comLinks > * .link {
  display: block;
  font-size: 14px;
  padding: 12px 24px;
  border-bottom: 1px solid #EDC966;
  background-color: #FFFBEF;
  position: relative;
}
.comLinks > * a::after, .comLinks > * .link::after {
  content: "\e902";
  font-family: "icomoon";
  display: block;
  width: 4px;
  height: 8px;
  text-align: center;
  line-height: 8px;
  font-size: 8px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #E1A500;
}
.comLinks > * a [class^=icon-], .comLinks > * a [class*=" icon-"], .comLinks > * .link [class^=icon-], .comLinks > * .link [class*=" icon-"] {
  margin-right: 12px;
  color: #E1A500;
}
.comLinks > * a i, .comLinks > * .link i {
  display: inline;
  margin-left: 8px;
}
.comLinks li.has-sublink a::after, .comLinks li.subLinks a::after {
  content: "";
}
.comLinks li.has-sublink i.icon-checkmark, .comLinks li.subLinks i.icon-checkmark {
  margin-top: 3px;
  position: absolute;
}
.comLinks li.has-sublink span.lang_menu, .comLinks li.subLinks span.lang_menu {
  padding-left: 33px;
}
.comLinks.opt-alert {
  border-color: #E2AAAF;
}
.comLinks.opt-alert > * a, .comLinks.opt-alert > * .link {
  border-color: #E2AAAF;
  background-color: #F4DFE1;
}
.comLinks.opt-alert > * a::after, .comLinks.opt-alert > * .link::after {
  color: #C60A16;
}
.comLinks.opt-alert > * a [class^=icon-], .comLinks.opt-alert > * a [class*=" icon-"], .comLinks.opt-alert > * .link [class^=icon-], .comLinks.opt-alert > * .link [class*=" icon-"] {
  color: #C60A16;
}
.comLinks.opt-white > * a, .comLinks.opt-white > * .link {
  background-color: #FFFFFF;
}
.comLinks.opt-disabled {
  border-color: #BEBEBE;
}
.comLinks.opt-disabled > * a, .comLinks.opt-disabled > * .link {
  border-color: #BEBEBE;
  background-color: #F2F2F2;
  color: #BEBEBE;
}
.comLinks.opt-disabled > * a::after, .comLinks.opt-disabled > * .link::after {
  color: #BEBEBE;
}
.comLinks.opt-disabled > * a [class^=icon-], .comLinks.opt-disabled > * a [class*=" icon-"], .comLinks.opt-disabled > * .link [class^=icon-], .comLinks.opt-disabled > * .link [class*=" icon-"] {
  color: #BEBEBE;
}

/**
 * Name: comList
 * Example: created
 */
.comList {
  word-break: break-all;
}
.comList li:not(:first-child) {
  margin-top: 12px;
}
.comList.opt-clv1 li:not(:first-child) {
  margin-top: 32px;
}
.comList.opt-clv2 li:not(:first-child) {
  margin-top: 20px;
}

/**
 * Name: comInformation
 * Example: created
 */
.comInformation > *:not(:first-child) {
  margin-top: 10px;
}
.comInformation > * a {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 12px 24px;
  background-color: #FFFBEF;
  position: relative;
}
.comInformation > * a::after {
  content: "\e902";
  font-family: "icomoon";
  display: block;
  width: 4px;
  height: 8px;
  text-align: center;
  line-height: 8px;
  font-size: 8px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #E1A500;
}
.comInformation > * a [class^=icon-], .comInformation > * a [class*=" icon-"] {
  margin-right: 12px;
  color: #E1A500;
}
.comInformation > * a .mark {
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
  color: #E1A500;
  text-align: center;
  margin-right: 12px;
}
.comInformation.opt-alert {
  border-color: #E2AAAF;
}
.comInformation.opt-alert > * a {
  background-color: #F4DFE1;
}
.comInformation.opt-alert > * a::after {
  color: #C60A16;
}
.comInformation.opt-alert > * a [class^=icon-], .comInformation.opt-alert > * a [class*=" icon-"] {
  color: #C60A16;
}
.comInformation.opt-alert > * a .mark {
  color: #C60A16;
}

/**
 * Name: comSlider
 * Example: created
 */
.comSlider .slide a {
  width: 100%;
  display: block;
}
.comSlider .slide a img {
  width: 100%;
}
.comSlider .slick-dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
.comSlider .slick-dots li:not(:first-child) {
  margin-left: 8px;
}
.comSlider .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  text-indent: 100%;
  line-height: 0;
  overflow: hidden;
  padding: 0;
  border: none;
  background-color: #BEBEBE;
}
.comSlider .slick-dots li.slick-active button {
  background-color: #927A41;
}
@media screen and (min-width: 600px) {
  .comSlider .slide-inner {
    margin: 0 10px;
  }
}

/**
 * Name: comSliderCard
 * Example: created
 */
.comSliderCard {
  position: relative;
}
.comSliderCard .slide {
  padding: 6px 12px;
}
.comSliderCard .slick-arrow {
  margin-top: 10px;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  z-index: 5;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: none;
  background: transparent;
  padding: 0;
  transform: translateY(-50%);
}
.comSliderCard .slick-arrow::after {
  content: "";
  width: 12px;
  height: 14px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.comSliderCard .slick-prev {
  margin-left: -34px;
  left: 12px;
}
.comSliderCard .slick-prev::after {
  border-top: 7px solid transparent;
  border-right: 12px solid #E1A500;
  border-bottom: 7px solid transparent;
}
.comSliderCard .slick-next {
  margin-right: -34px;
  right: 12px;
}
.comSliderCard .slick-next::after {
  border-top: 7px solid transparent;
  border-left: 12px solid #E1A500;
  border-bottom: 7px solid transparent;
}
.comSliderCard .slick-disabled {
  opacity: 0;
}
.comSliderCard .slick-track {
  display: flex;
  align-items: stretch;
}
.comSliderCard .slick-track > .slick-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}
.comSliderCard .slick-track > .slick-slide > * {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.comSliderCard .slick-track > .slick-slide > * .mt-action {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media screen and (min-width: 600px) {
  .comSliderCard .slick-prev {
    left: calc(50% - 594px);
  }
  .comSliderCard .slick-next {
    right: calc(50% - 594px);
  }
}

/**
 * Name: comLastShop
 * Example: created
 */
.comLastShop {
  border: 2px solid #927A41;
  border-radius: 4px;
  background-color: #FFFFFF;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}
.comLastShop .base-data {
  font-weight: 500;
  padding-left: 8px;
  align-self: center;
}
.comLastShop .base-data .sup {
  display: block;
  font-size: 11px;
  color: #927A41;
}
.comLastShop .base-data .shop-name {
  display: block;
  font-size: 13px;
}
.comLastShop .base-data .shop-caption {
  display: block;
  font-size: 11px;
}
.comLastShop .base-data .shop-caption-order-time {
  font-size: 11px;
}
.comLastShop .time {
  flex-shrink: 0;
  margin-left: 24px;
  background-color: #F9EDCC;
  border-radius: 4px;
  padding: 4px 10px 4px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.comLastShop .time .sup {
  font-size: 10px;
  line-height: 12px;
}
.comLastShop .time .minutes {
  margin-top: 3px;
  line-height: 20px;
}
.comLastShop .time .minutes .number {
  font-size: 20px;
  font-weight: 500;
}
.comLastShop .time .minutes .text {
  font-size: 10px;
}
.comLastShop .shop-disabled {
  border: 1px solid #BEBEBE;
  background-color: #FFFFFF;
  color: #BEBEBE;
}
@media screen and (min-width: 600px) {
  .comLastShop .base-data .sup {
    font-size: 16px;
  }
  .comLastShop .base-data .shop-name {
    font-size: 16px;
  }
  .comLastShop .time .sup {
    font-size: 14px;
    line-height: 18px;
  }
  .comLastShop .time .minutes {
    line-height: 28px;
  }
  .comLastShop .time .minutes .number {
    font-size: 22px;
  }
  .comLastShop .time .minutes .text {
    font-size: 14px;
  }
}

/**
 * Name: comLastShop
 * Example: created
 */
.comLastShopDisabled {
  border: 2px solid #BEBEBE;
  background-color: #FFFFFF;
  color: #BEBEBE;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}
.comLastShopDisabled .base-data {
  font-weight: 500;
  padding-left: 8px;
  align-self: center;
}
.comLastShopDisabled .base-data .sup {
  display: block;
  font-size: 11px;
  color: #BEBEBE;
}
.comLastShopDisabled .base-data .shop-name {
  display: block;
  font-size: 16px;
}
.comLastShopDisabled .base-data .shop-caption {
  display: block;
  font-size: 11px;
}
.comLastShopDisabled .time {
  flex-shrink: 0;
  margin-left: 24px;
  background-color: #F9EDCC;
  border-radius: 4px;
  padding: 4px 10px 4px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.comLastShopDisabled .time .sup {
  font-size: 10px;
  line-height: 12px;
}
.comLastShopDisabled .time .minutes {
  margin-top: 3px;
  line-height: 20px;
}
.comLastShopDisabled .time .minutes .number {
  font-size: 20px;
  font-weight: 500;
}
.comLastShopDisabled .time .minutes .text {
  font-size: 10px;
}
.comLastShopDisabled .shop-disabled {
  border: 1px solid #BEBEBE;
  background-color: #FFFFFF;
  color: #BEBEBE;
}
@media screen and (min-width: 600px) {
  .comLastShopDisabled .base-data .sup {
    font-size: 12px;
  }
  .comLastShopDisabled .base-data .shop-name {
    font-size: 16px;
  }
  .comLastShopDisabled .time .sup {
    font-size: 14px;
    line-height: 18px;
  }
  .comLastShopDisabled .time .minutes {
    line-height: 28px;
  }
  .comLastShopDisabled .time .minutes .number {
    font-size: 22px;
  }
  .comLastShopDisabled .time .minutes .text {
    font-size: 14px;
  }
}

/**
 * Name: comSearchIcons
 * Example: created
 */
.comSearchIcons {
  display: flex;
}
.comSearchIcons > * {
  width: 33%;
  flex-grow: 1;
}
.comSearchIcons > *:not(:first-child) {
  margin-left: 12px;
}

/**
 * Name: comImageText
 * Example: created
 */
.comImageText {
  display: flex;
}
.comImageText .image {
  flex-shrink: 0;
}
.comImageText .image.opt-coupon {
  width: 100px;
}
.comImageText .text {
  flex-grow: 1;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.comImageText .text .title {
  font-size: 14px;
  font-weight: 500;
}
.comImageText .text .description {
  margin-top: 6px;
  font-size: 11px;
  flex-grow: 1;
  text-align: justify;
}
.comImageText .text .footnote {
  font-size: 11px;
}
.comImageText .text .footnote .mt-link {
  float: right;
}
@media screen and (min-width: 600px) {
  .comImageText .image.opt-coupon {
    width: 135px;
  }
  .comImageText .image img {
    width: 100%;
  }
  .comImageText .text .title {
    font-size: 20px;
  }
  .comImageText .text .description {
    font-size: 14px;
  }
  .comImageText .text .footnote {
    font-size: 14px;
  }
}

/**
 * Name: comArticleSummary
 * Example: created
 */
.comArticleSummary {
  display: block;
}
.comArticleSummary .meta {
  display: flex;
}
.comArticleSummary .meta .date {
  font-size: 14px;
}
.comArticleSummary .meta .date.opt-small {
  font-size: 12px;
}
.comArticleSummary .meta .new {
  width: 50px;
  text-align: center;
  font-size: 13px;
  line-height: 18px;
  height: 18px;
  font-weight: bold;
  margin-left: 6px;
  background-color: #E1A500;
  border-radius: 9px;
  color: #FFFFFF;
}
.comArticleSummary .meta .unreceived, .comArticleSummary .meta .received {
  width: 50px;
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  height: 18px;
  font-weight: bold;
  margin-left: 6px;
  border-radius: 9px;
  padding: 0 4px;
}
.comArticleSummary .meta .unreceived {
  background-color: var(--corp-color);
  color: #FFFFFF;
}
.comArticleSummary .meta .received {
  background-color: #BEBEBE;
  color: #000000;
}
.comArticleSummary .title {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
}
.comArticleSummary .title .sub {
  font-size: 12px;
}
@media screen and (min-width: 600px) {
  .comArticleSummary .meta .date {
    font-size: 14px;
  }
  .comArticleSummary .meta .new {
    font-size: 13px;
  }
  .comArticleSummary .title {
    font-size: 18px;
  }
}

/**
 * Name: comShopSummary
 * Example: created
 */
.comShopSummary {
  display: flex;
  justify-content: space-between;
}
.comShopSummary .base-data {
  align-self: center;
}
.comShopSummary .base-data .shop-name {
  display: block;
  font-size: 16px;
  font-weight: 500;
}
.comShopSummary .base-data .shop-name .favorite {
  margin-left: 8px;
  font-size: 14px;
  color: #E60020;
}
.comShopSummary .base-data .shop-address {
  margin-top: 8px;
  display: block;
  font-size: 11px;
}
.comShopSummary .base-data .distance {
  font-size: 13px;
  font-weight: bold;
}
.comShopSummary .time {
  flex-shrink: 0;
  margin-left: 24px;
  background-color: #F9EDCC;
  border-radius: 4px;
  padding: 6px 10px 4px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.comShopSummary .time .sup {
  font-size: 10px;
  line-height: 12px;
}
.comShopSummary .time .minutes {
  margin-top: 3px;
  line-height: 20px;
}
.comShopSummary .time .minutes .number {
  font-size: 20px;
  font-weight: 500;
}
.comShopSummary .time .minutes .text {
  font-size: 10px;
}
@media screen and (min-width: 600px) {
  .comShopSummary .base-data .sup {
    font-size: 16px;
  }
  .comShopSummary .base-data .shop-name {
    font-size: 22px;
  }
  .comShopSummary .base-data .shop-address {
    font-size: 13px;
  }
  .comShopSummary .time .sup {
    font-size: 14px;
    line-height: 18px;
  }
  .comShopSummary .time .minutes {
    line-height: 28px;
  }
  .comShopSummary .time .minutes .number {
    font-size: 22px;
  }
  .comShopSummary .time .minutes .text {
    font-size: 14px;
  }
}

/**
 * Name: comArticleList
 * Example: created
 */
.comArticleList > li {
  border-bottom: 1px solid #F2F2F2;
}
.comArticleList > li > a, .comArticleList > li label, .comArticleList > li .mt-inner {
  padding: 10px;
}
.comArticleList.opt-with-border {
  border-top: 1px solid #F2F2F2;
}
@media screen and (min-width: 600px) {
  .comArticleList > li > a, .comArticleList > li label, .comArticleList > li .mt-inner {
    padding: 20px 10px 12px 10px;
  }
}

/**
 * Name: comShopList
 * Example: created
 */
.comShopList li {
  border-bottom: 1px solid #F2F2F2;
}
.comShopList li > a, .comShopList li label, .comShopList li .mt-inner {
  padding: 20px 10px;
}

/**
 * Name: comMenuList
 * Example: created
 */
.comMenuList {
  word-break: break-all;
}
.comMenuList > li {
  border-bottom: 1px solid #F2F2F2;
}
.comMenuList > li:last-child {
  border-bottom: none;
}
.comMenuList > li > * {
  padding: 20px 10px;
}
.comMenuList.opt-with-border {
  border-top: 1px solid #F2F2F2;
}
.comMenuList.opt-no-side-padding > li > * {
  padding: 10px 0;
}
.comMenuList.col-2 {
  display: flex;
  flex-wrap: wrap;
}
.comMenuList.col-2 > li {
  width: 50%;
}
.comMenuList.col-2 > li:nth-child(2n+1) {
  border-right: 1px solid #F2F2F2;
}
.comMenuList.col-2 > li:last-child {
  border-bottom: 1px solid #F2F2F2;
}

.comMenuListMenuPage.opt-with-border {
  border-top: 1px solid #F2F2F2;
}
.comMenuListMenuPage.opt-no-side-padding > li > * {
  padding: 10px 0;
}
.comMenuListMenuPage li > * {
  padding: 20px 10px;
}
.comMenuListMenuPage li > a > .text > .name,
.comMenuListMenuPage li > a > .text > .description,
.comMenuListMenuPage li > a > .text > .price {
  font-size: 14px;
  font-weight: bold;
}
.comMenuListMenuPage li > .opt-soldout > .text > .name,
.comMenuListMenuPage li > .opt-soldout > .text > .description,
.comMenuListMenuPage li > .opt-soldout > .text > .price {
  font-size: 14px;
  font-weight: bold;
}
.comMenuListMenuPage > li:last-child {
  border-bottom: none;
}
.comMenuListMenuPage.col-1 li {
  border-bottom: 1px solid #F2F2F2;
}
.comMenuListMenuPage.col-1 li > a > .image > img,
.comMenuListMenuPage.col-1 li > .opt-soldout > .image > img {
  width: 100px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
.comMenuListMenuPage.col-2 {
  display: flex;
  flex-wrap: wrap;
}
.comMenuListMenuPage.col-2 > li {
  width: 50%;
}
.comMenuListMenuPage.col-2 > li > a,
.comMenuListMenuPage.col-2 > li > .opt-soldout {
  display: block;
}
.comMenuListMenuPage.col-2 > li > a > .text,
.comMenuListMenuPage.col-2 > li > .opt-soldout > .text {
  margin: 0;
  padding: 4px;
}
.comMenuListMenuPage.col-2 > li > a > .image,
.comMenuListMenuPage.col-2 > li > .opt-soldout > .image {
  width: 100%;
  margin: auto;
}
.comMenuListMenuPage.col-2 > li > a > .image > img,
.comMenuListMenuPage.col-2 > li > .opt-soldout > .image > img {
  width: 100%;
  height: 36vw;
  max-height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 600px) {
  .comMenuListMenuPage.col-2 > li > a > .image > img,
  .comMenuListMenuPage.col-2 > li > .opt-soldout > .image > img {
    height: 24vw;
    max-height: 360px;
  }
}
.comMenuListMenuPage.col-3 {
  display: flex;
  flex-wrap: wrap;
}
.comMenuListMenuPage.col-3 > li {
  width: 33.33333%;
  width: 33.3333333333%;
}
.comMenuListMenuPage.col-3 > li > a,
.comMenuListMenuPage.col-3 > li > .opt-soldout {
  display: block;
  padding: 20px 6px;
}
.comMenuListMenuPage.col-3 > li > a > .text,
.comMenuListMenuPage.col-3 > li > .opt-soldout > .text {
  margin: 0;
  padding: 4px;
}
.comMenuListMenuPage.col-3 > li > a > .image,
.comMenuListMenuPage.col-3 > li > .opt-soldout > .image {
  width: 100%;
  margin: auto;
}
.comMenuListMenuPage.col-3 > li > a > .image > img,
.comMenuListMenuPage.col-3 > li > .opt-soldout > .image > img {
  width: 100%;
  height: 30vw;
  max-height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 600px) {
  .comMenuListMenuPage.col-3 > li > a > .image > img,
  .comMenuListMenuPage.col-3 > li > .opt-soldout > .image > img {
    height: 24vw;
    max-height: 190px;
  }
}

/**
 * Name: comSectionList
 * Example: created
 */
.comSectionList {
  word-break: break-all;
}
.comSectionList > * {
  border-bottom: 1px solid #F2F2F2;
  padding: 20px;
}
.comSectionList > *.mt-no-border {
  border-bottom: none;
}
.comSectionList > *.mt-accent-border {
  border-bottom: 1px solid #BEBEBE;
}
.comSectionList.opt-small-padding > * {
  padding: 10px;
}
.comSectionList.opt-horizontal-no-padding > * {
  padding-left: 0;
  padding-right: 0;
}
.comSectionList.opt-information > * {
  border-color: #F9EDCC;
}

.opt-menubadge {
  position: relative;
}
.opt-menubadge .menubadge {
  position: absolute;
  bottom: -2px;
  background-color: var(--corp-color);
  font-size: 13px;
  line-height: 20px;
  color: #FFFFFF;
  border-radius: 4px;
  padding: 0 7px;
  z-index: 25;
}

/**
 * Name: comButtonGroup
 * Example: created
 */
.comButtonGroup {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.comButtonGroup > *:not(:first-child) {
  margin-top: 20px;
}

/**
 * Name: comTabs
 * Example: created
 */
.comTabs {
  display: flex;
  align-items: flex-end;
  border-bottom: 2px solid var(--corp-color);
  position: relative;
}
.comTabs.vertical {
  display: flex;
  align-items: flex-end;
  position: relative;
  writing-mode: vertical-rl;
}
.comTabs.vertical .tab {
  padding: 0;
  padding-right: 13px;
  font-size: 11px;
  font-weight: bold;
  line-height: 18px;
  color: #575757;
  background-color: #E6E6E6;
  border-radius: 0 8px 8px 0;
  box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.16);
  text-align: center;
  word-wrap: break-word;
  white-space: normal;
  height: 140px;
  width: 50px;
  cursor: pointer;
}
.comTabs.vertical .tab.active {
  font-size: 13px;
  background-color: var(--corp-color);
  color: #FFFFFF;
  padding: 0;
}
.comTabs.vertical .tab.disabled {
  color: #BEBEBE;
  cursor: default;
}
.comTabs.vertical.opt-even > * {
  width: 100%;
}
.comTabs.vertical.opt-padding .tab, .comTabs.vertical.opt-padding .tab.active {
  padding-right: 13px;
}
.comTabs.vertical.opt-no-border {
  border-bottom: none;
}
.comTabs .tab {
  padding: 8px 0;
  font-size: 11px;
  font-weight: bold;
  line-height: 18px;
  color: #575757;
  background-color: #E6E6E6;
  border-radius: 8px 8px 0 0;
  box-shadow: 1px 0 6px rgba(0, 0, 0, 0.16);
  text-align: center;
  cursor: pointer;
}
.comTabs .tab.active {
  font-size: 14px;
  padding: 14px 0;
  background-color: var(--corp-color);
  color: #FFFFFF;
}
.comTabs .tab.disabled {
  color: #BEBEBE;
  cursor: default;
}
.comTabs.opt-even > * {
  width: 100%;
}
.comTabs.opt-padding .tab, .comTabs.opt-padding .tab.active {
  padding-left: 20px;
  padding-right: 20px;
}
.comTabs.opt-no-border {
  border-bottom: none;
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.comTabMenuSetMulti .menu-set-tabs {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
  margin: 5px;
  max-width: 98%;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: 5;
}
.comTabMenuSetMulti .menu-set-tabs::-webkit-scrollbar {
  display: none;
}
.comTabMenuSetMulti .menu-set-tabs .menu-set-tab {
  flex-shrink: 0;
  color: #575757;
  background: #BEBEBE;
  border-radius: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 5px 15px;
  position: relative;
  font-size: 14px;
  font-weight: bold;
  min-width: 120px;
  padding-right: 45px;
}
.comTabMenuSetMulti .menu-set-tabs .menu-set-tab:first-of-type {
  margin-left: auto;
}
.comTabMenuSetMulti .menu-set-tabs .menu-set-tab:last-of-type {
  margin-right: auto;
}
.comTabMenuSetMulti .menu-set-tabs .line {
  flex-shrink: 0;
  background: #BEBEBE;
  min-width: 20px;
  height: 5px;
}
.comTabMenuSetMulti .menu-set-tabs .line:last-child {
  display: none;
}
.comTabMenuSetMulti .menu-set-tabs .menu-set-quantity {
  position: absolute;
  background-color: #FFFFFF;
  line-height: 20px;
  color: var(--corp-color);
  border-radius: 3px;
  padding: 0 7px;
  right: 3px;
  min-width: 20px;
  text-align: right;
}
.comTabMenuSetMulti .tab-switch:checked + .menu-set-tab {
  color: #FFFFFF;
  background: var(--corp-color);
}
.comTabMenuSetMulti .tab-content {
  width: 100%;
  display: none;
}
.comTabMenuSetMulti .tab-content.active_tab {
  display: block;
  animation: appear 1s ease;
}
.comTabMenuSetMulti .tab-switch {
  display: none;
}
.comTabMenuSetMulti .select-message {
  color: red;
  text-align: center;
  margin: 20px 0px;
}
.comTabMenuSetMulti .select-message span {
  font-size: 16px;
  font-weight: bold;
}

/**
 * Name: comSearchInput
 * Example: created
 */
.comSearchInput {
  position: relative;
}
.comSearchInput input {
  width: 100%;
  border-color: #9C7200;
}
.comSearchInput input::-webkit-input-placeholder, .comSearchInput input::placeholder {
  color: #9C7200;
  font-weight: 500;
}
.comSearchInput .search {
  width: 40px;
  height: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 0 4px 4px 0;
  padding: 0;
  background-color: #9C7200;
}
.comSearchInput .search::before {
  font-family: "icomoon" !important;
  content: "\e906";
  font-size: 18px;
  color: #ffffff;
}
.comSearchInput .search span {
  width: 0;
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/**
 * Name: comSearchSelect
 * Example: created
 */
.comSearchSelect {
  border-color: #9C7200;
}
.comSearchSelect::after {
  color: #9C7200;
}
.comSearchSelect select {
  color: #9C7200;
}

/**
 * Name: comDefinition
 * Example: created
 */
.comDefinition dt {
  font-size: 12px;
  font-weight: 500;
}
.comDefinition dt:not(:first-child) {
  margin-top: 16px;
}
.comDefinition dd {
  font-size: 13px;
  margin-top: 4px;
}
@media screen and (min-width: 600px) {
  .comDefinition {
    display: flex;
    flex-wrap: wrap;
  }
  .comDefinition dt, .comDefinition dd {
    line-height: 24px;
    padding: 12px 0;
    border-bottom: 1px solid #F2F2F2;
  }
  .comDefinition dt {
    width: 10em;
    font-size: 13px;
    font-weight: normal;
  }
  .comDefinition dt:not(:first-child) {
    margin-top: 0;
  }
  .comDefinition dd {
    width: calc(100% - 10em);
    font-size: 18px;
    font-weight: 500;
    margin: 0;
  }
  .comDefinition.opt-6em dt {
    width: 6em;
  }
  .comDefinition.opt-6em dd {
    width: calc(100% - 6em);
  }
}

/**
 * Name: comMaps
 * Example: created
 */
.comMaps {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}
.comMaps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * Name: comModal
 * Example: created
 */
.comModal {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
}
.comModal.open {
  display: block;
}
.comModal .back {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.6);
}
.comModal .frame {
  width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 4px;
  padding-top: 32px;
  overflow: hidden;
}
.comModal .frame .close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 15;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .comModal .frame {
    width: 340px;
  }
  .comModal .frame .spaceContents {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.comModal .frameCautionPasscode {
  overflow: initial;
  padding-top: 12px;
  background-color: rgba(0, 0, 0, 0);
}

/**
 * Name: comModalSelect
 * Example: created
 */
.comModalSelect {
  border-top: 1px solid #BEBEBE;
  display: flex;
  flex-direction: row-reverse;
}
.comModalSelect > * {
  display: block;
  margin: 0;
  padding: 10px;
  border: none;
  width: 100%;
  line-height: 30px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #1B72EA;
  cursor: pointer;
  background-color: #ffffff;
}
.comModalSelect > *:not(:first-child) {
  border-right: 1px solid #BEBEBE;
}
.comModalSelect.opt-alert {
  border: none;
}
.comModalSelect.opt-alert > * {
  font-size: 13px;
  background-color: #E0E0E0;
  color: #575757;
  font-weight: normal;
}
.comModalSelect.opt-alert > *:not(:first-child) {
  border-right: none;
}
.comModalSelect.opt-alert > *.action {
  background-color: #927A41;
  color: #FFFFFF;
  font-weight: bold;
}

/**
 * Name: comModalShopDetail
 * Example: created
 */
.comModalShopDetail {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
}
.comModalShopDetail .back {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.6);
}
.comModalShopDetail .frame {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 4px;
  padding-top: 50px;
  width: 90%;
  height: 80%;
  border-top: 1px solid;
}
.comModalShopDetail .frame .spaceContents {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-left: 12px;
  padding-right: 12px;
  height: calc(100% - 50px);
}
.comModalShopDetail .frame .close {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 50px;
  width: 100%;
  z-index: 15;
  cursor: pointer;
  display: flex;
  justify-content: left;
  align-items: center;
  border-bottom: 1px solid var(--corp-color);
}
.comModalShopDetail .frame .mapFrame {
  width: 100%;
  height: 60%;
  border: 0;
  padding: 10px 0;
}
.comModalShopDetail .frame .shopName {
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0 10px 20px;
}
.comModalShopDetail .frame .row {
  margin-top: 10px;
  overflow: hidden;
  font-size: 12px;
  border-bottom: 1px solid #CCC;
  padding-bottom: 10px;
}
.comModalShopDetail .frame .row:first-child {
  border-top: 1px solid #CCC;
}
.comModalShopDetail .frame .row:last-child {
  border-bottom: none;
}
.comModalShopDetail .frame #shop-detail-content {
  height: 100%;
}
.comModalShopDetail .frame .columnCaption {
  width: 20%;
  float: left;
  color: #666666;
}
.comModalShopDetail .frame .columnValue {
  width: 80%;
  float: left;
}
@media screen and (min-width: 600px) {
  .comModalShopDetail .frame {
    width: 70%;
    height: 90%;
    max-height: none;
    overflow-x: hidden;
    border-top: 1px solid;
  }
  .comModalShopDetail .frame .spaceContents {
    padding-left: 12px;
    padding-right: 12px;
    height: calc(100% - 50px);
  }
  .comModalShopDetail .frame .mapFrame {
    width: 100%;
    height: 60%;
    border: 0;
  }
}

/**
 * Name: comFormElements
 * Example: created
 */
.comFormElements .mt-section > *:not(:first-child) {
  margin-top: 24px;
}
.comFormElements .mt-block > *:not(:first-child) {
  margin-top: 16px;
}
.comFormElements .mt-element > *:not(:first-child) {
  margin-top: 6px;
}
.comFormElements .mt-flex {
  display: flex;
}
.comFormElements .mt-flex > * {
  flex-grow: 1;
}
.comFormElements .mt-flex > *:not(:first-child) {
  margin-left: 8px;
}
.comFormElements .mt-flex.opt-align-center {
  align-items: center;
}
.comFormElements .mt-flex .mt-fix {
  flex-grow: 0;
  flex-shrink: 0;
}
.comFormElements .mt-flex .birthday_year {
  width: 50%;
}
.comFormElements .mt-flex .birthday_month {
  width: 20%;
}
.comFormElements .mt-flex .birthday_day {
  width: 20%;
}
.comFormElements .mt-label {
  font-size: 14px;
  font-weight: bold;
}
.comFormElements .mt-label .required {
  font-size: 12px;
  color: #C60A16;
  margin-left: 8px;
}
.comFormElements .mt-label-sub {
  font-size: 13px;
  margin-top: 0;
}
.comFormElements .mt-value {
  font-size: 16px;
}
.comFormElements .mt-text {
  font-size: 12px;
  margin-top: 8px;
}

/**
 * Name: comCheckBoxes
 * Example: created
 */
.comCheckBoxes {
  display: flex;
  flex-wrap: wrap;
}
.comCheckBoxes > * {
  margin: 6px 12px 6px 0;
}

/**
 * Name: comCalendar
 * Example: created
 */
.comCalendar {
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
}
.comCalendar .button-container-calendar {
  display: flex;
  justify-content: space-between;
}
.comCalendar .table-calendar {
  width: 100%;
  margin-top: 12px;
}
.comCalendar .table-calendar th, .comCalendar .table-calendar td {
  text-align: center;
  font-size: 14px;
}
.comCalendar .table-calendar thead th {
  font-size: 12px;
}
.comCalendar .table-calendar tbody th, .comCalendar .table-calendar tbody td {
  background-color: #F2F2F2;
  padding: 12px 0;
}
.comCalendar .table-calendar tbody th.selectable, .comCalendar .table-calendar tbody td.selectable {
  background-color: #F8EDC6;
}
.comCalendar .table-calendar tbody th.selectable.sunday, .comCalendar .table-calendar tbody td.selectable.sunday {
  background-color: #F8C7CE;
}
.comCalendar .table-calendar tbody th.selectable.saturday, .comCalendar .table-calendar tbody td.selectable.saturday {
  background-color: #DCE6CB;
}
.comCalendar .table-calendar tbody th.selected, .comCalendar .table-calendar tbody td.selected {
  background-color: #E1A500;
}

/**
 * Name: comTimeStock
 * Example: created
 */
.comTimeStock {
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.comTimeStock > * {
  width: 100%;
  flex-grow: 1;
}
.comTimeStock dt {
  font-size: 10px;
}
.comTimeStock dd {
  margin-top: 6px;
  position: relative;
  padding-left: 24px;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
}
.comTimeStock dd::before {
  content: "";
  display: block;
  width: 1px;
  height: 25px;
  background-color: #D9D9D9;
  position: absolute;
  top: 0;
  left: 12px;
}
.comTimeStock dd .in-stock {
  color: #52C343;
}
.comTimeStock dd .low-stock {
  color: #FFC202;
}
.comTimeStock dd .out-of-stock {
  color: #BEBEBE;
}
.comTimeStock dd .out-of-time {
  color: #BEBEBE;
}
.comTimeStock .end {
  width: auto;
  font-size: 10px;
  flex-grow: 0;
  flex-shrink: 0;
  position: relative;
  padding-bottom: 31px;
}
.comTimeStock .end::before {
  content: "";
  display: block;
  width: 1px;
  height: 25px;
  background-color: #D9D9D9;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/**
 * Name: comTimeStockDescription
 * Example: created
 */
.comTimeStockDescription {
  display: flex;
  justify-content: center;
}
.comTimeStockDescription > * {
  display: flex;
  font-size: 10px;
  font-weight: bold;
}
.comTimeStockDescription > *:not(:first-child) {
  margin-left: 16px;
}
.comTimeStockDescription [class^=icon-], .comTimeStockDescription [class*=" icon-"] {
  margin-right: 4px;
  font-size: 12px;
}
.comTimeStockDescription .in-stock {
  color: #52C343;
}
.comTimeStockDescription .low-stock {
  color: #FFC202;
}
.comTimeStockDescription .out-of-stock {
  color: #BEBEBE;
}
.comTimeStockDescription .out-of-time {
  color: #BEBEBE;
}

/**
 * Name: comAvailability
 * Example: created
 */
.comAvailability {
  background-color: #FFFBEF;
  padding: 12px;
}
.comAvailability > *:not(:first-child) {
  margin-top: 24px;
}
.comAvailability .mt-title {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.comAvailability.opt-white {
  background-color: #ffffff;
  padding: 36px 12px;
}

/**
 * Name: comMenuSummary
 * Example: created
 */
.comMenuSummary {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border: none;
  background-color: transparent;
  text-align: left;
  -webkit-appearance: none;
  word-break: break-all;
}
.comMenuSummary .image {
  width: 100px;
  flex-shrink: 0;
  position: relative;
}
.comMenuSummary .image .quantity {
  position: absolute;
  top: -4px;
  left: -4px;
  background-color: var(--corp-color);
  font-size: 13px;
  font-weight: bold;
  line-height: 20px;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 0 7px;
}
.comMenuSummary .text {
  flex-grow: 1;
  margin-left: 10px;
  overflow: hidden;
}
.comMenuSummary .text .name {
  font-size: 16px;
  font-weight: 500;
}
.comMenuSummary .text .description {
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 4px;
}
.comMenuSummary .text .price {
  font-size: 14px;
  margin-top: 8px;
  text-align: right;
}
.comMenuSummary.column {
  display: block;
}
.comMenuSummary.column .image {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.comMenuSummary.column .text {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.comMenuSummary.column .text .description {
  text-align: justify;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.comMenuSummary.opt-soldout {
  position: relative;
}
.comMenuSummary.opt-soldout::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 20;
}
.comMenuSummary.opt-soldout .soldout {
  position: absolute;
  top: 20px;
  left: 10px;
  background-color: var(--corp-color);
  font-size: 13px;
  line-height: 20px;
  color: #FFFFFF;
  border-radius: 4px;
  padding: 0 7px;
  z-index: 25;
}

/**
 * Name: comMenuSetMulti
 * Example: created
 */
.comMenuSetMulti {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border: none;
  background-color: transparent;
  text-align: left;
  word-break: break-all;
}
.comMenuSetMulti .image {
  width: 100px;
  flex-shrink: 0;
  position: relative;
}
.comMenuSetMulti .image .quantity {
  position: absolute;
  top: -4px;
  left: -4px;
  background-color: var(--corp-color);
  font-size: 13px;
  font-weight: bold;
  line-height: 20px;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 0 7px;
}
.comMenuSetMulti .image .menubadge {
  position: absolute;
  bottom: 15px;
  background-color: var(--corp-color);
  font-size: 13px;
  line-height: 20px;
  color: #FFFFFF;
  border-radius: 4px;
  padding: 0 7px;
  z-index: 25;
}
.comMenuSetMulti .text {
  flex-grow: 1;
  margin-left: 20px;
  overflow: hidden;
  display: flex;
  flex-flow: column;
}
.comMenuSetMulti .text .top {
  display: flex;
}
.comMenuSetMulti .text .top .name {
  margin-right: auto;
  font-size: 16px;
  font-weight: 500;
}
.comMenuSetMulti .text .top .price {
  min-width: 115px;
  font-size: 14px;
  text-align: right;
}
.comMenuSetMulti .text .top .price .sign {
  margin-right: 5px;
}
.comMenuSetMulti .text .middle .description {
  font-size: 11px;
  font-weight: nomal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 4px;
}
.comMenuSetMulti .text .bottom {
  display: flex;
}
.comMenuSetMulti .text .bottom .comCounter {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.comMenuSetMulti .text .bottom .comCounter > * {
  margin-right: 16px;
}
.comMenuSetMulti .text .bottom .comCounter .select {
  width: 130px;
  border-radius: 15px;
  padding: 5px;
}
.comMenuSetMulti .text .bottom .comCounter .decrease, .comMenuSetMulti .text .bottom .comCounter .increase {
  width: 30px;
  line-height: 30px;
  border-radius: 4px;
  text-align: center;
  color: #FFFFFF;
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}
.comMenuSetMulti .text .bottom .comCounter .decrease.opt-disabled, .comMenuSetMulti .text .bottom .comCounter .increase.opt-disabled {
  background-color: #BEBEBE;
  cursor: default;
}
.comMenuSetMulti .text .bottom .comCounter .decrease.opt-action, .comMenuSetMulti .text .bottom .comCounter .increase.opt-action {
  background-color: #E1A500;
  cursor: pointer;
}
.comMenuSetMulti .text .bottom .comCounter .quantity {
  width: 1.6em;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
.comMenuSetMulti .text .bottom .comCounter .select {
  display: block;
}
.comMenuSetMulti .text .bottom .comCounter .decrease, .comMenuSetMulti .text .bottom .comCounter .increase, .comMenuSetMulti .text .bottom .comCounter .quantity {
  display: none;
}
.comMenuSetMulti .text .bottom .comCounter.selected .select {
  display: none;
}
.comMenuSetMulti .text .bottom .comCounter.selected .decrease, .comMenuSetMulti .text .bottom .comCounter.selected .increase, .comMenuSetMulti .text .bottom .comCounter.selected .quantity {
  display: block;
  margin-top: 2px;
  margin-bottom: 2px;
}
.comMenuSetMulti.opt-soldout {
  position: relative;
}
.comMenuSetMulti.opt-soldout::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 20;
}
.comMenuSetMulti.opt-soldout .soldout {
  position: absolute;
  top: 20px;
  left: 10px;
  background-color: var(--corp-color);
  font-size: 13px;
  line-height: 20px;
  color: #FFFFFF;
  border-radius: 4px;
  padding: 0 7px;
  z-index: 25;
}

/**
 * Name: comCartSummary
 * Example: created
 */
.comCartSummary {
  display: flex;
  justify-content: space-between;
}
.comCartSummary .image {
  width: 100px;
  flex-shrink: 0;
  position: relative;
}
.comCartSummary .image .quantity {
  position: absolute;
  top: -4px;
  left: -4px;
  background-color: var(--corp-color);
  font-size: 13px;
  font-weight: bold;
  line-height: 20px;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 0 7px;
}
.comCartSummary .text {
  flex-grow: 1;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.comCartSummary .text .detail {
  flex-grow: 1;
}
.comCartSummary .text .detail li {
  display: flex;
  align-items: center;
}
.comCartSummary .text .detail li:not(:first-child) {
  margin-top: 4px;
}
.comCartSummary .text .detail li .main {
  flex-grow: 1;
  font-size: 16px;
}
.comCartSummary .text .detail li .main-price {
  font-size: 16px;
  flex-shrink: 0;
  text-align: right;
}
.comCartSummary .text .detail li .option {
  flex-grow: 1;
  font-size: 14px;
}
.comCartSummary .text .detail li .price {
  flex-shrink: 0;
  font-size: 14px;
  text-align: right;
}
.comCartSummary .text .action {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}
.comCartSummary .text .action li {
  max-width: 120px;
}
.comCartSummary .text .action li:not(:first-child) {
  margin-left: 12px;
}
.comCartSummary .text .action li .icon-bin {
  color: var(--corp-color);
}
.comCartSummary .text .action li > * {
  display: block;
  border: 1px solid #BEBEBE;
  background-color: #FFFFFF;
  font-size: 18px;
  line-height: 18px;
  border-radius: 10px;
  padding: 5px;
  text-align: center;
  margin: 0;
}
.comCartSummary .text .action li.all button {
  width: 40px;
  padding: 3px 3px 0px 3px;
}
.comCartSummary .text .action li.all .bin-text {
  font-size: 12px;
  color: var(--corp-color);
}
.comCartSummary.opt-in-complete {
  display: block;
}
.comCartSummary.opt-in-complete .text {
  margin-left: 0;
}
.comCartSummary.opt-in-complete .text .detail li .main {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 24px;
}
.comCartSummary.opt-in-complete .text .detail li .main .number {
  display: block;
  width: 14px;
  height: 14px;
  background-color: var(--corp-color);
  border-radius: 7px;
  color: #FFFFFF;
  font-size: 10px;
  line-height: 13px;
  text-align: center;
  position: absolute;
  top: 6px;
  left: 0;
}
.comCartSummary.opt-in-complete .text .detail li .option {
  padding-left: 42px;
}
/**
 * Name: comFloatingCart
 * Example: created
 */
.comDeleteAllMenu {
  margin-top: 12px;
  padding: 0 10px;
}
.comDeleteAllMenu .text .action li {
  max-width: 130px;
}

/**
 * Name: comFloatingCart
 * Example: created
 */
.comFloatingCart {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 25;
  background-color: #FFFFFF;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  padding: 15px 20px 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: bottom 0.4s;
}
.comFloatingCart.hide {
  bottom: -130px;
}

/**
 * Name: comFloatingMenuSetMultiCart
 * Example: created
 */
.comFloatingMenuSetMultiCart {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 25;
  background-color: #FFFFFF;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  padding: 15px 20px 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: bottom 0.4s;
}
.comFloatingMenuSetMultiCart.hide {
  bottom: -130px;
}
.comFloatingMenuSetMultiCart .prev-next-controll {
  margin-bottom: 1px;
}
.comFloatingMenuSetMultiCart .prev-next-controll .prev-button,
.comFloatingMenuSetMultiCart .prev-next-controll .next-button {
  padding: 5px 20px;
}
.comFloatingMenuSetMultiCart .prev-button .prev.opt-action {
  border: 1px solid #BEBEBE;
  background-color: #FFFFFF;
  cursor: pointer;
}
.comFloatingMenuSetMultiCart .next-button .next,
.comFloatingMenuSetMultiCart .addcart-button .addcart {
  width: 180px;
  display: block;
  font-size: 14px;
  padding: 8px;
  border: none;
  text-align: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 500;
  line-height: 22px;
  max-width: 425px;
  position: relative;
  -webkit-box-pack: start;
}
.comFloatingMenuSetMultiCart .next-button .next.opt-disabled,
.comFloatingMenuSetMultiCart .addcart-button .addcart.opt-disabled {
  border: 1px solid #BEBEBE;
  background-color: #FFFFFF;
  color: #BEBEBE;
  cursor: default;
}
.comFloatingMenuSetMultiCart .next-button .next.opt-action,
.comFloatingMenuSetMultiCart .addcart-button .addcart.opt-action {
  border: 1px solid #927A41;
  background-color: #927A41;
  color: #FFFFFF;
  cursor: pointer;
}

/**
 * Name: comFloatingIcon
 * Example: created
 */
.comFloatingIcon {
  position: fixed;
  bottom: 12px;
  right: 12px;
  z-index: 25;
}
.comFloatingIcon > * {
  width: 64px;
  height: 64px;
  background-color: #927A41;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.32);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
}
.comFloatingIcon .mt-icon {
  font-size: 20px;
}
.comFloatingIcon .mt-text {
  margin-top: 4px;
  font-size: 9px;
}

/**
 * Name: comMenuDetail
 * Example: created
 */
.comMenuDetail {
  word-break: break-all;
}
.comMenuDetail .name {
  font-size: 16px;
  font-weight: bold;
}
.comMenuDetail .image {
  margin-top: 6px;
}
.comMenuDetail .image img {
  width: 100%;
}
.comMenuDetail .price {
  font-size: 16px;
  margin-top: 8px;
  text-align: right;
}
.comMenuDetail .description {
  font-size: 13px;
  line-height: 24px;
  margin-top: 20px;
}

.menu_set_contents_area .partsHeading01:not(:first-child) {
  margin-top: 20px;
}
.menu_set_contents_area .comMenuDetailMenuSetContens .image {
  display: flex;
  justify-content: center;
  border: 1px solid #BEBEBE;
  border-radius: 45px;
}
.menu_set_contents_area .comMenuDetailMenuSetContens .image img {
  padding: 10px;
}
.menu_set_contents_area .comMenuDetailMenuSetContens .description {
  margin-top: 15px;
}

/**
 * Name: comCounter
 * Example: created
 */
.comCounter {
  display: flex;
  align-items: center;
}
.comCounter > *:not(:first-child) {
  margin-left: 16px;
}
.comCounter .decrease, .comCounter .increase {
  width: 30px;
  line-height: 30px;
  border-radius: 4px;
  text-align: center;
  background-color: #E1A500;
  color: #FFFFFF;
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}
.comCounter .decrease.opt-disabled, .comCounter .increase.opt-disabled {
  background-color: #BEBEBE;
  cursor: default;
}
.comCounter .quantity {
  width: 1.2em;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

/**
 * Name: comSubTotal
 * Example: created
 */
.comSubTotal {
  display: flex;
  justify-content: space-between;
  background-color: #FFFBEF;
  padding: 12px 10px;
}
.comSubTotal dt {
  font-size: 16px;
}
.comSubTotal dd {
  font-size: 16px;
  text-align: right;
  color: #000000;
}

/**
 * Name: comInputLine
 * Example: created
 */
.comInputLine {
  display: flex;
}
.comInputLine > * {
  width: 100%;
}
.comInputLine > *:not(:first-child) {
  margin-left: 12px;
}
.comInputLine > * span {
  width: 100%;
}

/**
 * Name: comTimeBox
 * Example: created
 */
.comTimeBox {
  display: flex;
  align-items: center;
}
.comTimeBox .hour {
  width: 45px;
  flex-shrink: 0;
  font-size: 14px;
}
.comTimeBox .minutes {
  flex-grow: 1;
}

/**
 * Name: comStatement
 * Example: created
 */
.comStatement li:not(:first-child) {
  margin-top: 2px;
}

/**
 * Name: comFlow
 * Example: created
 */
.comFlow li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 24px;
}
.comFlow li::before {
  width: 14px;
  height: 14px;
  border: 1px solid var(--corp-color);
  border-radius: 7px;
  color: var(--corp-color);
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  position: absolute;
  top: 6px;
  left: 0;
}
.comFlow li:nth-child(1)::before {
  content: "1";
}
.comFlow li:nth-child(2)::before {
  content: "2";
}
.comFlow li:nth-child(3)::before {
  content: "3";
}
.comFlow li:nth-child(4)::before {
  content: "4";
}
.comFlow li:nth-child(5)::before {
  content: "5";
}
.comFlow li:nth-child(6)::before {
  content: "6";
}
.comFlow li:nth-child(7)::before {
  content: "7";
}
.comFlow li:nth-child(8)::before {
  content: "8";
}
.comFlow li:nth-child(9)::before {
  content: "9";
}
.comFlow li:not(:last-child) {
  margin-bottom: 24px;
}
.comFlow li:not(:last-child)::after {
  content: "";
  display: block;
  width: 8px;
  height: 5px;
  border-top: 5px solid #BEBEBE;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

/**
 * Name: comAccordion
 * Example: created
 */
.comAccordion {
  border-top: 1px solid #EDC966;
}
.comAccordion > * {
  border-bottom: 1px solid #EDC966;
}
.comAccordion > * > .head {
  display: block;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 24px 12px 10px;
  background-color: #F9EDCC;
  position: relative;
  color: #6F5100;
}
.comAccordion > * > .head::after {
  content: "\e902";
  font-family: "icomoon";
  display: block;
  width: 4px;
  height: 8px;
  text-align: center;
  line-height: 8px;
  font-size: 8px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
.comAccordion > * > .head.open::after {
  transform: translateY(-50%) rotate(-90deg);
}
.comAccordion > * > .body {
  padding: 0 10px 12px 10px;
}
.comAccordion > * > .body.opt-parent {
  padding: 0;
}
.comAccordion.opt-inner {
  border-color: #F2F2F2;
}
.comAccordion.opt-inner > * {
  border-color: #F2F2F2;
}
.comAccordion.opt-inner > * > .head {
  background-color: #FFFFFF;
}
/**
 * Name: comCard
 * Example: created
 */
.comCard {
  padding: 26px 20px;
  background-color: #FFFFFF;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.comCard .mt-tag {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 4px;
  overflow: hidden;
}
.comCard .mt-tag > * {
  font-size: 13px;
  line-height: 26px;
  padding: 0 12px;
}
.comCard .mt-tag .unreceived {
  font-weight: bold;
  color: #FFFFFF;
  background-color: var(--corp-color);
}
.comCard .mt-tag .received {
  background-color: #BEBEBE;
  color: #000000;
}

/**
 * Name: comPagination
 * Example: created
 */
.comPagination {
  display: flex;
  justify-content: center;
  font-size: 13px;
  line-height: 24px;
  text-align: center;
}
.comPagination > *:not(:first-child) {
  margin-left: 8px;
}
.comPagination .first, .comPagination .last {
  padding: 0 8px;
}
.comPagination .numbers {
  display: flex;
}
.comPagination .numbers li a, .comPagination .numbers li span {
  display: block;
  width: 24px;
}
.comPagination .numbers li:not(:first-child) {
  margin-left: 8px;
}
.comPagination .numbers li.active span {
  border-radius: 50%;
  background-color: #E1A500;
  color: #FFFFFF;
}
.comPagination .numbers li.point {
  margin-left: 0;
}
.comPagination .numbers li.point span {
  width: 16px;
}
.comPagination .numbers li.point + * {
  margin-left: 0;
}

/**
 * Name: comArticle
 * Example: created
 */
.comArticle {
  font-size: 13px;
  line-height: 1.7;
}
.comArticle > *:not(:first-child) {
  margin-top: 10px;
}
.comArticle > h2:not(:first-child), .comArticle h3:not(:first-child), .comArticle h4:not(:first-child), .comArticle h5:not(:first-child), .comArticle h6:not(:first-child) {
  margin-top: 20px;
}
.comArticle p {
  text-align: justify;
}
.comArticle ul {
  list-style: disc;
  margin-left: 1em;
}
.comArticle ul > li {
  margin-left: 1.5em;
}
.comArticle ul > li ul {
  list-style: none;
  margin-left: 0;
}
.comArticle ul > li ul > li {
  margin-left: 0;
  padding-left: 1em;
  position: relative;
}
.comArticle ul > li ul > li::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}

/**
 * Name: comBottomDrawer
 * Example: not created
 */
.comBottomDrawer {
  width: 100%;
  position: fixed;
  bottom: -360px;
  left: 0;
  z-index: 300;
  background-color: #FFFFFF;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  padding: 10px;
  transition: bottom 0.4s;
}
.comBottomDrawer.opt-alert {
  background-color: #F4DFE1;
}
.comBottomDrawer.opt-time-stock {
  background-color: #FFFBEF;
}
.comBottomDrawer .close {
  text-align: right;
}
.comBottomDrawer + .next-back {
  display: none;
}
.comBottomDrawer.open {
  bottom: 0;
}
.comBottomDrawer.open + .next-back {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 250;
}

/**
 * Name: comBrandList
 * Example: not created
 */
.comBrandList {
  display: flex;
  flex-wrap: wrap;
}
.comBrandList > li {
  width: 50%;
}
.comBrandList > li > * {
  max-width: 300px;
  margin: 0 auto;
  padding: 20px 10px;
  display: block;
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
}
.comBrandList > li > * .image img {
  margin: 0 auto;
}
.comBrandList > li > * p {
  max-width: 300px;
  margin: 12px auto 0 auto;
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .comBrandList > li > * p {
    font-size: 16px;
  }
}

.comVerticalBox {
  height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comErrorBox {
  border: 1px solid #E2AAAF;
  background-color: #F4DFE1;
  padding: 12px;
}
.comErrorBox > * {
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

/**
 * Name: popupModal
 * Example: created
 */
.popupModal {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
}
.popupModal.open {
  display: block;
}
.popupModal .back {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.6);
}
.popupModal .frame {
  width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 4px;
  padding-top: 32px;
  overflow: hidden;
}
.popupModal .frame .close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 15;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .popupModal .frame {
    width: 340px;
  }
  .popupModal .frame .spaceContents {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/**
 * Name: popupModalSelect
 * Example: created
 */
.popupModalSelect {
  border-top: 1px solid #BEBEBE;
  display: flex;
  flex-direction: row-reverse;
}
.popupModalSelect > * {
  display: block;
  margin: 0;
  padding: 10px;
  border: none;
  width: 100%;
  line-height: 30px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #1B72EA;
  cursor: pointer;
  background-color: #ffffff;
}
.popupModalSelect > *:not(:first-child) {
  border-right: 1px solid #BEBEBE;
}
.popupModalSelect.opt-alert {
  border: none;
}
.popupModalSelect.opt-alert > * {
  font-size: 13px;
  background-color: #E0E0E0;
  color: #575757;
  font-weight: normal;
}
.popupModalSelect.opt-alert > *:not(:first-child) {
  border-right: none;
}
.popupModalSelect.opt-alert > *.action {
  background-color: var(--corp-color);
  color: #FFFFFF;
  font-weight: bold;
}

/**
 * Name: spaceMainFrame
 * Example: created
 */
.spaceMainFrame {
  padding-top: 60px;
  padding-bottom: 52px;
  background-color: #FFFFFF;
}
.spaceMainFrame.opt-shopping {
  padding-bottom: 144px;
  padding-top: 100px;
}
.spaceMainFrame.opt-shopping-high {
  padding-bottom: 144px;
  padding-top: 100px;
}
.spaceMainFrame.opt-no-padding-bottom {
  padding-bottom: 0;
}
.spaceMainFrame.opt-no-padding-bottom-shopping {
  padding-bottom: 0;
  padding-top: 100px;
}
.spaceMainFrame.opt-back-mypage {
  background-color: #FFFBEF;
}
.spaceMainFrame.opt-minimum-page {
  min-height: calc(100vh - 180px);
}
@media screen and (min-width: 600px) {
  .spaceMainFrame {
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 72px;
  }
  .spaceMainFrame.opt-shopping {
    padding-bottom: 166px;
    padding-top: 100px;
  }
  .spaceMainFrame.opt-shopping-high {
    padding-bottom: 166px;
    padding-top: 100px;
  }
  .spaceMainFrame.opt-no-padding-bottom-shopping {
    padding-top: 100px;
  }
}

/**
 * Name: spaceContents
 * Example: created
 */
.spaceContents {
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
  word-break: break-all;
}
.spaceContents.opt-slv1 {
  padding: 0 20px;
}
.spaceContents.opt-slv2 {
  padding: 0 15px;
}
.spaceContents.opt-margin-zero {
  margin-top: 0;
}
.spaceContents.opt-bottom-border {
  padding-bottom: 12px;
  border-bottom: 1px solid #F2F2F2;
}
@media screen and (min-width: 600px) {
  .spaceContents {
    margin-top: 32px;
    padding: 0;
  }
  .spaceContents.opt-slv1, .spaceContents.opt-slv2 {
    padding: 0;
  }
}

/**
 * Name: spaceSection
 * Example: created
 */
.spaceSection > *:not(:first-child) {
  margin-top: 60px;
}
.spaceSection.opt-slv2 > *:not(:first-child) {
  margin-top: 52px;
}
.spaceSection.opt-slv4 > *:not(:first-child) {
  margin-top: 20px;
}
.spaceSection.opt-slv5 > *:not(:first-child) {
  margin-top: 12px;
}

/**
 * Name: spaceResponsive
 * Example: created
 */
@media screen and (min-width: 600px) {
  .spaceResponsive.opt-horizontal-slv1 {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 50px;
  }
}
@media screen and (min-width: 600px) {
  .spaceResponsive.opt-horizontal-menu {
    padding: 0 20px;
  }
}
@media screen and (min-width: 600px) {
  .spaceResponsive.opt-vertical-slv1 {
    margin-top: 52px;
  }
}
@media screen and (min-width: 600px) {
  .spaceResponsive.opt-vertical-slv2 {
    margin-top: 32px;
  }
}
@media screen and (min-width: 600px) {
  .spaceResponsive.opt-vertical-slv3 {
    margin-top: 12px;
  }
}

/**
 * Name: spaceGrid
 * Example: created
 */
.spaceFlex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.spaceFlex .mt-grow {
  flex-grow: 1;
}
.spaceFlex .mt-shrink {
  flex-shrink: 0;
}

/**
 * Name: spaceScroll
 * Example: created
 */
.spaceScroll {
  width: 100%;
  overflow-x: scroll;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.spaceScroll::-webkit-scrollbar {
  display: none;
}
.spaceScroll.opt-with-border {
  border-bottom: 2px solid var(--corp-color);
}

.spaceVerticalScroll {
  height: 100%;
  padding-top: 9px;
  padding-bottom: 200px;
  overflow-y: scroll;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.spaceVerticalScroll::-webkit-scrollbar {
  display: none;
}
.spaceVerticalScroll.opt-with-border {
  border-left: 2px solid var(--corp-color);
}

/**
 * Name: spaceBackground
 * Example: created
 */
.spaceBackground {
  padding-top: 10px;
  padding-bottom: 10px;
}
.spaceBackground.opt-vertical-slv2 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.spaceBackground.opt-alert {
  background-color: #F4DFE1;
}
.spaceBackground.opt-information {
  background-color: #FFFBEF;
}

/**
 * Name: utilMarginTop
 * Example: created
 */
.utilMarginTop.opt-ulv1 {
  margin-top: 60px;
}
.utilMarginTop.opt-ulv2 {
  margin-top: 42px;
}
.utilMarginTop.opt-ulv4 {
  margin-top: 24px;
}
.utilMarginTop.opt-ulv5 {
  margin-top: 18px;
}
.utilMarginTop.opt-ulv6 {
  margin-top: 12px;
}
.utilMarginTop.opt-ulv7 {
  margin-top: 6px;
}
@media screen and (min-width: 600px) {
  .utilMarginTop.opt-ulv5 {
    margin-top: 32px;
  }
}

/**
 * Name: utilPaddingBottom
 * Example: not created
 */
.utilPaddingBottom.opt-ulv2 {
  padding-bottom: 52px;
}
.utilPaddingBottom.opt-ulv3 {
  padding-bottom: 32px;
}
.utilPaddingBottom.opt-ulv4 {
  padding-bottom: 24px;
}
.utilPaddingBottom.opt-ulv5 {
  padding-bottom: 12px;
}

.searchShopTabContents {
  padding: 0 20px;
}

/**
 * Name: SiteHeader
 */
.SiteHeader .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 10px;
  border-bottom: 2px solid var(--corp-color);
  background-color: #FFFFFF;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
}
.SiteHeader .inner .title {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.SiteHeader .inner .title-text {
  text-align: center;
  font-size: 15px;
}
.SiteHeader .inner .logo {
  height: 58px;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
}
.SiteHeader .inner .mt-icons {
  display: flex;
}
.SiteHeader .inner .mt-icons > *:not(:first-child) {
  margin-left: 8px;
}
@media screen and (min-width: 600px) {
  .SiteHeader .inner {
    padding: 0 calc(50% - 570px);
  }
  .SiteHeader .inner .title-text {
    font-size: 22px;
  }
  .SiteHeader .inner .logo {
    height: 70px;
  }
}

/**
 * Name: ShoppingSiteHeader
 */
.ShoppingSiteHeader .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 10px;
  border-bottom: 2px solid #FFFFFF;
  background-color: #FFFFFF;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
}
.ShoppingSiteHeader .inner .title {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.ShoppingSiteHeader .inner .title-text {
  text-align: center;
  font-size: 15px;
}
.ShoppingSiteHeader .inner .title-text a {
  position: absolute;
  right: 5%;
}
.ShoppingSiteHeader .inner .title .main-text {
  margin-left: 4px;
}
.ShoppingSiteHeader .inner .back {
  width: 58px;
  height: 58px;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ShoppingSiteHeader .inner .back a {
  color: var(--corp-color);
}
.ShoppingSiteHeader .inner .mt-icons {
  display: flex;
}
.ShoppingSiteHeader .inner .mt-icons > *:not(:first-child) {
  margin-left: 8px;
}
.ShoppingSiteHeader.opt-border .inner {
  border-bottom-color: var(--corp-color);
}
@media screen and (min-width: 600px) {
  .ShoppingSiteHeader .inner {
    padding: 0 calc(50% - 570px);
  }
}

/**
 * Name: MenuIcon
 */
.MenuIcon {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 40px;
  margin-left: 5px;
}
.MenuIcon .mt-image {
  width: 24px;
  font-size: 19px;
  margin: 0 auto;
  color: var(--corp-color);
}
.MenuIcon .mt-text {
  margin-top: 4px;
  font-size: 7px;
  text-align: center;
  white-space: nowrap;
}

.DrawerMenu .cover {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(120, 120, 120, 0.8);
  z-index: 200;
}
.DrawerMenu .nav {
  padding: 24px 0;
  width: 285px;
  height: 100%;
  position: fixed;
  top: 0;
  right: -285px;
  z-index: 250;
  transition: 0.4s;
  background-color: #FFFFFF;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.DrawerMenu .nav::-webkit-scrollbar {
  display: none;
}
.DrawerMenu .nav .name {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.DrawerMenu .nav .nav-list {
  margin-top: 24px;
}
.DrawerMenu .nav .alert-list-title {
  font-size: 13px;
  padding: 0 14px;
}
.DrawerMenu .nav .alert-list-title + * {
  margin-top: 6px;
}
.DrawerMenu.on .cover {
  display: block;
}
.DrawerMenu.on .nav {
  right: 0;
}
@media screen and (min-width: 600px) {
  .DrawerMenu .nav {
    width: 320px;
    right: -320px;
  }
}

/**
 * Name: LanguageIcon
 */
.LanguageIcon {
  margin-right: 6px;
}
.LanguageIcon div {
  position: relative;
  display: table-cell;
  vertical-align: middle;
}

.LanguageMenu {
  display: none;
  position: fixed;
  z-index: 160;
}
.LanguageMenu .nav-list {
  cursor: pointer;
}
.LanguageMenu .nav-list a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  background-color: #FFF;
  border-left: 1px solid #BEBEBE;
  border-bottom: 1px solid #BEBEBE;
  border-right: 1px solid #BEBEBE;
  box-shadow: 0px 3px 5px -1px #BEBEBE;
  white-space: nowrap;
}
.LanguageMenu .nav-list a:active {
  background-color: #AEE0F3;
  border-color: #AEE0F3;
  color: #fff;
}
.LanguageMenu .nav-list:first-child a {
  border-top: 1px solid #BEBEBE;
}

@media screen and (min-width: 600px) {
  .LanguageIcon {
    margin-right: 12px;
  }
}
.LanguageButton {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0;
}
.LanguageButton.partsButton {
  border-radius: 0;
  border: none;
}
.LanguageButton li {
  width: 50%;
}
.LanguageButton li .partsButton {
  width: unset;
  border-radius: 0;
  color: #927A41;
  border-right: 1px solid #927A41;
  border-bottom: 1px solid #927A41;
}
.LanguageButton li .select {
  background-color: #927A41;
  color: #fff;
}
.LanguageButton li:last-child .partsButton, .LanguageButton li:nth-last-child(2):nth-child(even) .partsButton {
  border-bottom-right-radius: 4px;
}
.LanguageButton li:last-child:nth-child(odd) .partsButton, .LanguageButton li:nth-last-child(2):nth-child(odd) .partsButton {
  border-bottom-left-radius: 4px;
}
.LanguageButton li:nth-child(1) .partsButton {
  border-top: 1px solid #927A41;
  border-top-left-radius: 4px;
}
.LanguageButton li:nth-child(2) .partsButton {
  border-top: 1px solid #927A41;
  border-top-right-radius: 4px;
}
.LanguageButton li:nth-child(odd) .partsButton {
  border-left: 1px solid #927A41;
}

/**
 * Name: CartIcon
 */
.CartIcon {
  margin-left: auto;
}
.CartIcon .icon-cart.disabled {
  color: #9f9c9c;
}

.cartMenuBadge {
  display: inline-block;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  border: solid 1px red;
  background-color: var(--corp-color);
  position: absolute;
  right: -1px;
  top: -4px;
}

@media screen and (min-width: 600px) {
  .CartIcon {
    margin-right: 12px;
  }
}
/**
 * Name: SiteFooter
 */
.SiteFooter {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.SiteFooter .menu {
  display: flex;
  flex-wrap: wrap;
  background-color: #F9EDCC;
}
.SiteFooter .menu li {
  width: 50%;
  text-align: center;
}
.SiteFooter .menu li:nth-child(2n) {
  border-left: 1px solid #FFFFFF;
}
.SiteFooter .menu li:nth-child(n+3) {
  border-top: 1px solid #FFFFFF;
}
.SiteFooter .menu li a {
  color: #6F5100;
  font-size: 12px;
  line-height: 18px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.SiteFooter .menu li a i {
  display: inline;
  margin-left: 8px;
}
.SiteFooter .copyright {
  padding: 8px;
  background-color: #6F5100;
  text-align: center;
}
.SiteFooter .copyright small {
  display: block;
  font-size: 10px;
  line-height: 16px;
  color: #FFFFFF;
}
@media screen and (min-width: 600px) {
  .SiteFooter .menu li a {
    font-size: 16px;
    line-height: 24px;
    padding: 12px 32px;
  }
  .SiteFooter .copyright {
    padding: 12px;
  }
  .SiteFooter .copyright small {
    font-size: 13px;
    line-height: 18px;
  }
}

/**
 * Name: CouponListForTop
 */
.CouponListForTop .slick-dots {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
.CouponListForTop .slick-dots li:not(:first-child) {
  margin-left: 8px;
}
.CouponListForTop .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  text-indent: 100%;
  line-height: 0;
  overflow: hidden;
  padding: 0;
  border: none;
  background-color: #BEBEBE;
}
.CouponListForTop .slick-dots li.slick-active button {
  background-color: #927A41;
}
@media screen and (min-width: 600px) {
  .CouponListForTop li {
    border: none;
  }
  .CouponListForTop li > a {
    padding: 10px;
    margin: 0 10px;
    border-top: 1px solid #F2F2F2;
    border-bottom: 1px solid #F2F2F2;
  }
}

/**
 * Name: AppInformation
 */
.AppInformation {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #FFC202;
  border-radius: 10px;
  background-color: #FFF9E2;
  padding: 20px 16px;
}
.AppInformation > * {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.AppInformation .inner {
  display: flex;
  justify-content: space-between;
}
.AppInformation .inner .text {
  flex-shrink: 0;
}
.AppInformation .inner .text .title {
  font-size: 26px;
  font-weight: normal;
  line-height: 32px;
}
.AppInformation .inner .text p {
  margin-top: 8px;
  font-size: 11px;
  font-weight: bold;
}
.AppInformation .links {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
}
.AppInformation .links > *:not(:first-child) {
  margin-left: 12px;
}

.historySumValueArea {
  background-color: var(--corp-color);
  color: #FFFFFF;
  padding: 14px 0;
  font-weight: bold;
  font-size: 16px;
  width: 100%;
  text-align: center;
  border-bottom: #FFFFFF 1px solid;
  position: fixed;
  z-index: 150;
  max-width: 1140px;
}
.historySumValueArea span {
  border-bottom: #FFFFFF 2px solid;
  padding-bottom: 4px;
}

.menu-tabs-wrapper {
  width: 100%;
  position: fixed;
  z-index: 150;
  max-width: 1040px;
  background-color: #FFF;
  margin-top: -8px;
  height: 48px;
}

.menu-tabs-wrapper-vertical {
  height: 100%;
  position: fixed;
  z-index: 150;
  margin-left: -70px;
  margin-top: -9px;
  width: 70px;
}

.menu-tabs-wrapper-cautionpass {
  position: initial;
  margin-top: 0;
  background-color: initial;
}

.orderHistoryBox {
  margin: 10px 6px 0 6px;
  border: 1px solid #BEBEBE;
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.16);
}

.orderHistoryCaption {
  padding: 10px 0 4px 10px;
  font-size: 12px;
  background-color: #F2F2F2;
  border-bottom: 1px solid #BEBEBE;
  border-radius: 10px 10px 0 0;
}

.orderHistoryMenuList {
  padding: 0 10px;
}

.orderHistoryPrice {
  font-size: 12px;
  white-space: nowrap;
}

.orderHistoryByMobile {
  padding: 4px;
  background-color: #ff9933;
  color: #FFF;
  border-radius: 6px;
  font-weight: bold;
  margin-left: 6px;
}

.orderHistoryByPOS {
  padding: 4px;
  background-color: #009900;
  color: #FFF;
  border-radius: 6px;
  font-weight: bold;
  margin-left: 6px;
}

.orderHistoryStatusStart {
  font-size: 12px;
  padding: 4px;
  background-color: #cc3300;
  color: #FFF;
  border-radius: 6px;
  font-weight: bold;
  margin-left: 6px;
  white-space: nowrap;
}

.orderHistoryStatusCock {
  font-size: 12px;
  padding: 4px;
  background-color: #0033ff;
  color: #FFF;
  border-radius: 6px;
  font-weight: bold;
  margin-left: 6px;
}

.orderHistoryStatusEnd {
  font-size: 12px;
  padding: 4px;
  background-color: #999999;
  color: #FFF;
  border-radius: 6px;
  font-weight: bold;
  margin-left: 6px;
}

.orderHistoryStatusCancel {
  font-size: 12px;
  padding: 4px;
  background-color: #AAA;
  color: #FFF;
  border-radius: 6px;
  border: 1px solid #FFF;
  font-weight: bold;
  margin-left: 6px;
}

.orderHistoryNone {
  width: 100%;
  text-align: center;
}

.orderHistoryCancelMenu {
  background-color: #AAA;
  padding: 10px;
  margin: -10px;
}

.cautionPasscodeImg {
  margin: auto;
}

@media screen and (max-height: 670px) {
  .cautionPasscodeImg {
    max-height: 500px;
  }
}
.tabCautionPasscode {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  width: 100%;
  max-width: 512px;
  aspect-ratio: 10/7;
  max-height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  overflow: hidden;
  max-width: 512px;
  margin: 0 auto;
}

.carousel-inner > .item {
  display: none;
  padding: 0;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.carousel-inner > .item.next,
.carousel-inner > .item.active.right {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  left: 0;
}

.carousel-inner > .item.prev,
.carousel-inner > .item.active.left {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  left: 0;
}

.carousel-inner > .item.next.left,
.carousel-inner > .item.prev.right,
.carousel-inner > .item.active {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  left: 0;
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

.carousel-inner > .active {
  left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel-inner > .next {
  left: 100%;
}

.carousel-inner > .prev {
  left: -100%;
}

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

.carousel-inner > .active.left {
  left: -100%;
}

.carousel-inner > .active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.carousel-control.left {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000", endColorstr="#00000000", GradientType=1);
  background-repeat: repeat-x;
}

.carousel-control.right {
  right: 0;
  left: auto;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#80000000", GradientType=1);
  background-repeat: repeat-x;
}

.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  filter: alpha(opacity=90);
  opacity: 0.9;
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .icon-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}

.carousel-control .icon-prev,
.carousel-control .icon-arrow.left {
  left: 50%;
  margin-left: -10px;
}

.carousel-control .icon-next,
.carousel-control .icon-arrow.right {
  right: 50%;
  margin-right: -10px;
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}

.carousel-control .icon-prev:before {
  content: "‹";
}

.carousel-control .icon-next:before {
  content: "›";
}

.carousel-indicators {
  margin-top: 8px;
  text-align: center;
  list-style: none;
}

.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9 ;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #bebebe;
  border-radius: 10px;
}

.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #bebebe;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.soldout-curtain {
  width: 100%;
}

.soldout-curtain::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 20;
}

.soldout-sns {
  position: absolute;
  top: 4px;
  left: 4px;
  background-color: var(--corp-color);
  font-size: 13px;
  line-height: 20px;
  color: #ffffff;
  border-radius: 4px;
  padding: 0 7px;
  z-index: 25;
}

.quantity-sns {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  background-color: var(--corp-color);
  color: #ffffff;
  border-radius: 50%;
  z-index: 25;
}

.quantity-noimage {
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  background-color: var(--corp-color);
  color: #ffffff;
  border-radius: 50%;
}

.menubadge-sns {
  position: absolute;
  left: 4px;
  bottom: 4px;
  font-size: 13px;
  line-height: 20px;
  border-radius: 4px;
  padding: 0 7px;
  z-index: 25;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icon/icomoon.ttf?b0o2lf") format("truetype"), url("../fonts/icon/icomoon.woff?b0o2lf") format("woff"), url("../fonts/icon/icomoon.svg?b0o2lf#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class^=icon-].deg90, [class*=" icon-"].deg90 {
  display: inline-block;
  transform: rotate(90deg);
  transform-origin: center;
}
[class^=icon-].deg180, [class*=" icon-"].deg180 {
  display: inline-block;
  transform: rotate(180deg);
  transform-origin: center;
}
[class^=icon-].deg270, [class*=" icon-"].deg270 {
  display: inline-block;
  transform: rotate(270deg);
  transform-origin: center;
}
[class^=icon-].size10, [class*=" icon-"].size10 {
  font-size: 10px;
}
[class^=icon-].size11, [class*=" icon-"].size11 {
  font-size: 11px;
}
[class^=icon-].size12, [class*=" icon-"].size12 {
  font-size: 12px;
}
[class^=icon-].size13, [class*=" icon-"].size13 {
  font-size: 13px;
}
[class^=icon-].size14, [class*=" icon-"].size14 {
  font-size: 14px;
}
[class^=icon-].size15, [class*=" icon-"].size15 {
  font-size: 15px;
}
[class^=icon-].size16, [class*=" icon-"].size16 {
  font-size: 16px;
}
[class^=icon-].size17, [class*=" icon-"].size17 {
  font-size: 17px;
}
[class^=icon-].size18, [class*=" icon-"].size18 {
  font-size: 18px;
}
[class^=icon-].size19, [class*=" icon-"].size19 {
  font-size: 19px;
}
[class^=icon-].size20, [class*=" icon-"].size20 {
  font-size: 20px;
}
[class^=icon-].mt1, [class*=" icon-"].mt1 {
  margin-top: 1px;
}
[class^=icon-].mt2, [class*=" icon-"].mt2 {
  margin-top: 2px;
}
[class^=icon-].mt3, [class*=" icon-"].mt3 {
  margin-top: 3px;
}
[class^=icon-].mt4, [class*=" icon-"].mt4 {
  margin-top: 4px;
}
[class^=icon-].mt5, [class*=" icon-"].mt5 {
  margin-top: 5px;
}
[class^=icon-].mt-1, [class*=" icon-"].mt-1 {
  margin-top: -1px;
}
[class^=icon-].mt-2, [class*=" icon-"].mt-2 {
  margin-top: -2px;
}
[class^=icon-].mt-3, [class*=" icon-"].mt-3 {
  margin-top: -3px;
}
[class^=icon-].mt-4, [class*=" icon-"].mt-4 {
  margin-top: -4px;
}
[class^=icon-].mt-5, [class*=" icon-"].mt-5 {
  margin-top: -5px;
}

.icon-favorite-o:before {
  content: "\e909";
}

.icon-arrow-bold:before {
  content: "\e908";
}

.icon-search:before {
  content: "\e906";
}

.icon-bookmark:before {
  content: "\e903";
}

.icon-favorite:before {
  content: "\e904";
}

.icon-map:before {
  content: "\e905";
}

.icon-close:before {
  content: "\e907";
}

.icon-user:before {
  content: "\e901";
}

.icon-arrow:before {
  content: "\e902";
}

.icon-in-stock:before {
  content: "\e90a";
}

.icon-low-stock:before {
  content: "\e90b";
}

.icon-out-of-stock:before {
  content: "\e90c";
}

.icon-out-of-time:before {
  content: "\ea0b";
}

.icon-menu:before {
  content: "\e900";
}

.icon-checkmark:before {
  content: "\ea10";
}

.icon-take-out:before {
  content: "\e90d";
  font-size: 130%;
  font-weight: bold;
}

.icon-eat-in:before {
  content: "\e90e";
  font-size: 110%;
  font-weight: bold;
}

.icon-external-link:before {
  content: "\e90f";
}

.icon-cart:before {
  content: "\e93a";
}

.icon-bin:before {
  content: "\e9ac";
}

.icon-sphere:before {
  content: "\e9c9";
}/*# sourceMappingURL=style.css.map */