@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

html, body {
  min-height: 100%;
  height: 100%;
  font-size: 15px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Helvetica, sans-serif;
  font-weight: 500;
  color: #656271;
}

pre {
  background-color: #fff;
}

body {
  display: flex;
}
body div#left_dummy {
  position: relative;
  flex-grow: 1;
  z-index: 100;
  background-color: #FFFFFF;
}
body div#main_wrapper {
  height: 100%;
  min-height: 100%;
  display: none;
  position: relative;
  flex-grow: 0;
  width: 100%;
  max-width: 1280px;
  margin: auto;
}
body div#main_wrapper div#contents_wrapper {
  height: 100%;
  min-height: 100%;
  padding-top: 54px;
}
body div#right_dummy {
  position: relative;
  flex-grow: 1;
  z-index: 100;
  background-color: #FFFFFF;
}

div#newsPageWrapper, div#recommendationsPageWrapper {
  width: 100%;
  height: 100%;
}

/* 店舗アイテムリスト */
li.restaurant_item {
  position: relative;
  height: 80px;
  margin-top: 10px;
  background-color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
}
li.restaurant_item > div.overlay {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
li.restaurant_item > div.wrapper,
li.restaurant_item > a {
  display: flex;
  height: 80px;
  text-decoration: none;
  overflow: hidden;
}
li.restaurant_item > div.wrapper img,
li.restaurant_item > a img {
  display: block;
  flex-grow: 0;
  width: 120px;
  height: auto;
  object-fit: cover;
}
li.restaurant_item > div.wrapper div.restaurant_info,
li.restaurant_item > a div.restaurant_info {
  height: 80px;
  flex-grow: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  color: #656271;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
li.restaurant_item > div.wrapper div.restaurant_info > div, li.restaurant_item > div.wrapper div.restaurant_info > p,
li.restaurant_item > a div.restaurant_info > div,
li.restaurant_item > a div.restaurant_info > p {
  width: 100%;
}
li.restaurant_item > div.wrapper div.restaurant_info > div.restaurant_summary,
li.restaurant_item > div.wrapper div.restaurant_info > p.restaurant_summary,
li.restaurant_item > a div.restaurant_info > div.restaurant_summary,
li.restaurant_item > a div.restaurant_info > p.restaurant_summary {
  flex-grow: 1;
  white-space: normal;
  word-break: break-all;
}
li.restaurant_item > div.wrapper div.restaurant_info > div.restaurant_name,
li.restaurant_item > div.wrapper div.restaurant_info > p.restaurant_name,
li.restaurant_item > a div.restaurant_info > div.restaurant_name,
li.restaurant_item > a div.restaurant_info > p.restaurant_name {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex-grow: 0;
}
li.restaurant_item > div.wrapper div.restaurant_info > div.category_info,
li.restaurant_item > div.wrapper div.restaurant_info > p.category_info,
li.restaurant_item > a div.restaurant_info > div.category_info,
li.restaurant_item > a div.restaurant_info > p.category_info {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex-grow: 0;
  font-size: 0.8rem;
}
li.restaurant_item > div.overlay.tapped {
  display: block;
  background-color: rgba(255, 0, 0, 0.2);
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.loader {
  display: none;
  margin: 60px auto;
  font-size: 10px;
  position: fixed;
  top: calc(40% - 50px);
  left: calc(50% - 50px);
  text-indent: -9999em;
  border-top: 1.1em solid rgba(0, 0, 0, 0.2);
  border-right: 1.1em solid rgba(0, 0, 0, 0.2);
  border-bottom: 1.1em solid rgba(0, 0, 0, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(100);
  -ms-transform: translateZ(100);
  transform: translateZ(100);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
  z-index: 100;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 1280px) {
  html, body {
    background-color: #FFF !important;
    font-size: 20px;
    height: 100%;
  }
  html div#main_wrapper, body div#main_wrapper {
    min-height: 100%;
    height: 100%;
    border-left: 1px solid #EC99A8;
    border-right: 1px solid #EC99A8;
    box-sizing: content-box;
    background-color: #ECEBF2;
    overflow: scroll;
  }
  html div#main_wrapper li.restaurant_item, body div#main_wrapper li.restaurant_item {
    height: 150px;
  }
  html div#main_wrapper li.restaurant_item a, body div#main_wrapper li.restaurant_item a {
    height: 150px;
  }
  html div#main_wrapper li.restaurant_item a > img, body div#main_wrapper li.restaurant_item a > img {
    width: 250px;
  }
  html div#main_wrapper li.restaurant_item a > div.restaurant_info, body div#main_wrapper li.restaurant_item a > div.restaurant_info {
    height: 150px;
  }
  html div#main_wrapper li.restaurant_item a > div.restaurant_info div.restaurant_name, body div#main_wrapper li.restaurant_item a > div.restaurant_info div.restaurant_name {
    font-weight: bold;
    font-size: 20px;
  }
  html div#main_wrapper li.restaurant_item a > div.restaurant_info div.restaurant_summary, body div#main_wrapper li.restaurant_item a > div.restaurant_info div.restaurant_summary {
    font-size: 17px;
  }
}
