@charset "UTF-8";
/* メインカラーを定義
 * ここの変数は直接使用しないこと
 */
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          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 {
  -ms-touch-action: manipulation;
      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;
  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) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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 {
  -ms-flex-negative: 0;
      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%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #927A41;
  z-index: 10;
}

label.partsCheckbox .main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 6px;
}

label.partsCheckbox .sub {
  margin-left: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

label.partsCheckbox.opt-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

label.partsCheckbox.opt-center .main {
  -webkit-box-flex: unset;
      -ms-flex-positive: unset;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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 {
  -ms-flex-negative: 0;
      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%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
}

label.partsRadio .main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 6px;
}

label.partsRadio .sub {
  margin-left: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

label.partsRadio.coupon {
  border-top: 1px dashed #CCCCCC;
  padding-top: 10px;
}

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;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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: #181c5c;
  color: #FFFFFF;
}

.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;
}

.partsHeading02.opt-center {
  text-align: center;
}

.partsHeading02.opt-underline {
  border-bottom: 1px solid #BEBEBE;
  padding-bottom: 8px;
}

.partsHeading02.opt-discount {
  border-bottom: 2px solid #181c5c;
  border-left: 8px solid #181c5c;
  padding: 6px;
  margin-top: 20px;
  margin-bottom: 20px;
}

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

/**
 * Name: partsNewsTitle
 * Example: created
 */
.partsNewsTitle {
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  border-top: 1px solid #181c5c;
  border-bottom: 1px solid #181c5c;
}

/**
 * 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;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.partsAccordionLink .mt-open {
  display: none;
}

.partsAccordionLink .mt-close {
  display: block;
}

.partsAccordionLink.open::after {
  -webkit-transform: translateY(-50%) rotate(270deg);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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: #181c5c;
  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;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.16);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.partsButton.opt-icon-right [class^="icon-"], .partsButton.opt-icon-right [class*=" icon-"] {
  margin-left: 8px;
}

.partsButton.opt-icon-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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;
  -webkit-transform: translateY(-50%);
          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: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  font-weight: normal;
}

.partsButton.opt-with-quantity, .partsButton.opt-with-quantity-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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;
  -webkit-transform: none;
          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 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          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;
    -webkit-transition: .4s;
    transition: .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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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;
}

.partsLabelTitle.opt-inconfirm {
  font-weight: bold;
  background-color: #A52A2A;
  color: #FFFFFF;
}

/**
 * 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 #181c5c;
}

.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: partSeparator
 */
.partSeparator {
  width: 100%;
  height: 50px;
  background-color: #927A41;
  text-align: left;
  color: #FFF;
  padding: 10px;
  display: block;
}

/**
 * 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  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%;
  -webkit-transform: translateY(-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;
  margin-bottom: 3px;
  color: #E1A500;
}

.comLinks > * a i, .comLinks > * .link i {
  display: inline;
  margin-left: 8px;
}

.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 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;
}

.comList .img-coupon {
  height: 100px;
  border: 1px solid #AAA;
  margin-top: 10px;
}

.comList .img-coupon.radio {
  margin-left: 30px;
}

@media screen and (min-width: 600px) {
  .comList .img-coupon {
    height: 160px;
    border: 1px solid #AAA;
  }
}

/**
 * Name: comInformation
 * Example: created
 */
.comInformation > *:not(:first-child) {
  margin-top: 10px;
}

.comInformation > * a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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%;
  -webkit-transform: translateY(-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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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 {
  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;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.comSliderCard .slick-arrow::after {
  content: '';
  width: 12px;
  height: 14px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.comSliderCard .slick-prev {
  left: 12px;
}

.comSliderCard .slick-prev::after {
  border-top: 7px solid transparent;
  border-right: 12px solid #E1A500;
  border-bottom: 7px solid transparent;
}

.comSliderCard .slick-next {
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.comSliderCard .slick-track > .slick-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.comSliderCard .slick-track > .slick-slide > * {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.comSliderCard .slick-track > .slick-slide > * .mt-action {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.comLastShop .base-data {
  font-weight: 500;
  padding-left: 8px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      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 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 24px;
  background-color: #F9EDCC;
  border-radius: 4px;
  padding: 4px 10px 4px 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.comLastShopDisabled .base-data {
  font-weight: 500;
  padding-left: 8px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      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 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 24px;
  background-color: #F9EDCC;
  border-radius: 4px;
  padding: 4px 10px 4px 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.comSearchIcons > * {
  width: 33%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.comSearchIcons > *:not(:first-child) {
  margin-left: 12px;
}

/**
 * Name: comImageText
 * Example: created
 */
.comImageText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.comImageText .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.comImageText .image.opt-coupon {
  width: 100px;
}

.comImageText .text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.comImageText .text .title {
  font-size: 14px;
  font-weight: 500;
}

.comImageText .text .description {
  margin-top: 6px;
  font-size: 11px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          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: -webkit-box;
  display: -ms-flexbox;
  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, .comArticleSummary .meta .inconfirm {
  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: #181c5c;
  color: #FFFFFF;
}

.comArticleSummary .meta .received {
  background-color: #BEBEBE;
  color: #000000;
}

.comArticleSummary .meta .inconfirm {
  background-color: #A52A2A;
  color: #FFFFFF;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.comShopSummary .base-data {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      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 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 24px;
  background-color: #F9EDCC;
  border-radius: 4px;
  padding: 6px 10px 4px 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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 #A2A2A2;
}

.comArticleList > li > a, .comArticleList > li label, .comArticleList > li .mt-inner {
  padding: 10px;
}

.comArticleList.opt-with-border {
  border-top: 1px solid #A2A2A2;
}

@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 > 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      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;
}

/**
 * Name: comSectionList
 * Example: created
 */
.comSectionList > * {
  border-bottom: 1px solid #F2F2F2;
  padding: 20px;
}

.comSectionList > *.mt-no-border {
  border-bottom: none;
}

.comSectionList.opt-small-padding > * {
  padding: 10px;
}

.comSectionList.opt-horizontal-no-padding > * {
  padding-left: 0;
  padding-right: 0;
}

.comSectionList.opt-information > * {
  border-color: #F9EDCC;
}

/**
 * Name: comButtonGroup
 * Example: created
 */
.comButtonGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.comButtonGroup > *:not(:first-child) {
  margin-top: 20px;
}

/**
 * Name: comTabs
 * Example: created
 */
.comTabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-bottom: 2px solid #181c5c;
  position: relative;
}

.comTabs .tab {
  padding: 8px 0;
  font-size: 9px;
  font-weight: bold;
  line-height: 18px;
  color: #575757;
  background-color: #E6E6E6;
  border-radius: 8px 8px 0 0;
  -webkit-box-shadow: 1px 0 6px rgba(0, 0, 0, 0.16);
          box-shadow: 1px 0 6px rgba(0, 0, 0, 0.16);
  text-align: center;
  cursor: pointer;
}

.comTabs .tab.active {
  font-size: 10px;
  padding: 14px 0;
  background-color: #181c5c;
  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;
}

/**
 * Name: comSearchInput
 * Example: created
 */
.comSearchInput {
  position: relative;
}

.comSearchInput input {
  width: 100%;
  border-color: #9C7200;
}

.comSearchInput input:-ms-input-placeholder {
  color: #9C7200;
  font-weight: 500;
}

.comSearchInput input::-webkit-input-placeholder, .comSearchInput input::-webkit-input-placeholder {
  color: #9C7200;
  font-weight: 500;
}

.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;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        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;
  -webkit-transform: translate(-50%, -50%);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.comModal .frame.scrollable {
  height: 85%;
}

.comModal .frame.scrollable .spaceContents {
  overflow-y: auto;
  max-height: calc(100% - 50px);
}

.comModal .frame.scrollable .comModalSelect {
  position: absolute;
  bottom: 0;
  width: 100%;
}

@media screen and (min-width: 600px) {
  .comModal .frame {
    width: 340px;
  }
  .comModal .frame .spaceContents {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/**
 * Name: comModalSelect
 * Example: created
 */
.comModalSelect {
  border-top: 1px solid #BEBEBE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          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;
  -webkit-transform: translate(-50%, -50%);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #181c5c;
}

.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: comModalSelect
 * Example: created
 */
.comModalSelect2 {
  border-top: 1px solid #BEBEBE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.comModalSelect2 > * {
  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;
}

.comModalSelect2 > *:not(:first-child) {
  border-right: 1px solid #BEBEBE;
}

.comModalSelect2.opt-alert {
  border: none;
}

.comModalSelect2.opt-alert > * {
  font-size: 13px;
  background-color: #ffffff;
  color: #575757;
  font-weight: normal;
}

.comModalSelect2.opt-alert > *:not(:first-child) {
  border-right: none;
}

.comModalSelect2.opt-alert > *.action {
  background-color: #927A41;
  color: #FFFFFF;
  font-weight: bold;
}

/**
 * Name: comModalShopSearch
 * Example: created
 */
.comModalShopSearch {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
}

.comModalShopSearch .back {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.6);
}

.comModalShopSearch .frame {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 4px;
  padding-top: 10px;
  width: 90%;
  height: 80%;
  border-top: 1px solid;
}

.comModalShopSearch .frame .spaceContents {
  overflow-y: scroll;
  padding-left: 12px;
  padding-right: 12px;
  height: calc(100% - 50px);
}

.comModalShopSearch .frame .close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 15;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.comModalShopSearch .frame .mapFrame {
  width: 100%;
  height: 60%;
  border: 0;
  padding: 10px 0;
}

.comModalShopSearch .frame .shopName {
  font-size: 14px;
  font-weight: bold;
  margin: 10px 0 10px 20px;
}

.comModalShopSearch .frame .row {
  margin-top: 10px;
  overflow: hidden;
  font-size: 12px;
  border-bottom: 1px solid #CCC;
  padding-bottom: 10px;
}

.comModalShopSearch .frame .row:first-child {
  border-top: 1px solid #CCC;
}

.comModalShopSearch .frame .row:last-child {
  border-bottom: none;
}

.comModalShopSearch .frame #shop-detail-content {
  height: 100%;
}

.comModalShopSearch .frame .columnCaption {
  width: 20%;
  float: left;
  color: #666666;
}

.comModalShopSearch .frame .columnValue {
  width: 80%;
  float: left;
}

@media screen and (min-width: 600px) {
  .comModalShopSearch .frame {
    width: 70%;
    height: 90%;
    max-height: none;
    border-top: 1px solid;
  }
  .comModalShopSearch .frame .spaceContents {
    padding-left: 12px;
    padding-right: 12px;
    height: calc(100% - 50px);
  }
  .comModalShopSearch .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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.comFormElements .mt-flex > * {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.comFormElements .mt-flex > *:not(:first-child) {
  margin-left: 8px;
}

.comFormElements .mt-flex.opt-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.comFormElements .mt-flex .mt-fix {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.comTimeStock > * {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          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;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 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%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/**
 * Name: comTimeStockDescription
 * Example: created
 */
.comTimeStockDescription {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.comTimeStockDescription > * {
  display: -webkit-box;
  display: -ms-flexbox;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: none;
  background-color: transparent;
  text-align: left;
  -webkit-appearance: none;
}

.comMenuSummary .image {
  width: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}

.comMenuSummary .image .quantity {
  position: absolute;
  top: -4px;
  left: -4px;
  background-color: #181c5c;
  font-size: 13px;
  font-weight: bold;
  line-height: 20px;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 0 7px;
}

.comMenuSummary .text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 10px;
  overflow: hidden;
}

.comMenuSummary .text .name {
  font-size: 14px;
  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: #181c5c;
  font-size: 13px;
  line-height: 20px;
  color: #FFFFFF;
  border-radius: 4px;
  padding: 0 7px;
  z-index: 25;
}

/**
 * Name: comCartSummary
 * Example: created
 */
.comCartSummary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.comCartSummary .image {
  width: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}

.comCartSummary .image .quantity {
  position: absolute;
  top: -4px;
  left: -4px;
  background-color: #181c5c;
  font-size: 13px;
  font-weight: bold;
  line-height: 20px;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 0 7px;
}

.comCartSummary .text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.comCartSummary .text .detail {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.comCartSummary .text .detail li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.comCartSummary .text .detail li:not(:first-child) {
  margin-top: 4px;
}

.comCartSummary .text .detail li .main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 14px;
}

.comCartSummary .text .detail li .main-price {
  font-size: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: right;
}

.comCartSummary .text .detail li .option {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 12px;
}

.comCartSummary .text .detail li .price {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  text-align: right;
}

.comCartSummary .text .action {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.comCartSummary .text .action li {
  max-width: 120px;
  width: 50%;
}

.comCartSummary .text .action li:not(:first-child) {
  margin-left: 12px;
}

.comCartSummary .text .action li > * {
  width: 100%;
  display: block;
  border: 1px solid #BEBEBE;
  background-color: #FFFFFF;
  font-size: 12px;
  line-height: 18px;
  border-radius: 10px;
  padding: 0;
  text-align: center;
  margin: 0;
}

.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: #181c5c;
  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;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  padding: 15px 20px 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: bottom .4s;
  transition: bottom .4s;
}

.comFloatingCart.hide {
  bottom: -130px;
}

/**
 * Name: comFloatingIcon
 * Example: created
 */
.comFloatingIcon {
  position: fixed;
  bottom: 12px;
  right: 12px;
  z-index: 25;
}

.comFloatingIcon > * {
  width: 64px;
  height: 64px;
  background-color: #927A41;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.32);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.32);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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 .name {
  font-size: 16px;
  font-weight: bold;
}

.comMenuDetail .image {
  margin-top: 6px;
}

.comMenuDetail .image img {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.comMenuDetail .price {
  font-size: 16px;
  margin-top: 8px;
  text-align: right;
}

.comMenuDetail .description {
  font-size: 13px;
  line-height: 24px;
  margin-top: 20px;
}

/**
 * Name: comCounter
 * Example: created
 */
.comCounter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #FFFBEF;
  padding: 12px 10px;
}

.comSubTotal.subPercent {
  margin-bottom: 40px;
  padding-right: 0;
}

.comSubTotal dt {
  font-size: 16px;
}

.comSubTotal dt.discount {
  font-size: 14px;
  font-weight: bold;
  margin-left: 10px;
}

.comSubTotal dd {
  font-size: 16px;
  text-align: right;
  color: #000000;
}

/**
 * Name: comInputLine
 * Example: created
 */
.comInputLine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.comInputLine > * {
  width: 100%;
}

.comInputLine > *:not(:first-child) {
  margin-left: 12px;
}

.comInputLine > * span {
  width: 100%;
}

/**
 * Name: comTimeBox
 * Example: created
 */
.comTimeBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.comTimeBox .hour {
  width: 45px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
}

.comTimeBox .minutes {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          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 #181c5c;
  border-radius: 7px;
  color: #181c5c;
  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%;
  -webkit-transform: translateX(-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%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.comAccordion > * > .head.open::after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
          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;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          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: #181c5c;
}

.comCard .mt-tag .received {
  background-color: #BEBEBE;
  color: #000000;
}

/**
 * Name: comPagination
 * Example: created
 */
.comPagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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: -webkit-box;
  display: -ms-flexbox;
  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;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  padding: 10px;
  -webkit-transition: bottom .4s;
  transition: bottom .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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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: 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;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.spaceFlex .mt-grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.spaceFlex .mt-shrink {
  -ms-flex-negative: 0;
      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 #181c5c;
}

/**
 * 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 10px;
  border-bottom: 2px solid #181c5c;
  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;
  -webkit-transform: translateY(-50%);
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.SiteHeader .inner .mt-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.SiteHeader .inner .mt-icons > *:not(:first-child) {
  margin-left: 8px;
}

@media screen and (max-width: 428px) {
  .SiteHeader .inner .mt-icons > *:not(:first-child) {
    margin-left: 3px;
  }
}

.SiteHeader .inner img.image_logo {
  margin: 0 auto;
  max-width: 130px;
  height: 46px;
}

@media screen and (max-width: 428px) {
  .SiteHeader .inner img.image_logo {
    max-width: 100px;
  }
}

@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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.ShoppingSiteHeader .inner .title-text {
  text-align: center;
  font-size: 15px;
}

.ShoppingSiteHeader .inner .title .main-text {
  margin-left: 4px;
}

.ShoppingSiteHeader .inner .inner-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ShoppingSiteHeader .inner .back {
  width: 58px;
  height: 58px;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ShoppingSiteHeader .inner .back a {
  color: #181c5c;
}

.ShoppingSiteHeader .inner .mt-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ShoppingSiteHeader .inner .mt-icons > *:not(:first-child) {
  margin-left: 8px;
}

@media screen and (max-width: 428px) {
  .ShoppingSiteHeader .inner .mt-icons > *:not(:first-child) {
    margin-left: 3px;
  }
}

.ShoppingSiteHeader .inner img.image_logo {
  margin: 0 auto;
  max-width: 130px;
  height: 46px;
}

@media screen and (max-width: 428px) {
  .ShoppingSiteHeader .inner img.image_logo {
    max-width: 100px;
  }
}

.ShoppingSiteHeader.opt-border .inner {
  border-bottom-color: #181c5c;
}

@media screen and (min-width: 600px) {
  .ShoppingSiteHeader .inner {
    padding: 0 calc(50% - 570px);
  }
}

/**
 * Name: MenuIcon
 */
.MenuIcon {
  position: relative;
  z-index: 10;
  text-align: center;
}

.MenuIcon .mt-image {
  width: 24px;
  font-size: 19px;
  margin: 0 auto;
  color: #181c5c;
}

.MenuIcon .mt-text {
  margin-top: 4px;
  font-size: 10px;
  text-align: center;
}

@media screen and (max-width: 428px) {
  .MenuIcon .mt-image {
    font-size: 16px;
  }
  .MenuIcon .mt-text {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

#MenuIconCart {
  margin-right: 5px;
}

.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;
  -webkit-transition: .4s;
  transition: .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 .nav-list .comLinks li a {
  min-height: 67px;
}

.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;
  }
}

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

/**
 * Name: SiteFooter
 */
.SiteFooter {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.SiteFooter .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #F9EDCC;
}

.SiteFooter .menu li {
  width: 50%;
  min-height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #6F5100;
  font-size: 12px;
  line-height: 18px;
  padding: 10px;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.AppInformation .inner .text {
  -ms-flex-negative: 0;
      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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.AppInformation .links > *:not(:first-child) {
  margin-left: 12px;
}

.discountCaption {
  border-bottom: 2px solid #482C12;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 6px;
  margin-top: 16px;
}

.discountCautionLink {
  font-size: 13px;
  padding: 2px 0 0 30px;
  color: blue;
  text-decoration: underline;
}

.cart-quantity {
  position: absolute;
  top: -12px;
  left: 14px;
  font-size: 1px;
  font-weight: bold;
  line-height: 20px;
  color: #181c5c;
  border-radius: 30px;
  padding: 0 7px;
  border: 1px solid #181c5c;
  background-color: white;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icon/icomoon.ttf?b0o2lf&ver=20230213001") format("truetype"), url("../fonts/icon/icomoon.woff?b0o2lf&ver=20230213001") format("woff"), url("../fonts/icon/icomoon.svg?b0o2lf&ver=20230213001#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;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

[class^="icon-"].deg180, [class*=" icon-"].deg180 {
  display: inline-block;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

[class^="icon-"].deg270, [class*=" icon-"].deg270 {
  display: inline-block;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transform-origin: center;
          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";
}
