@keyframes statusIconAnimation {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 0;
  }
}
/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
}
html {
  color: #000;
  line-height: 1.4;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}
/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #f2f2f8;
  margin: 1em 0;
  padding: 0;
}
/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
html {
  min-width: 100%;
  min-height: 100%;
  height: auto;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-style: normal;
}
html body {
  line-height: 1;
  min-width: 100%;
  min-height: 100%;
  height: auto;
  background: #ffffff;
}
html body #wrapper {
  min-width: 100%;
  min-height: 100%;
  height: auto;
}
html body #wrapper .titleArea {
  width: 100%;
  color: #000000;
  background: #f2f2f8;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
html body #wrapper .titleArea h1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
html body #wrapper header {
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 3;
}
html body #wrapper header .headerContainer {
  margin: auto;
  display: flex;
  justify-content: space-between;
}
html body #wrapper header .headerContainer .leftPart {
  display: flex;
}
html body #wrapper header .headerContainer .leftPart .logoArea {
  display: flex;
  align-items: center;
}
html body #wrapper header .headerContainer .leftPart .logoArea > a {
  color: #000000;
  text-decoration: none;
}
html body #wrapper header .headerContainer .leftPart .informationArea > p > span:first-child {
  display: block;
  color: #ef0a6a;
  background: linear-gradient(45deg, #b6359c 0%, #ef0a6a 70%, #ef0a6a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
html body #wrapper header .headerContainer .leftPart .informationArea > p > *:last-child {
  color: #000000;
  text-decoration: none;
  font-family: "europa", sans-serif;
  font-weight: 700;
  text-align: right;
}
html body #wrapper header .headerContainer .rightPart {
  display: flex;
}
html body #wrapper header .headerContainer .rightPart #hamburgerButton {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}
html body #wrapper header .headerContainer .rightPart #hamburgerButton > span {
  width: 24px;
  height: 2px;
  left: 8px;
  display: block;
  position: absolute;
  transition-duration: 300ms;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}
html body #wrapper header .headerContainer .rightPart #hamburgerButton.open {
  transition-duration: 300ms;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}
html body #wrapper header .headerContainer .rightPart #hamburgerButton.open > span:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
}
html body #wrapper header .headerContainer .rightPart #hamburgerButton.open > span:nth-child(2) {
  left: 50%;
  opacity: 0;
}
html body #wrapper header .headerContainer .rightPart #hamburgerButton.open > span:nth-child(3) {
  transform: translateY(-8px) rotate(45deg);
}
html body #wrapper header #hamburgerBody {
  transition: 300ms;
  background: #f2f2f8;
}
html body #wrapper header #hamburgerBody.hide {
  overflow: hidden;
}
html body #wrapper #contentsWrapper {
  width: 100%;
  height: auto;
  z-index: 3;
}
html body #wrapper #contentsWrapper main .contentsTitle {
  position: relative;
  width: 100%;
  height: 3.5rem;
}
html body #wrapper #contentsWrapper main .contentsTitle > span {
  position: absolute;
  background: #ffffff;
}
html body #wrapper #contentsWrapper main .contentsTitle > hr {
  position: absolute;
  border-top: 1px solid #000000;
  width: 100%;
}
html body #wrapper #contentsWrapper main .contentsTitle > span:first-child {
  left: 0;
  font-size: 1.8rem;
}
html body #wrapper #contentsWrapper main .contentsTitle > span:last-child {
  right: 0;
  bottom: 0;
  font-family: "europa", sans-serif;
  font-weight: 700;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  font-size: 1.4rem;
}
html body #wrapper #contentsWrapper main .contentsTitleQuiet {
  width: 100%;
  position: relative;
}
html body #wrapper #contentsWrapper main .contentsTitleQuiet > hr {
  border-top: 1px solid #f2f2f8;
}
html body #wrapper #contentsWrapper main .contentsTitleQuiet > div {
  background: #ffffff;
}
html body #wrapper #contentsWrapper main .contentsTitleQuiet > div .eng {
  font-family: "europa", sans-serif;
}
html body #wrapper #contentsWrapper main .blackBlock {
  width: 100%;
}
html body #wrapper #contentsWrapper main .blackBlock > .headShape,
html body #wrapper #contentsWrapper main .blackBlock > .bottomShape {
  width: 100%;
  display: block;
}
html body #wrapper #contentsWrapper main .blackBlock > .headShape {
  top: 0;
  left: 0;
}
html body #wrapper #contentsWrapper main .blackBlock > .bottomShape {
  bottom: 0;
  left: 0;
}
html body #wrapper #contentsWrapper main .blackBlock > .body {
  background: #000000;
  position: relative;
}
html body #wrapper #contentsWrapper main .blackBlock > .body .titleEng {
  font-family: "europa", sans-serif;
  color: #000000;
}
html body #wrapper #contentsWrapper main .blackBlock > .body .titleJp {
  font-weight: 700;
  color: #ffffff;
}
html body #wrapper #contentsWrapper main .empty {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem auto;
  font-size: 1.2rem;
  min-height: 300px;
}
html body #wrapper #bottomScrollToTopButton {
  position: fixed;
  bottom: 3rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  cursor: pointer;
  left: calc(50vw - 2rem);
  opacity: 1;
  transition: 300ms;
  transition-delay: 300ms;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
html body #wrapper #bottomScrollToTopButton > span {
  font-size: 3rem;
}
html body #wrapper #bottomScrollToTopButton.hide {
  opacity: 0;
  bottom: -4rem;
}
html body #wrapper #bottomCallButton {
  position: sticky;
  bottom: 0;
  width: 100%;
  background: #000000;
  color: #ffffff;
  font-family: "europa", sans-serif;
  height: 4rem;
  opacity: 1;
  transition: 300ms;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  z-index: 1;
  text-decoration: none;
  border-top: 1px solid #666666;
}
html body #wrapper #bottomCallButton > span:first-child {
  color: #999;
  margin-right: 0.3rem;
}
html body #wrapper #bottomCallButton.hide {
  opacity: 0;
  bottom: -4rem;
}
html body #wrapper footer {
  width: 100%;
  border-image: linear-gradient(90deg, #b6359c 0%, #ef0a6a 70%, #ef0a6a 100%);
  border-image-slice: 1;
  border-width: 1px;
  border-style: solid;
  border-image-repeat: round;
  background: #000000;
  color: #ffffff;
  border-width: 0;
  border-top-width: 1px;
  padding-bottom: 7rem;
}
html body #wrapper footer #crumbList {
  padding-top: 2rem;
}
html body #wrapper footer #crumbList ol {
  list-style-type: none;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  line-height: 1;
}
html body #wrapper footer #crumbList ol li {
  font-size: 12px;
  font-weight: bold;
  height: 20px;
  color: #ffffff;
  line-height: 1;
}
html body #wrapper footer #crumbList ol li a {
  color: #ffffff;
  text-decoration: underline;
}
html body #wrapper footer #crumbList ol li a:hover {
  text-decoration: none;
}
html body #wrapper footer #crumbList ol li:before {
  content: '>';
  margin-left: 0.5rem;
}
html body #wrapper footer .information h3 {
  color: #ffffff;
  border-bottom: 1px solid #666666;
}
html body #wrapper footer .information h3 > span:first-child {
  margin-right: 1rem;
}
html body #wrapper footer .information h3 > span:first-child::before {
  color: #999;
}
html body #wrapper footer .information h3 > span:last-child {
  font-family: "europa", sans-serif;
}
html body #wrapper footer .information .shopInfo > h3 > span:first-child::before {
  font-family: 'icomoon' !important;
  font-style: normal;
  content: "\e909";
  margin-right: 0.2rem;
}
html body #wrapper footer .information .shopInfo > ul {
  list-style: none;
}
html body #wrapper footer .information .shopInfo > ul > li > :first-child {
  font-family: "europa", sans-serif;
}
html body #wrapper footer .information .priceInfo > h3 > span:first-child::before {
  font-family: 'icomoon' !important;
  font-style: normal;
  content: "\e90e";
  margin-right: 0.2rem;
}
html body #wrapper footer .information .areaInfo {
  width: 100%;
}
html body #wrapper footer .information .areaInfo > h3 > span:first-child::before {
  font-family: 'icomoon' !important;
  font-style: normal;
  content: "\e90d";
  margin-right: 0.2rem;
}
html body #wrapper footer .information .areaInfo > .prefecture {
  padding: 2rem 0;
}
html body #wrapper footer .information .areaInfo > .prefecture > h4 {
  color: #ffffff;
  padding: 0.2rem 0.5rem;
  display: inline;
}
html body #wrapper footer .information .areaInfo > .prefecture > ul {
  margin-top: 1rem;
  list-style: none;
}
html body #wrapper footer .information .areaInfo > .prefecture > ul > li > .designatedCity {
  font-size: 1.2rem;
}
html body #wrapper footer .information .areaInfo > .prefecture > ul > li > .wardList {
  list-style: none;
}
html body #wrapper footer .copyRight {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
}
html body #wrapper footer a {
  color: #ffffff;
}
.linkBannerArea {
  list-style: none;
}
.linkBannerArea > li > a {
  display: block;
}
.linkBannerArea > li > a > img {
  max-width: 100%;
  height: auto;
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader .loader,
.loader .loader:before,
.loader .loader:after {
  background: #000000;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 0.5rem;
  height: 2rem;
}
.loader .loader {
  color: #000000;
  text-indent: -9999rem;
  margin: 44px auto;
  position: relative;
  font-size: 0.6rem;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader .loader:before,
.loader .loader:after {
  position: absolute;
  top: 0;
  content: '';
}
.loader .loader:before {
  left: -1rem;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader .loader:after {
  left: 1rem;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 2em;
  }
  40% {
    box-shadow: 0 -1rem;
    height: 2.5rem;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 2rem;
  }
  40% {
    box-shadow: 0 -2rem;
    height: 2.5rem;
  }
}
.wf-loading .fadeInText {
  opacity: 0;
  transition: 500ms;
}
.wf-active .fadeInText {
  opacity: 1;
  transition: 500ms;
}
.tag {
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f2f2f8;
}
.tag.active {
  background: #ef0a6a;
}
.tag.rookie {
  background: #000000;
  color: #f2f2f8;
}
.cursive {
  font-family: "europa", sans-serif;
}
input,
select {
  border: 2px solid #000000;
  color: #000000;
}
input[type=checkbox] {
  display: none;
}
.checkboxLabel {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 0.5rem 0;
  padding-left: 2.5rem;
  position: relative;
  width: auto;
}
.checkboxLabel::before {
  background: #ffffff;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
  border: 2px solid #000000;
  box-sizing: border-box;
}
.checkboxLabel::after {
  border-right: 3px solid #000000;
  border-bottom: 3px solid #000000;
  content: '';
  display: block;
  height: 9px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}
input[type=checkbox]:checked + .checkboxLabel::after {
  opacity: 1;
}
.emptyResult {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rank1 {
  color: #ffffff !important;
}
.rank2 {
  color: #ffffff !important;
}
.rank3 {
  color: #ffffff !important;
}
.modaal-close::before,
.modaal-close::after,
.modaal-gallery-control::before,
.modaal-gallery-control::after {
  width: 2px!important;
  border-radius: 0!important;
}
.modaal-close:hover::before,
.modaal-close:hover::after,
.modaal-gallery-control:hover::before,
.modaal-gallery-control:hover::after {
  background: #000000 !important;
}
.modaal-gallery-prev:before {
  margin: 6px 0 0!important;
}
.modaal-gallery-next:before {
  margin: -6px 0 0 !important;
}
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}
/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}
/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}
/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}
/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}
.fadeIn {
  will-change: transform;
  transform: translate(0, 50px);
  transition: 0.5s;
  transition-delay: 0.2s;
  opacity: 0;
  animation-timing-function: ease-in-out;
}
.fadeIn.arrived {
  will-change: transform;
  transform: translate(0, 0px);
  transition: 0.5s;
  transition-delay: 0.2s;
  opacity: 1;
  animation-timing-function: ease-in-out;
}
/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/*# sourceMappingURL=base.css.map */