@charset "UTF-8";
* {
  font-family: "游ゴシック体", sans-serif;
}

h2 {
  font-size: 20px;

  font-weight: bold;
  margin-bottom: 15px;
  padding-left: 15px;
}

img {
  width: 100%;
  max-width: 100%;
}

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #000;
}
a:hover {
  text-decoration: none;
}

em {
  font-weight: bold;
  font-style: italic;
}

iframe {
  width: 100%;
  margin-bottom: 30px;
}

table {
  border-collapse: collapse;
  width: 100%;
}
table th,
table td {
  padding: 0.5em;
}

.is-style-stripes table tbody tr:nth-child(odd) {
  background-color: #f0f0f0;
}

.foodCard {
  height: 100%;
}
.foodCard-border {
  display: inline-block;
}
.foodCard-border a {
  border-radius: 5px;
  border: 1px solid #666;
  padding-bottom: 20px;
}
.foodCard a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #000;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.foodCard a:hover {
  opacity: 0.8;
}
.foodCard .foodCard_label {
  position: absolute;
  content: "";
  top: 0;
  left: 0px;
  z-index: 10;
  background-color: #000;
  border-radius: 50%;
  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;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  width: 80px;
  height: 80px;
}
.foodCard .foodCard_pic {
  max-width: 280px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
}
.foodCard .foodCard_pic img {
  height: auto;
  max-width: 100%;
  margin: auto;
}
.foodCard .foodCard_body {
  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;
}
.foodCard .foodCard_body .foodCard_title {
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 16px;
  line-height: 1;
  position: relative;
  margin: auto;
}
.foodCard .foodCard_body .foodCard_title::after {
  content: " ";
  display: block;
  border-bottom: 1px solid #000;
  position: absolute;
  bottom: 8px;
  left: -10px;
  width: calc(100% + 20px);
}
.foodCard .foodCard_body .foodCard_price {
  font-size: 16px;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .foodCard .foodCard_label {
    top: -20px;
    left: 0;
    font-size: 10px;
    width: 60px;
    height: 60px;
  }
}