@charset "UTF-8";
/* media query */
nav.navStd ul li.restaurant a {
  background-color: #fff;
  color: #964B6E;
}

.allergy {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f5f5f5;
  padding: 20px;
  margin: 60px auto 30px;
}
@media all and (max-width: 1200px) {
  .allergy {
    max-width: 100%;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .allergy {
    max-width: 100%;
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 668px) {
  .allergy {
    margin: 40px 25px 20px;
  }
}
.allergy p a {
  text-decoration: underline;
  font-weight: bold;
  color: #964B6E;
}

.anchorArea {
  max-width: 1200px;
  margin: 0 auto;
}
@media all and (max-width: 1200px) {
  .anchorArea {
    max-width: 100%;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .anchorArea {
    max-width: 100%;
    margin-left: 25px;
    margin-right: 25px;
  }
}
.anchorArea ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 668px) {
  .anchorArea ul {
    display: block;
  }
}
.anchorArea ul li {
  padding-right: 30px;
  margin-right: 30px;
}
@media screen and (max-width: 668px) {
  .anchorArea ul li {
    margin-bottom: 10px;
    width: 100%;
    border-bottom: 1px solid #eee;
    padding-bottom: 2px;
  }
}
.anchorArea ul li a {
  position: relative;
  display: block;
  font-size: 1.1em;
}
@media screen and (max-width: 800px) {
  .anchorArea ul li a {
    font-size: 100%;
  }
}
.anchorArea ul li a::after {
  position: absolute;
  content: "";
  background-image: url(../images/arrow_down_black.svg);
  top: calc(50% - 3px);
  right: -20px;
  width: 8px;
  height: 5px;
  transition: 0.5s;
}
.anchorArea ul li a:hover::after {
  top: 50%;
}
.anchorArea ul li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 668px) {
  .anchorArea ul li:last-child {
    margin-bottom: 0;
  }
}

.titleArea.nofilter::before {
  background: rgba(0, 0, 0, 0.2);
}

.introArea {
  max-width: 1200px;
  margin: 50px auto 140px;
  letter-spacing: 0.05em;
  container-type: inline-size;
}
@media (width < 1200px) {
  .introArea {
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 800px) {
  .introArea {
    margin: 25px auto 70px;
  }
}
@media (width < 480px) {
  .introArea {
    width: calc(100% - 30px);
  }
}
.introArea-ttl {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 5px 30px;
}
@media (width <= 896px) {
  .introArea-ttl {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 25px;
  }
}
.introArea-ttl .entxt {
  color: #a5966c;
  margin: 0;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}
@media (width <= 896px) {
  .introArea-ttl .entxt {
    font-size: 1.4em;
  }
}
.introArea-ttl .name {
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1.7em;
  max-width: 60%;
}
@media (width <= 896px) {
  .introArea-ttl .name {
    font-size: 1.3em;
    max-width: 100%;
  }
}
.introArea-ttl .name .small {
  position: relative;
  padding: 0 1em;
  font-size: 70%;
  letter-spacing: 0.3em;
  margin-right: 1em;
  font-weight: 700;
}
.introArea-ttl .name .small::before, .introArea-ttl .name .small::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.introArea-ttl .name .small::before {
  content: "<";
  left: 0;
}
.introArea-ttl .name .small::after {
  right: 0.3em;
  content: "<";
  transform: translateY(-50%) scale(-1, 1);
}
.introArea-ttl .name p {
  font-weight: 700;
  line-height: 1.5;
}
.introArea-list {
  display: flex;
  margin-bottom: 20px;
  gap: 0 7cqw;
}
@media (width <= 896px) {
  .introArea-list {
    flex-direction: column;
    gap: 0 3cqw;
  }
}
.introArea-list > div h2 {
  position: relative;
  padding-left: 1em;
  margin-top: 60px;
  font-size: 1.4em;
}
@media (width <= 896px) {
  .introArea-list > div h2 {
    margin-top: 30px;
  }
}
.introArea-list > div h2::before {
  position: absolute;
  content: "";
  border-left: 5px solid #000;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
  height: 1em;
}
.introArea-list > div h3 {
  background: #a5966c;
  color: #fff;
  padding: 8px 30px;
  font-size: 1.9em;
  margin-top: 10px;
  line-height: 1.5;
  font-weight: 700;
}
@media (width <= 896px) {
  .introArea-list > div h3 {
    padding: 8px 15px;
    font-size: 1.5em;
  }
}
.introArea-list > div h3 .small {
  position: relative;
  padding: 0 1em;
  font-size: 65%;
  margin-right: 0.5em;
}
@media (width <= 896px) {
  .introArea-list > div h3 .small {
    display: inline-block;
  }
}
.introArea-list > div h3 .small::before, .introArea-list > div h3 .small::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.introArea-list > div h3 .small::before {
  content: "<";
  left: 0;
}
.introArea-list > div h3 .small::after {
  right: 0.3em;
  content: "<";
  transform: translateY(-50%) scale(-1, 1);
}
.introArea-list__sub {
  writing-mode: vertical-rl;
  border-left: 1px solid #000;
  transform: rotate(180deg);
  text-align: right;
}
@media (width <= 896px) {
  .introArea-list__sub {
    writing-mode: lr-tb;
    border-left: none;
    transform: rotate(0);
    text-align: left;
    border-bottom: 1px solid #000;
    font-size: 0.9em;
  }
}
.introArea-list.first .introArea-box {
  flex-direction: row-reverse;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 80px;
}
@media (width <= 896px) {
  .introArea-list.first .introArea-box {
    padding-bottom: 40px;
    margin-bottom: 20px;
  }
}
.introArea-list.first .introArea-box h2 {
  margin-top: 0;
}
.introArea-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 0;
  margin-top: 30px;
}
@media (width <= 896px) {
  .introArea-box {
    gap: 20px 0;
    margin-top: 10px;
  }
}
.introArea-box__img {
  width: 50%;
}
@media (width <= 896px) {
  .introArea-box__img {
    width: 100%;
  }
}
.introArea-box__img img {
  width: 100%;
}
.introArea-box__txt {
  width: 44%;
}
@media (width <= 896px) {
  .introArea-box__txt {
    width: 100%;
  }
}
.introArea-box__txt h4 {
  position: relative;
  color: #a5966c;
  margin: 0;
  margin-top: 30px;
  padding-bottom: 15px;
  font-size: 1.4em;
  line-height: 1.5;
}
@media (width <= 896px) {
  .introArea-box__txt h4 {
    margin-top: 0;
    font-weight: 700;
  }
}
.introArea-box__txt h4::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #a5966c;
  background: linear-gradient(90deg, rgb(196, 186, 159) 0%, rgb(204, 204, 204) 50%, rgb(255, 255, 255) 100%);
}
.introArea-box__txt p {
  margin-top: 15px;
}
.introArea-link {
  position: fixed;
  right: 0;
  bottom: 190px;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .introArea-link {
    bottom: 94px;
  }
}
.introArea-link a {
  position: relative;
  display: block;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  text-align: center;
  padding: 20px 10px;
  background: #fff;
  font-weight: 700;
  line-height: 1.5;
}
@media (width <= 896px) {
  .introArea-link a {
    padding: 15px 5px;
    font-size: 0.8em;
  }
}
.introArea-link a::before {
  position: absolute;
  content: "";
  transform: scale(-1, 1) rotate(180deg);
  top: 0;
  left: -2px;
  width: 20px;
  height: 10px;
  background-color: #000;
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 0 100%);
}
@media (width <= 896px) {
  .introArea-link a::before {
    width: 15px;
    height: 8px;
  }
}
.introArea-link a:hover {
  opacity: 0.8;
  color: #000;
}
.introArea-link__arrow {
  position: relative;
  border-bottom: 2px solid #000;
  width: 50px;
  margin: 15px auto 0;
}
@media (width <= 896px) {
  .introArea-link__arrow {
    width: 20px;
    margin: 10px auto 0;
  }
}
.introArea-link__arrow::after {
  position: absolute;
  content: "";
  transform: scale(-1, -1) rotate(180deg);
  top: -6px;
  right: -1px;
  width: 20px;
  height: 7px;
  background-color: #000;
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 0 100%);
}
@media (width <= 896px) {
  .introArea-link__arrow::after {
    top: -3px;
    height: 4px;
    width: 10px;
  }
}

.introSection {
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  background: #fff;
}
.introSection + .introSection {
  padding-top: 80px;
}
@media screen and (max-width: 668px) {
  .introSection + .introSection {
    padding-top: 50px;
  }
}
.introSection:nth-of-type(even) .introMain-contents {
  bottom: auto;
  top: min(6.25vw, 120px);
}
@media all and (max-width: 1200px) {
  .introSection:nth-of-type(even) .introMain-contents {
    top: 30px;
  }
}
@media screen and (max-width: 668px) {
  .introSection:nth-of-type(even) .introMain-contents {
    top: 15px;
  }
}
.introSection .span_br {
  display: inline-block;
}

.introMain {
  height: min(41.67vw, 800px);
  position: relative;
}
@media screen and (max-width: 800px) {
  .introMain {
    height: 75vw;
  }
}
@media screen and (max-width: 668px) {
  .introMain {
    height: 100vw;
  }
}
.introMain-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.introMain-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.introMain-wrap {
  width: 80%;
  height: 100%;
  margin-inline: auto;
  position: relative;
}
@media all and (max-width: 1200px) {
  .introMain-wrap {
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 668px) {
  .introMain-wrap {
    width: calc(100% - 30px);
  }
}
.introMain-contents {
  width: 100%;
  position: absolute;
  bottom: min(6.25vw, 120px);
  left: 0;
}
@media all and (max-width: 1200px) {
  .introMain-contents {
    bottom: 30px;
  }
}
@media screen and (max-width: 668px) {
  .introMain-contents {
    bottom: 15px;
  }
}
.introMain-block {
  padding: 12px 24px;
  text-align: center;
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #fff;
  min-width: 320px;
  color: #7B9C97;
}
@media screen and (max-width: 668px) {
  .introMain-block {
    padding: 10px 16px;
    width: 100%;
    min-width: inherit;
    max-width: 320px;
  }
}
.introMain-txt {
  word-break: keep-all;
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.5;
  padding-bottom: 6px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 668px) {
  .introMain-txt {
    font-size: 1em;
    padding-bottom: 4px;
  }
}
.introMain-txt::before {
  content: "〈";
  margin-right: 0.4em;
}
.introMain-txt::after {
  content: "〉";
  margin-left: 0.4em;
}
.introMain-ttl {
  word-break: keep-all;
  font-size: 1.7em;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 8px;
}
@media screen and (max-width: 668px) {
  .introMain-ttl {
    font-size: 1.4em;
    margin-top: 5px;
  }
}

.introConcept {
  padding: 30px 0;
  text-align: center;
  background: #7B9C97;
  color: #fff;
}
@media screen and (max-width: 668px) {
  .introConcept {
    padding: 20px 0;
  }
}
.introConcept-wrap {
  width: calc(100% - 60px);
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (max-width: 668px) {
  .introConcept-wrap {
    width: calc(100% - 30px);
  }
}
.introConcept-ttl {
  word-break: keep-all;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6em 1em;
}
@media screen and (max-width: 800px) {
  .introConcept-ttl {
    flex-direction: column;
  }
}
.introConcept-ttl__sub {
  font-size: 1.4em;
  line-height: 1.5;
}
@media screen and (max-width: 668px) {
  .introConcept-ttl__sub {
    font-size: 1.05em;
  }
}
.introConcept-ttl__sub::before {
  content: "〈";
  margin-right: 0.4em;
}
.introConcept-ttl__sub::after {
  content: "〉";
  margin-left: 0.4em;
}
.introConcept-ttl__jp {
  font-size: 1.9em;
  padding-bottom: 0.3em;
  line-height: 1.5;
}
@media screen and (max-width: 668px) {
  .introConcept-ttl__jp {
    font-size: 1.5em;
  }
}
.introConcept-txt {
  word-break: keep-all;
  font-size: 1.4em;
  margin-top: 12px;
}
@media screen and (max-width: 668px) {
  .introConcept-txt {
    font-size: 1.05em;
    margin-top: 10px;
  }
}

.introOverview {
  padding: 50px 0;
  background: #3E3A39;
}
@media screen and (max-width: 668px) {
  .introOverview {
    padding: 40px 0;
  }
}
.introOverview-wrap {
  width: calc(100% - 60px);
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (max-width: 668px) {
  .introOverview-wrap {
    width: calc(100% - 30px);
  }
}
.introOverview-inner {
  margin-inline: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 30px 6%;
}
@media screen and (max-width: 668px) {
  .introOverview-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.introOverview-img {
  flex-shrink: 0;
  width: 40%;
  container-type: inline-size;
}
@media screen and (max-width: 668px) {
  .introOverview-img {
    width: 80%;
  }
}
@media screen and (max-width: 350px) and (orientation: portrait) {
  .introOverview-img {
    width: 90%;
  }
}
.introOverview-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1200/874;
  border-radius: 0 20cqw 20cqw 0;
}
.introOverview-contents {
  flex-grow: 1;
}
@media screen and (max-width: 668px) {
  .introOverview-contents {
    padding-left: 15px;
  }
}
.introOverview-txt {
  font-size: 1.1em;
  line-height: 2.4;
}
@media screen and (max-width: 668px) {
  .introOverview-txt {
    font-size: 1em;
  }
}

.introDetail {
  width: 100%;
  height: min(26.04vw, 500px);
  background: #7B9C97;
  position: relative;
}
@media screen and (max-width: 668px) {
  .introDetail {
    height: 37.5vw;
  }
}
.introDetail-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.introDetail-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.menuArea {
  max-width: 1200px;
  margin: 0 auto;
}
@media all and (max-width: 1200px) {
  .menuArea {
    max-width: 100%;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .menuArea {
    max-width: 100%;
    margin-left: 25px;
    margin-right: 25px;
  }
}
.menuArea > section > h4 {
  font-size: 1.5em;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.menuArea > section > div.eventSlide div {
  margin-bottom: 0;
}
.menuArea > section > div.eventSlide div article > h6 {
  font-size: 1.3em;
}
@media screen and (max-width: 668px) {
  .menuArea > section > div.eventSlide div article > h6 {
    font-size: 1.15em;
  }
}
.menuArea > section > div.eventSlide div article > p.icon {
  display: inline-block;
  font-size: 0.85em;
  letter-spacing: 3px;
  color: #fff;
  background-color: #222;
  line-height: 100%;
  padding: 6px 10px;
  position: absolute;
  left: 0;
  top: 10px;
}
.menuArea > section > div.eventSlide div article > p.photo {
  width: 100%;
  height: 0;
  padding-top: 67%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-bottom: 10px;
  background-color: #f5f5f5;
}
.menuArea > section > div.eventSlide div article > p.price {
  font-size: 1.2em;
}
@media screen and (max-width: 668px) {
  .menuArea > section > div.eventSlide div article > p.price {
    font-size: 0.9em;
  }
}
.menuArea > section > div.eventSlide div article > p.linkDetail {
  margin: 10px auto;
  max-width: 390px;
}
@media screen and (max-width: 668px) {
  .menuArea > section > div.eventSlide div article > p.linkDetail {
    max-width: 100%;
  }
}
.menuArea > section > div.eventSlide div article > p.linkDetail a {
  position: relative;
  display: inline-block;
  border: 1px solid #ddd;
  line-height: 150%;
  font-size: 14px;
  background-color: #222;
  color: #fff;
  padding: 15px 40px 15px 25px;
  display: block;
}
.menuArea > section > div.eventSlide div article > p.linkDetail a::after {
  position: absolute;
  right: 20px;
  top: calc(50% - 5px);
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 5px auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225%22%20height%3D%228.239%22%20viewBox%3D%220%200%205%208.239%22%3E%20%3Cpath%20id%3D%22chevron-right-solid%22%20d%3D%22M32.362%2C42.1%2C28.7%2C45.764a.453.453%2C0%2C0%2C1-.64%2C0l-.428-.428a.453.453%2C0%2C0%2C1%2C0-.64l2.906-2.92-2.906-2.92a.453.453%2C0%2C0%2C1%2C0-.64l.428-.428a.453.453%2C0%2C0%2C1%2C.64%2C0l3.667%2C3.667A.453.453%2C0%2C0%2C1%2C32.362%2C42.1Z%22%20transform%3D%22translate(-27.495%20-37.657)%22%20fill%3D%22%23ddd%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  transition: 0.5s;
}
.menuArea > section > div.eventSlide div article > p.linkDetail a:hover {
  background-color: #3E577E;
  color: #fff;
  border: 1px solid #3E577E;
}
@media screen and (max-width: 960px) {
  .menuArea > section > div.eventSlide div article > p.linkDetail a {
    padding: 10px 35px 10px 15px;
  }
}
.menuArea > section > div.eventSlide div article > p.linkDetail a:hover::after {
  right: 15px;
}
.menuArea > section.menuMonth {
  margin-top: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .menuArea > section.menuMonth {
    margin-bottom: 20px;
  }
}
.menuArea > section.menuMonth > ul {
  display: flex;
  flex-wrap: wrap;
}
.menuArea > section.menuMonth > ul li {
  width: calc(33.3333333333% - 10px);
  margin-bottom: 10px;
}
.menuArea > section.menuMonth > ul li:not(:nth-child(3n+1)) {
  margin-left: 15px;
}
@media screen and (max-width: 668px) {
  .menuArea > section.menuMonth > ul li {
    width: calc(33.3333333333% - 4px);
    margin-bottom: 6px;
  }
  .menuArea > section.menuMonth > ul li:not(:nth-child(3n+1)) {
    margin-left: 6px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .menuArea > section.menuMonth > ul li {
    width: 100%;
  }
  .menuArea > section.menuMonth > ul li:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
}
.menuArea > section.menuMonth > ul li a {
  position: relative;
  display: inline-block;
  border: 1px solid #ddd;
  line-height: 150%;
  font-size: 14px;
  color: #222;
  padding: 20px 40px 20px 25px;
  display: block;
}
.menuArea > section.menuMonth > ul li a::after {
  position: absolute;
  right: 20px;
  top: calc(50% - 5px);
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 5px auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225%22%20height%3D%228.239%22%20viewBox%3D%220%200%205%208.239%22%3E%20%3Cpath%20id%3D%22chevron-right-solid%22%20d%3D%22M32.362%2C42.1%2C28.7%2C45.764a.453.453%2C0%2C0%2C1-.64%2C0l-.428-.428a.453.453%2C0%2C0%2C1%2C0-.64l2.906-2.92-2.906-2.92a.453.453%2C0%2C0%2C1%2C0-.64l.428-.428a.453.453%2C0%2C0%2C1%2C.64%2C0l3.667%2C3.667A.453.453%2C0%2C0%2C1%2C32.362%2C42.1Z%22%20transform%3D%22translate(-27.495%20-37.657)%22%20fill%3D%22%23ddd%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  transition: 0.5s;
}
.menuArea > section.menuMonth > ul li a:hover {
  background-color: #3E577E;
  color: #fff;
  border: 1px solid #3E577E;
}
@media screen and (max-width: 960px) {
  .menuArea > section.menuMonth > ul li a {
    padding: 15px 35px 15px 15px;
  }
}
.menuArea > section.menuMonth > ul li a:hover::after {
  right: 15px;
}
.menuArea > section.menuList h4 {
  font-size: 1.5em;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.menuArea > section.menuList .calendar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 40px;
  font-size: 1.1em;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .menuArea > section.menuList .calendar {
    margin-top: 20px;
  }
}
@media screen and (max-width: 668px) {
  .menuArea > section.menuList .calendar {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 668px) {
  .menuArea > section.menuList .calendar p {
    padding-bottom: 10px;
  }
}
.menuArea > section.menuList .calendar .inputArea {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .menuArea > section.menuList .calendar .inputArea {
    width: 80%;
    margin-left: 20px;
  }
}
@media screen and (max-width: 668px) {
  .menuArea > section.menuList .calendar .inputArea {
    width: 100%;
    margin-left: 0;
  }
}
.menuArea > section.menuList .calendar .inputArea > div {
  border: 1px solid #222;
  padding: 20px;
  margin: 0 21px;
  width: 310px;
  letter-spacing: 1px;
  background: #fff url("../../../common/images/icon_calendar_gray.svg");
  background-position: center right 15px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  outline: none;
}
@media screen and (max-width: 960px) {
  .menuArea > section.menuList .calendar .inputArea > div {
    width: calc(50% - 30px);
    margin: 0;
  }
}
@media screen and (max-width: 668px) {
  .menuArea > section.menuList .calendar .inputArea > div {
    background-position: center right 10px;
    padding: 20px 10px;
    width: calc(50% - 17px);
  }
}
.menuArea > section.menuList .calendar .inputArea > div:last-child {
  margin-right: 0;
}
@media screen and (max-width: 668px) {
  .menuArea > section.menuList .calendar .inputArea > div:first-child {
    margin-left: 0;
  }
}
.menuArea > section.menuList .calendar .inputArea > div .date {
  width: 270px;
}
@media screen and (max-width: 960px) {
  .menuArea > section.menuList .calendar .inputArea > div .date {
    width: 100%;
  }
}
.menuArea > section.menuList .allergens {
  position: relative;
}
.menuArea > section.menuList .allergens .toggle {
  display: none;
}
.menuArea > section.menuList .allergens .title,
.menuArea > section.menuList .allergens .foodlist {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.menuArea > section.menuList .allergens .title {
  position: relative;
  display: block;
  margin: 20px auto 0;
  max-width: 360px;
  cursor: pointer;
  background: #f5f5f5;
  padding: 3px 15px;
  font-size: 1.2em;
}
@media screen and (max-width: 668px) {
  .menuArea > section.menuList .allergens .title {
    font-size: 1em;
    text-align: center;
  }
}
@media all and (max-width: 360px) {
  .menuArea > section.menuList .allergens .title {
    font-size: 4vw;
  }
}
.menuArea > section.menuList .allergens .title::after {
  content: "＋";
  position: absolute;
  font-size: 1em;
  margin-left: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.menuArea > section.menuList .allergens .toggle:checked + .title + .foodlist {
  max-height: 720px;
  transition: all 1.5s;
}
.menuArea > section.menuList .allergens .toggle:checked + .title::after {
  content: "－";
}
.menuArea > section.menuList .allergens .foodlist {
  max-height: 0;
  overflow: hidden;
  font-size: 1.1em;
}
@media screen and (max-width: 668px) {
  .menuArea > section.menuList .allergens .foodlist {
    font-size: 1em;
  }
}
.menuArea > section.menuList .allergens .foodlist .comment {
  margin-top: 10px;
}
.menuArea > section.menuList .allergens .foodlist .comment p {
  font-size: 0.9em;
  text-align: center;
}
@media screen and (max-width: 668px) {
  .menuArea > section.menuList .allergens .foodlist .comment p {
    text-align: left;
  }
}
.menuArea > section.menuList .allergens .foodlist .comment p a {
  text-decoration: underline;
  font-weight: bold;
  color: #964B6E;
}
.menuArea > section.menuList .allergens .foodlist .comment p:nth-child(2) {
  padding-left: 1.5em;
  text-indent: -1.5em;
}
.menuArea > section.menuList .allergens .foodlist .comment + p {
  font-size: 1.1em;
  text-align: center;
  margin-top: 15px;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 5px;
}
@media screen and (max-width: 668px) {
  .menuArea > section.menuList .allergens .foodlist .comment + p {
    text-align: left;
  }
}
.menuArea > section.menuList .allergens .foodlist .comment + p span {
  font-size: 0.8em;
}
@media screen and (max-width: 668px) {
  .menuArea > section.menuList .allergens .foodlist .comment + p span {
    display: block;
  }
}
.menuArea > section.menuList .allergens .foodlist dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
}
@media screen and (max-width: 668px) {
  .menuArea > section.menuList .allergens .foodlist dl {
    display: block;
  }
}
.menuArea > section.menuList .allergens .foodlist dl dt {
  width: 18%;
}
@media screen and (max-width: 668px) {
  .menuArea > section.menuList .allergens .foodlist dl dt {
    width: 100%;
    margin-top: 20px;
  }
}
.menuArea > section.menuList .allergens .foodlist dl dd {
  width: 82%;
}
@media screen and (max-width: 668px) {
  .menuArea > section.menuList .allergens .foodlist dl dd {
    width: 100%;
  }
}
.menuArea > section.menuList .allergens .foodlist dl dd input:first-child {
  margin: 0 5px 0 0;
}
.menuArea > section.menuList .allergens .foodlist dl dd input:not(:first-child) {
  margin: 0 5px 0 20px;
}
@media screen and (max-width: 668px) {
  .menuArea > section.menuList .allergens .foodlist dl:last-child {
    margin-bottom: 30px;
  }
}
.menuArea > section.menuList .submitBtn {
  margin: 30px 0 60px;
  text-align: center;
}
@media screen and (max-width: 668px) {
  .menuArea > section.menuList .submitBtn {
    margin: 20px 0 60px;
  }
}
.menuArea > section.menuList .submitBtn input[type=submit] {
  width: 300px;
  font-size: 1.1em;
  letter-spacing: 1px;
  padding: 10px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 5px auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225%22%20height%3D%228.239%22%20viewBox%3D%220%200%205%208.239%22%3E%20%3Cpath%20id%3D%22chevron-right-solid%22%20d%3D%22M32.362%2C42.1%2C28.7%2C45.764a.453.453%2C0%2C0%2C1-.64%2C0l-.428-.428a.453.453%2C0%2C0%2C1%2C0-.64l2.906-2.92-2.906-2.92a.453.453%2C0%2C0%2C1%2C0-.64l.428-.428a.453.453%2C0%2C0%2C1%2C.64%2C0l3.667%2C3.667A.453.453%2C0%2C0%2C1%2C32.362%2C42.1Z%22%20transform%3D%22translate(-27.495%20-37.657)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  background-position: right 15px center;
}
@media screen and (max-width: 668px) {
  .menuArea > section.menuList .submitBtn input[type=submit] {
    width: 100%;
  }
}
.menuArea > section.menuList .searchComment {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.1em;
}
.menuArea > section.menuList > section {
  margin-bottom: 40px;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .menuArea > section.menuList > section {
    margin-bottom: 20px;
  }
}
.menuArea > section.menuList > section > h5 {
  font-size: 1.1em;
  font-weight: bold;
  width: 100%;
  margin-bottom: 20px;
  letter-spacing: 1px;
  padding: 0.2rem 1rem;
  border-left: 8px solid #000;
  background-color: #f0f0f0;
}
.menuArea > section.menuList > section > div {
  display: flex;
  flex-wrap: wrap;
}
.menuArea > section.menuList > section > div > article {
  width: calc(25% - 18px);
  margin-bottom: 24px;
  position: relative;
}
.menuArea > section.menuList > section > div > article:not(:nth-of-type(4n+1)) {
  margin-left: 24px;
}
@media screen and (max-width: 960px) {
  .menuArea > section.menuList > section > div > article {
    width: calc(50% - 15px);
  }
  .menuArea > section.menuList > section > div > article:not(:nth-of-type(4n+1)) {
    margin-left: 0;
  }
  .menuArea > section.menuList > section > div > article:not(:nth-of-type(2n+1)) {
    margin-left: 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .menuArea > section.menuList > section > div > article {
    width: 100%;
  }
  .menuArea > section.menuList > section > div > article:not(:nth-of-type(2n+1)) {
    margin-left: 0;
  }
}
.menuArea > section.menuList > section > div > article > h6 {
  font-size: 1.15em;
}
.menuArea > section.menuList > section > div > article > p.icon {
  display: inline-block;
  font-size: 0.85em;
  letter-spacing: 3px;
  color: #fff;
  background-color: #222;
  line-height: 100%;
  padding: 6px 10px;
  position: absolute;
  left: 0;
  top: 10px;
}
.menuArea > section.menuList > section > div > article > p.photo {
  width: 100%;
  height: 0;
  padding-top: 67%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-bottom: 10px;
  background-color: #f5f5f5;
}
.menuArea > section.menuList > section > div > article > p.price strong {
  font-weight: normal;
  font-size: 1.2em;
  letter-spacing: 1px;
}
.menuArea > section.menuList > section > div > article > p.linkDetail {
  margin: 10px 0;
}
.menuArea > section.menuList > section > div > article > p.linkDetail a {
  position: relative;
  display: inline-block;
  border: 1px solid #ddd;
  line-height: 150%;
  font-size: 14px;
  background-color: #222;
  color: #fff;
  padding: 15px 40px 15px 25px;
  display: block;
}
.menuArea > section.menuList > section > div > article > p.linkDetail a::after {
  position: absolute;
  right: 20px;
  top: calc(50% - 5px);
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 5px auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225%22%20height%3D%228.239%22%20viewBox%3D%220%200%205%208.239%22%3E%20%3Cpath%20id%3D%22chevron-right-solid%22%20d%3D%22M32.362%2C42.1%2C28.7%2C45.764a.453.453%2C0%2C0%2C1-.64%2C0l-.428-.428a.453.453%2C0%2C0%2C1%2C0-.64l2.906-2.92-2.906-2.92a.453.453%2C0%2C0%2C1%2C0-.64l.428-.428a.453.453%2C0%2C0%2C1%2C.64%2C0l3.667%2C3.667A.453.453%2C0%2C0%2C1%2C32.362%2C42.1Z%22%20transform%3D%22translate(-27.495%20-37.657)%22%20fill%3D%22%23ddd%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  transition: 0.5s;
}
.menuArea > section.menuList > section > div > article > p.linkDetail a:hover {
  background-color: #3E577E;
  color: #fff;
  border: 1px solid #3E577E;
}
@media screen and (max-width: 960px) {
  .menuArea > section.menuList > section > div > article > p.linkDetail a {
    padding: 10px 35px 10px 15px;
  }
}
.menuArea > section.menuList > section > div > article > p.linkDetail a:hover::after {
  right: 15px;
}
.menuArea > section.menuList > section > div > article > ul li a {
  position: relative;
  display: inline-block;
  border: 1px solid #ddd;
  line-height: 150%;
  font-size: 14px;
  color: #222;
  padding: 15px 40px 15px 25px;
  display: block;
}
.menuArea > section.menuList > section > div > article > ul li a::after {
  position: absolute;
  right: 20px;
  top: calc(50% - 5px);
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 5px auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225%22%20height%3D%228.239%22%20viewBox%3D%220%200%205%208.239%22%3E%20%3Cpath%20id%3D%22chevron-right-solid%22%20d%3D%22M32.362%2C42.1%2C28.7%2C45.764a.453.453%2C0%2C0%2C1-.64%2C0l-.428-.428a.453.453%2C0%2C0%2C1%2C0-.64l2.906-2.92-2.906-2.92a.453.453%2C0%2C0%2C1%2C0-.64l.428-.428a.453.453%2C0%2C0%2C1%2C.64%2C0l3.667%2C3.667A.453.453%2C0%2C0%2C1%2C32.362%2C42.1Z%22%20transform%3D%22translate(-27.495%20-37.657)%22%20fill%3D%22%23ddd%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  transition: 0.5s;
}
.menuArea > section.menuList > section > div > article > ul li a:hover {
  background-color: #3E577E;
  color: #fff;
  border: 1px solid #3E577E;
}
@media screen and (max-width: 960px) {
  .menuArea > section.menuList > section > div > article > ul li a {
    padding: 10px 35px 10px 15px;
  }
}
.menuArea > section.menuList > section > div > article > ul li a:hover::after {
  right: 15px;
}
.menuArea > section.menuList > section > div > article > ul li:not(:first-child) a {
  border-top: 0;
}

div.banner {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media all and (max-width: 1200px) {
  div.banner {
    max-width: 100%;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  div.banner {
    max-width: 100%;
    margin-left: 25px;
    margin-right: 25px;
  }
}
div.banner p:not(:last-child) {
  margin-bottom: 15px;
}

.restaurantArea {
  background: url(../../../common/images/bg_gray.png);
  padding: 1px 0 0;
}
.restaurantArea > div {
  max-width: 1200px;
  margin: 0 auto;
}
@media all and (max-width: 1200px) {
  .restaurantArea > div {
    max-width: 100%;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .restaurantArea > div {
    max-width: 100%;
    margin-left: 25px;
    margin-right: 25px;
  }
}
.restaurantArea > div div.group {
  display: flex;
  flex-wrap: wrap;
}
.restaurantArea > div div.group > section {
  width: calc(50% - 30px);
  margin-bottom: 60px;
}
.restaurantArea > div div.group > section:nth-of-type(2n) {
  margin-left: 60px;
}
@media screen and (max-width: 960px) {
  .restaurantArea > div div.group > section {
    width: calc(50% - 15px);
    margin-bottom: 30px;
  }
  .restaurantArea > div div.group > section:nth-of-type(2n) {
    margin-left: 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .restaurantArea > div div.group > section {
    width: 100%;
  }
  .restaurantArea > div div.group > section:nth-of-type(2n) {
    margin-left: 0;
  }
}
.restaurantArea > div div.group > section > h3 {
  font-size: 1.4em;
  line-height: 160%;
  margin-bottom: 5px;
}
@media screen and (max-width: 668px) {
  .restaurantArea > div div.group > section > h3 {
    font-size: 1.3em;
  }
}
.restaurantArea > div div.group > section > h3 span {
  display: inline-block;
  background-color: #222;
  color: #fff;
  line-height: 130%;
  padding: 5px 10px;
  margin: 0 8px 10px 0;
  font-size: 0.6em;
}
.restaurantArea > div div.group > section > div.photo p span {
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: #eee;
  width: 100%;
  height: 0;
  padding-top: 67%;
}
.restaurantArea > div div.group > section > div.photo ul.slick-dots li:first-child:last-child {
  display: none;
}
.restaurantArea > div div.group > section > p.read {
  margin: 10px 0;
}
.restaurantArea > div div.group > section > p.link {
  text-align: center;
}
.restaurantArea > div div.group > section > p.link a {
  position: relative;
  display: inline-block;
  border: 1px solid #ddd;
  line-height: 150%;
  font-size: 14px;
  color: #222;
  padding: 15px 40px 15px 25px;
}
.restaurantArea > div div.group > section > p.link a::after {
  position: absolute;
  right: 20px;
  top: calc(50% - 5px);
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 5px auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225%22%20height%3D%228.239%22%20viewBox%3D%220%200%205%208.239%22%3E%20%3Cpath%20id%3D%22chevron-right-solid%22%20d%3D%22M32.362%2C42.1%2C28.7%2C45.764a.453.453%2C0%2C0%2C1-.64%2C0l-.428-.428a.453.453%2C0%2C0%2C1%2C0-.64l2.906-2.92-2.906-2.92a.453.453%2C0%2C0%2C1%2C0-.64l.428-.428a.453.453%2C0%2C0%2C1%2C.64%2C0l3.667%2C3.667A.453.453%2C0%2C0%2C1%2C32.362%2C42.1Z%22%20transform%3D%22translate(-27.495%20-37.657)%22%20fill%3D%22%23ddd%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  transition: 0.5s;
}
.restaurantArea > div div.group > section > p.link a:hover {
  background-color: #3E577E;
  color: #fff;
  border: 1px solid #3E577E;
}
@media screen and (max-width: 960px) {
  .restaurantArea > div div.group > section > p.link a {
    padding: 10px 35px 10px 15px;
  }
}
.restaurantArea > div div.group > section > p.link a:hover::after {
  right: 15px;
}
.restaurantArea > div div.group > section span.link_normal {
  display: block;
  text-align: center;
}
.restaurantArea > div div.group > section span.link_normal a {
  position: relative;
  display: inline-block;
  border: 1px solid #ddd;
  line-height: 150%;
  font-size: 14px;
  color: #222;
  padding: 15px 40px 15px 25px;
}
.restaurantArea > div div.group > section span.link_normal a::after {
  position: absolute;
  right: 20px;
  top: calc(50% - 5px);
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 5px auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225%22%20height%3D%228.239%22%20viewBox%3D%220%200%205%208.239%22%3E%20%3Cpath%20id%3D%22chevron-right-solid%22%20d%3D%22M32.362%2C42.1%2C28.7%2C45.764a.453.453%2C0%2C0%2C1-.64%2C0l-.428-.428a.453.453%2C0%2C0%2C1%2C0-.64l2.906-2.92-2.906-2.92a.453.453%2C0%2C0%2C1%2C0-.64l.428-.428a.453.453%2C0%2C0%2C1%2C.64%2C0l3.667%2C3.667A.453.453%2C0%2C0%2C1%2C32.362%2C42.1Z%22%20transform%3D%22translate(-27.495%20-37.657)%22%20fill%3D%22%23ddd%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  transition: 0.5s;
}
.restaurantArea > div div.group > section span.link_normal a:hover {
  background-color: #3E577E;
  color: #fff;
  border: 1px solid #3E577E;
}
@media screen and (max-width: 960px) {
  .restaurantArea > div div.group > section span.link_normal a {
    padding: 10px 35px 10px 15px;
  }
}
.restaurantArea > div div.group > section span.link_normal a:hover::after {
  right: 15px;
}
.restaurantArea > div div.group > section span.link_normal.black a {
  position: relative;
  display: inline-block;
  border: 1px solid #ddd;
  line-height: 150%;
  font-size: 14px;
  background-color: #222;
  color: #fff;
  padding: 15px 40px 15px 25px;
  padding: 15px 40px 15px 33px;
  color: #fff;
}
.restaurantArea > div div.group > section span.link_normal.black a::after {
  position: absolute;
  right: 20px;
  top: calc(50% - 5px);
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 5px auto;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225%22%20height%3D%228.239%22%20viewBox%3D%220%200%205%208.239%22%3E%20%3Cpath%20id%3D%22chevron-right-solid%22%20d%3D%22M32.362%2C42.1%2C28.7%2C45.764a.453.453%2C0%2C0%2C1-.64%2C0l-.428-.428a.453.453%2C0%2C0%2C1%2C0-.64l2.906-2.92-2.906-2.92a.453.453%2C0%2C0%2C1%2C0-.64l.428-.428a.453.453%2C0%2C0%2C1%2C.64%2C0l3.667%2C3.667A.453.453%2C0%2C0%2C1%2C32.362%2C42.1Z%22%20transform%3D%22translate(-27.495%20-37.657)%22%20fill%3D%22%23ddd%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  transition: 0.5s;
}
.restaurantArea > div div.group > section span.link_normal.black a:hover {
  background-color: #3E577E;
  color: #fff;
  border: 1px solid #3E577E;
}
@media screen and (max-width: 960px) {
  .restaurantArea > div div.group > section span.link_normal.black a {
    padding: 10px 35px 10px 15px;
  }
}
.restaurantArea > div div.group > section span.link_normal.black a:hover::after {
  right: 15px;
}
@media screen and (max-width: 960px) {
  .restaurantArea > div div.group > section span.link_normal.black a {
    padding: 10px 40px 10px 20px;
  }
}

.menuRestCommon > section {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .menuRestCommon > section {
    width: 100%;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .menuRestCommon > section {
    display: block;
    margin-bottom: 30px;
  }
}
.menuRestCommon > section > p {
  width: calc(40% - 40px);
}
@media screen and (max-width: 960px) {
  .menuRestCommon > section > p {
    width: calc(40% - 30px);
  }
}
@media screen and (max-width: 668px) {
  .menuRestCommon > section > p {
    width: calc(40% - 20px);
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .menuRestCommon > section > p {
    width: 200px;
    margin: 0 auto 20px;
  }
}
.menuRestCommon > section > p > span {
  display: block;
  height: 0;
  padding-top: 48%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #fff;
}
.menuRestCommon > section > div {
  width: 60%;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .menuRestCommon > section > div {
    width: 100%;
  }
}
.menuRestCommon > section > div > h4 {
  font-size: 1.7em;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
@media screen and (max-width: 668px) {
  .menuRestCommon > section > div > h4 {
    font-size: 1.4em;
  }
}
.menuRestCommon > section > div > p.tel {
  margin: 10px 0 20px;
}
.menuRestCommon > section > div > p.tel a {
  font-size: 1.5em;
  line-height: 100%;
  letter-spacing: 1px;
}
.menuRestCommon > section > div > section > h5 {
  font-size: 1em;
  border-bottom: 1px solid #fff;
  padding: 0 0 10px;
  margin-bottom: 10px;
}
.menuRestCommon > section > div > section > div.time {
  display: table;
  margin-bottom: 10px;
}
.menuRestCommon > section > div > section > div.time > dl {
  display: table-row-group;
}
.menuRestCommon > section > div > section > div.time > dl dt,
.menuRestCommon > section > div > section > div.time > dl dd {
  display: table-cell;
}
.menuRestCommon > section > div > section > div.time > dl dt {
  padding-right: 20px;
}
.menuRestCommon > section > div > section > p.notes {
  font-size: 0.9em;
}

.fancybox__content {
  padding: 0 !important;
}

@media screen and (max-width: 960px) {
  body.is-using-mouse {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
  }
}