:root {
  --color-01: #ca0336;
  --color-02: #333;
  --color-03: #ccc;
  --color-04: #f4f4f7;

  --ease: cubic-bezier(.36, 1.13, .7, .97);

  --nav: 56px;
}

/* reset and set
-------------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { height: 100%; }
html:focus-within { scroll-behavior: smooth; }

body {
  overflow-x: hidden;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
      -ms-text-size-adjust: 100%;
     -moz-text-size-adjust: none;
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
  color: var(--color-02);
  background: var(--color-04);
  /* overscroll-behavior: none; */
  -webkit-tap-highlight-color: transparent;
}

main {
  padding-top: var(--nav);
  padding-bottom: 40px;
  font-weight: 700;
  font-size: 14px;
}

dl, dd {
  margin: 0;
}

p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: 100%;
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  word-break: break-all;
  cursor: pointer;
  color: inherit;
}

a, button, input, label, select, textarea, [tabindex] {
  touch-action: manipulation;
}

button {
  padding: 0;
  border: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

img, picture, video, svg {
  display: block;
  /* max-width: 100%; */
}

img, svg {
  border: none;
  -o-object-fit: cover;
     object-fit: cover;
}

svg:not([fill]) { fill: currentColor; }

iframe {
  vertical-align: top;
  border: 0;
}

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button, input[type="submit"] { cursor: pointer; }

label {
  cursor: pointer;
  user-select: none;
}

:focus:not(:focus-visible) { outline: none; }

:focus-visible {
  outline-width: 2px;
  outline-style: solid;
  outline-color: var(--color-01);
  scroll-margin-top: 20vh;
  scroll-margin-bottom: 20vh;
}

::placeholder {
  color: var(--color-03);
}





/* Minimize non-essential motion
-------------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}





/* modules
-------------------------------------------------------------------------------- */
/* screen reader */
.screen-reader {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

/* container */
.container {
  width: calc(100% - 20px);
  margin-right: auto;
  margin-left: auto;
  padding: 40px 25px;
  background: #fff;
}

/* layout */
.flex-col {
  display: flex;
  flex-direction: column;
}

/* text */
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* gap */
.m-s-row-gap {
  margin-top: 29px;
  padding-top: 1px;
}

.mt15 { margin-top: 15px !important; }
.mt20 { margin-top: 20px !important; }
.mt60 { margin-top: 60px !important; }
.mb60 { margin-bottom: 60px !important; }

.m-notice { color: var(--color-01); }

.m-nagative-indent {
  display: block;
  margin-left: -.5em;
}

/* heading */
.m-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 64px;
  padding: 10px;
  font-size: 16px;
}

/* label */
.m-label {
  font-weight: 700;
  font-size: 18px;
}

/* index */
.m-index {
  display: block;
  margin-bottom: 8px;
}

.m-hr {
  width: 100%;
  height: 0;
  margin-top: 30px;
  margin-bottom: 30px;
  border: none;
  border-top: 1px solid var(--color-03);
}

.m-hr.list {
  margin-top: 10px;
  margin-bottom: 0;
}

/* button wrapper */
.m-btn-wrap {
  display: flex;
  max-width: 430px;
  margin-right: auto;
  margin-left: auto;
}

.m-btn-wrap > :first-child { flex-grow: 8; margin-right: 3px; }
.m-btn-wrap > :last-child  { flex-grow: 4; margin-left: 3px; }

/* button */
.m-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  font-size: 14px;
  line-height: 44px;
  white-space: nowrap;
  color: #fff;
  border: 1px solid var(--color-01);
  border-radius: 4px;
  background: var(--color-01);
}

.m-btn:focus-visible {
  outline-offset: -3px;
  outline-width: 1px;
  outline-style: solid;
  outline-color: #fff;
}

.m-btn.secondary {
  border-color: var(--color-02);
  background: var(--color-02);
}

.m-btn.border {
  color: var(--color-01);
  background: #fff;
}

.m-btn.border:focus-visible {
  outline-color: var(--color-01);
}

.m-btn.max {
  width: 100%;
}

.m-btn.w230 {
  width: 230px;
}

.m-btn.w154 {
  width: 154px;
}

.m-btn.center {
  margin-right: auto;
  margin-left: auto;
}

.m-btn.external {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12'%3E%3Cpath fill='%23fff' d='M1.52 5.07h2.77v2.78h6.48v2.78H1.52V5.07Zm3.7 0h5.56v1.85H5.23V5.07Zm0-3.7h9.26v5.55h-2.77V4.14H5.23V1.37ZM4.29.44v3.7H.59v7.41H11.7v-3.7h3.7V.44H4.29Z'/%3E%3C/svg%3E%0A");
  background-position: right 10px bottom 10px;
  background-repeat: no-repeat;
  background-size: 16px 12px;
}

/* checkbox */
.m-checkbox {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin: 0;
  border-radius: 50%;
  border: none;
  background: var(--color-04);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.m-checkbox:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath fill='%23bb0029' d='m7.01 16.59-5.8-4.97c-.86-.7-.99-1.96-.29-2.81a1.991 1.991 0 0 1 2.89-.22l2.74 2.34 7.41-8.8c.71-.85 1.97-.95 2.82-.24s.95 1.97.24 2.82l-10 11.89Z'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 18px;
}

.m-checkbox-label {
  display: flex;
  align-items: center;
}

/* accordion */
.m-accordion {
  overflow: hidden;
  border: 1px solid var(--color-03);
  border-radius: 5px;
  background: #fff;
}

.m-accordion_btn {
  position: relative;
  width: 100%;
  height: 50px;
  padding: 1em 44px 1em 1em;
  text-align: left;
  color: inherit;
  border-radius: 5px;
}

.m-accordion_btn:focus-visible {
  outline-offset: -1px;
}

.m-accordion_btn::before {
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  width: 16px;
  height: 10px;
  margin: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'%3E%3Cpath fill='%23ca0336' d='M.37 1.73c0-.6.49-1.09 1.09-1.09.29 0 .56.11.77.32L8 6.73 13.77.96a1.08 1.08 0 0 1 1.54 0c.43.43.43 1.12 0 1.54L8.77 9.04c-.42.43-1.11.43-1.54 0L.69 2.5c-.2-.2-.32-.48-.32-.77Z'/%3E%3C/svg%3E%0A");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform .5s var(--ease);
  content: "";
}

.m-accordion_btn.is-open::before {
  transform: rotateX(180deg);
}

.m-accordion_body {
  visibility: hidden;
  height: 0;
  transition-property: visibility, height;
  transition-duration: 0s, .5s;
  transition-timing-function: linear, var(--ease);
  transition-delay: .5s, 0s;
}

.m-accordion_body.is-open {
  visibility: visible;
  transition-delay: 0s, 0s;
}

/* badge */
.m-badge-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: -2px;
}

.m-badge {
  margin: 2px;
  padding: 3px 8px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  border: 1px solid;
}

/* hover effects */
@media (any-hover: hover) and (pointer: fine) {
  [data-hover="opacity"] {
    transition: opacity .25s;
  }

  [data-hover="opacity"]:hover {
    opacity: .5;
  }
}





/* header
-------------------------------------------------------------------------------- */
.g-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: var(--nav);
  border-bottom: 2px solid var(--color-01);
  background: #fff;
}

.g-header_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: auto;
}

.g-header_btn {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  z-index: 11;
  width: 36px;
  height: 36px;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 50%;
}

.g-header_btn > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--color-02);
  transition-property: top, transform;
  transition-duration: .25s;
  transform: translate(-50%, -50%);
}

.g-header_btn > span:nth-of-type(1) { top: calc(50% - 8px); }
.g-header_btn > span:nth-of-type(3) { top: calc(50% + 8px); }

.g-header_btn.is-open > span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.g-header_btn.is-open > span:nth-of-type(2) {
  transform: translate(-50%, -50%) scaleX(0);
}

.g-header_btn.is-open > span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.g-header_overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(0, 0, 0, .28);
  transition-property: width, opacity;
  transition-duration: 0s, .5s;
  transition-delay: .5s, 0s;
  opacity: 0;
}

.g-header_overlay.is-open {
  width: 100%;
  transition-delay: 0s, 0s;
  opacity: 1;
}

.g-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  visibility: hidden;
  width: 81.5385%;
  max-width: 375px;
  padding: var(--nav) 0;
  font-weight: 700;
  background: #fff;
  transition-property: visibility, transform;
  transition-duration: 0s, .5s;
  transition-timing-function: linear, var(--ease);
  transition-delay: .5s, 0s;
  transform: translate3d(-100%, 0, 0);
}

.g-nav.is-open {
  visibility: visible;
  transition-delay: 0s, 0s;
  transform: translate3d(0, 0, 0);
}

.g-nav_wrap {
  overflow-y: auto;
  max-width: 390px;
  height: 100%;
  margin: auto;
  padding: 10px 10px 0;
}

.g-nav {
  font-size: 14px;
}

.g-nav_link {
  display: block;
  padding: 20px 20px 20px 34px;
  font-size: 16px;
}

.g-nav_link + .g-nav_link {
  border-top: 1px solid var(--color-03);
}

.g-nav_link.store,
.g-nav_link.flyer {
  background-position: 0 50%;
  background-repeat: no-repeat;
}

.g-nav_link.store {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath fill='%23ca0336' d='M2.83 2.79c3.5-3.5 9.16-3.5 12.66 0a8.94 8.94 0 0 1 2.62 6.36c0 1.63-.45 3.23-1.29 4.63l4.34 4.35c.84.85.84 2.22 0 3.07-.84.84-2.2.85-3.04.01l-.01-.01-4.34-4.35A8.948 8.948 0 0 1 .21 9.15c0-2.38.94-4.67 2.62-6.36Zm2.45 10.26a5.501 5.501 0 0 0 7.79-.02 5.501 5.501 0 0 0-.02-7.79c-2.16-2.15-5.64-2.14-7.79.02s-2.14 5.64.02 7.79Z'/%3E%3C/svg%3E%0A");
  background-size: 22px;
}

.g-nav_link.flyer {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='%23ca0336'%3E%3Cpath d='M23.1.99v22.03c0 .32-.26.58-.58.58H1.48a.58.58 0 0 1-.58-.58V.99c0-.32.26-.58.58-.58h21.05c.32 0 .58.26.58.58Zm-1.15 21.45V1.56H2.05v20.88h19.89Z' class='cls-1'/%3E%3Cpath d='M13.02 4.34H4.17a.58.58 0 0 1 0-1.16h8.85a.58.58 0 0 1 0 1.16ZM19.41 12.72H4.12a.58.58 0 0 1-.58-.58V6.66c0-.32.26-.58.58-.58h15.29c.32 0 .58.26.58.58v5.48c0 .32-.26.58-.58.58ZM4.69 11.57h14.14V7.25H4.69v4.32ZM10.8 14.21v6.1c0 .32-.26.58-.58.58H4.11a.58.58 0 0 1-.58-.58v-6.1c0-.32.26-.58.58-.58h6.11c.32 0 .58.26.58.58Zm-1.15 5.53v-4.95H4.7v4.95h4.95ZM19.57 20.87h-7.26a.58.58 0 0 1-.58-.58v-6.11c0-.32.26-.58.58-.58h7.26c.32 0 .58.26.58.58v6.11c0 .32-.26.58-.58.58Zm-6.68-1.15H19v-4.95h-6.11v4.95Z' class='cls-1'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-size: 24px;
}

.g-nav_list .term {
  margin: 0 -10px 10px;
  padding: 4px 10px;
  background: var(--color-03);
}

.g-nav_list .desc:not(:first-of-type) {
  border-top: 1px solid var(--color-03);
}

.g-nav_list .link {
  display: block;
  margin: 7px 0;
  padding: 7px 0;
}





/* footer
-------------------------------------------------------------------------------- */
footer {
  margin-top: auto;
  font-size: 12px;
  line-height: 32px;
  text-align: center;
  color: #fff;
  background: var(--color-02);
}





/* form parts
-------------------------------------------------------------------------------- */
/* form parts base */
input:not([type="checkbox"]):not([type="radio"]),
select {
  width: 100%;
  padding: 1em;
  border: 1px solid var(--color-03);
  border-radius: 5px;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input {
  height: 46px;
}

select {
  height: 50px;
  padding-right: 44px;
  cursor: pointer;
  color: inherit;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'%3E%3Cpath fill='%23ca0336' d='M.37 1.73c0-.6.49-1.09 1.09-1.09.29 0 .56.11.77.32L8 6.73 13.77.96a1.08 1.08 0 0 1 1.54 0c.43.43.43 1.12 0 1.54L8.77 9.04c-.42.43-1.11.43-1.54 0L.69 2.5c-.2-.2-.32-.48-.32-.77Z'/%3E%3C/svg%3E%0A");
  background-position: right 14px top 50%;
  background-repeat: no-repeat;
  background-size: 16px 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* 現在地から探す */
.s-location_btn {
  margin-top: 10px;
}

.s-location_icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  margin-left: -26px;
}

.s-location_annot {
  margin-top: 1em;
  font-weight: normal;
  font-size: 12px;
}

/* キーワードで探す */
.s-keyword_wrap {
  position: relative;
  margin-top: 10px;
}

.s-keyword_input {
  padding-right: 72px;
}

.s-keyword_btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: var(--color-01);
}

.s-keyword_btn:focus-visible {
  outline-offset: -3px;
  outline-width: 1px;
  outline-style: solid;
  outline-color: #fff;
}

.s-keyword_icon {
  width: 20px;
  height: 20px;
}

/* 店舗業態で絞り込む */
.s-store_wrap {
  position: relative;
  margin: 40px 0 0;
  padding: 24px 20px;
  border: 1px solid var(--color-03);
  border-radius: 5px;
  background: #fff;
}

.s-store_heading {
  position: absolute;
  top: -30px;
  left: 0;
  padding: 0;
}

.s-store_container {
  display: flex;
  flex-wrap: wrap;
  margin: -10px -5px;
}

.s-store_label {
  max-width: calc(50% - 10px);
  margin: 10px 5px;
}

.s-store_checkbox {
  margin-right: .5em;
}

.s-store_logo {
  width: 67.54386%;
  max-width: 100px;
  height: auto;
}

.s-store_logo.birthday {
  position: relative;
  top: 3px;
}

/* エリアから絞り込む */
.s-area_label ~ .s-area_label {
  margin-top: 10px;
}

/* 取扱商品から絞り込む */
.s-products_item {
  flex-wrap: wrap;
  row-gap: 1em;
  padding: 10px 1em 10px 51px;
  line-height: 1.2;
  border-top: 1px solid var(--color-03);
}

.s-products_checkbox {
  margin-right: .5em;
}

.s-products_checkbox:first-child {
  margin-left: -37px;
}

.m-products_icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin-right: .5em;
}





/* list
-------------------------------------------------------------------------------- */
/* banner */
.list_banner img {
  width: 100%;
  height: auto;
}

/* status */
.list_banner + .result-status {
  margin-top: 16px;
}

.result-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.result-status .number {
  font-weight: 400;
  font-size: 12px;
}

.filter-search {
  display: flex;
  align-items: center;
  padding: 8px;
  color: var(--color-01);
}

.filter-search svg {
  width: 22px;
  height: 22px;
}

/* breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-weight: normal;
  font-size: 12px;
}

.breadcrumb > * {
  white-space: nowrap;
}

.breadcrumb > span {
  display: flex;
  align-items: center;
}

.breadcrumb > span::before {
  margin-right: .5em;
  margin-left: .5em;
  padding-bottom: 2px;
  content: ">";
}

/* result store */
.result-item {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-03);
}

.result-item_link {
  position: relative;
  display: grid;
  padding: 10px 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 18'%3E%3Cpath d='M1.29 17.65c-.68 0-1.24-.56-1.24-1.24 0-.33.13-.64.36-.87L6.95 9 .42 2.45C-.06 1.97-.06 1.18.42.7S1.69.22 2.17.7l7.42 7.42c.48.48.48 1.26 0 1.75s-7.42 7.42-7.42 7.42c-.23.23-.55.36-.87.36Z' style='fill:%23ca0336'/%3E%3C/svg%3E");
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 10px 18px;
}

.result-item_link_url {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.result-item_store {
  display: flex;
  align-items: center;
  padding-right: 20px;
  font-size: 16px;
}

.result-item_info {
  margin-top: .5em;
  padding-right: 20px;
  font-weight: 400;
  font-size: 14px;
}

.result-item_tel {
  position: relative;
}

.result-item_tel,
.result-item_hours {
  display: inline-grid;
  grid-template-columns: auto;
  margin-right: .5em;
}

.result-item_tel dd,
.result-item_hours dd {
  grid-column-start: 2;
}

.result-item_foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.result-item_distance {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 10px;
  font-size: 15px;
}

.result-item_distance svg {
  width: 14px;
  height: 22px;
  margin-right: .25em;
}

.result-item_distance > * {
  flex-shrink: 0;
}





/* pager
-------------------------------------------------------------------------------- */
.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 30px -4px 0;
}

.pager .item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 28px;
  height: 28px;
  margin: 4px;
  padding: 0 .25em;
  font-weight: 400;
  font-size: 15px;
  border: 1px solid;
  border-radius: 2px;
}

.pager .item[aria-current] {
  color: #fff;
  background: var(--color-02);
  pointer-events: none;
}

.pager .previous,
.pager .dot,
.pager .next {
  border: none;
}

.pager .dot {
  margin: 0;
}

.pager .previous svg,
.pager .next svg {
  width: 8px;
  height: 14px;
}

.pager .previous svg {
  transform: rotate(180deg);
}

.pager .current {
  pointer-events: none;
  opacity: .25;
}





/* detail
-------------------------------------------------------------------------------- */
.map {
  position: relative;
  overflow: hidden;
}

.map #map_z,
.map .map_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map_detail #map_z,
.map_simple .map_img {
  z-index: 0;
  transition-property: z-index, opacity;
  transition-duration: 0s, .25s;
  transition-timing-function: linear;
  transition-delay: .25s, 0s;
  opacity: 0;
}

.map_simple .map_img {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
}

.map_detail.is-active #map_z,
.map_simple.is-active .map_img {
  z-index: 1;
  transition-delay: 0s;
  opacity: 1;
}

.detail-info > dt:not(:first-of-type) {
  border-top: 1px solid var(--color-03);
}

.detail-info > dt {
  padding-top: 1.142856em;
}

.detail-info > dd:not(:last-of-type) {
  padding-bottom: 1.142856em;
}

.detail-info > dd {
  margin-top: .25em;
  font-weight: 400;
}

.detail-info > dd dt {
  margin-top: 1em;
}

.detail-info .flyer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-right: -3.75%;
  margin-left: -3.75%;
}

.detail-info .flyer-read {
  width: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
  font-weight: normal;
}

.detail-info .flyer-item {
  max-width: 304px;
  margin-right: 3.75%;
  margin-left: 3.75%;
  margin-bottom: 24px;
}

.detail-info .flyer {
  width: auto;
  max-width: 100%;
  height: auto;
  margin-top: .25em;
  box-shadow: 0 0 3px 0 #ddd;
}

.detail-info .store-link-wrap {
  display: flex;
  flex-wrap: wrap;
  line-height: 2;
}

.detail-info > dd dd a {
  margin-right: 1em;
  word-break: keep-all;
}

@media (any-hover: hover) and (pointer: fine) {
  .detail-info > dd dd a:hover {
    text-decoration: underline;
  }
}

/* table */
.detail-info table {
  width: 100%;
  font-size: 90%;
}

.detail-info table,
.detail-info th,
.detail-info td {
  border: 1px solid var(--color-03);
}

.detail-info th,
.detail-info td {
  padding: .25em;
}

.detail-info th {
  position: sticky;
  top: var(--nav);
  font-weight: 400;
  white-space: nowrap;
  background: var(--color-04);
}

.detail-info td:not(:first-of-type) {
  text-align: center;
}

/* info modal */
.info-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, .75);
  transition-property: visibility, opacity;
  transition-duration: 0s, .25s;
  transition-timing-function: linear;
  transition-delay: .25s, 0s;
  opacity: 0;
}

.info-modal.is-open {
  visibility: visible;
  transition-delay: 0s;
  opacity: 1;
}

.info-modal_body {
  padding: 1em;
  border-radius: 4px;
  background: #fff;
}

.info-modal_body dt {
  margin-bottom: .5em;
  padding-bottom: .5em;
  border-bottom: 1px solid var(--color-03);
}

.info-modal_body dd {
  font-weight: 400;
}

.info-modal_body .m-btn {
  width: 100px;
  margin-top: 10px;
  margin-left: auto;
  font-weight: 400;
}





/* zenrin map
-------------------------------------------------------------------------------- */
#map_z * {
  all: unset;
  display: revert;
}





/* sp
-------------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .sp { display: block; }
  .pc { display: none; }

  /* list */
  .list_banner {
    margin-top: -15px;
  }

  .result-status {
    margin-top: -31px;
  }

  /* detail */
  .map {
    margin-right: -25px;
    margin-left: -25px;
    padding-top: 93.75%;
  }

  .detail .breadcrumb {
    margin: -25px -5px 15px;
  }

  .detail-info .flyer-read {
    font-size: 12px;
  }

  /* filter */
  .filter_container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    visibility: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    padding-top: 54px;
    padding-bottom: 60px;
    background: var(--color-04);
    transition-property: visibility, opacity;
    transition-duration: 0s, .25s;
    transition-timing-function: linear;
    transition-delay: .25s, 0s;
    overscroll-behavior: none;
    opacity: 0;
  }

  .filter_container.is-open {
    visibility: visible;
    transition-delay: 0s;
    opacity: 1;
  }

  .filter_header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: var(--nav);
    font-size: 16px;
    background: var(--color-04);
  }

  .filter_btn {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    margin: auto;
  }

  .filter_btn svg {
    width: 20px;
    height: 20px;
  }
}





/* pc
-------------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .sp { display: none; }
  .pc { display: block; }

  .row {
    display: flex;
    align-items: flex-start;
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 35px;
    padding-left: 35px;
  }

  .row_box {
    width: 100%;
    max-width: 860px;
    margin-right: 30px;
    background: #fff;
  }

  .container {
    padding: 40px 20px;
  }

  /* search */
  .search {
    max-width: 320px;
  }

  .search.list {
    width: 100%;
  }

  .pref-search {
    padding: 40px 20px 60px;
    background: #fff url(../images/japan.png) no-repeat 50% / 100%;
  }

  .pref-search_box {
    margin-top: 25px;
  }

  .pref-search_box dl {
    display: flex;
    padding: 12px;
  }

  .pref-search_box dl:not(:last-child) {
    border-bottom: 1px dashed var(--color-03);
  }

  .pref-search_box dt {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 30px;
    color: #fff;
    border-radius: 5px;
    background: var(--color-02);
  }

  .pref-search_box dd {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - 100px);
    margin-top: -6px;
    margin-left: 12px;
  }

  .pref-search_box dd > a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 80px;
    max-width: 100px;
    height: 30px;
    margin-top: 6px;
    margin-left: 6px;
    padding-right: 8px;
    padding-left: 8px;
    border: 1px solid var(--color-03);
    border-radius: 5px;
    background: rgba(255, 255, 255, .8);
  }

  /* list */
  .list_banner {
    margin-top: 20px;
  }

  /* detail */
  .info-modal_body {
    max-width: 50vw;
  }

  .detail .breadcrumb {
    margin-bottom: 15px;
  }

  .map {
    padding-top: 62.5%;
  }

  .detail-info > dt {
    font-size: 18px;
  }

  .detail-info > dd {
    font-size: 16px;
  }

  .detail-info .flyer-item {
    width: 32.55814%;
    min-width: 250px;
  }

  .detail-info .flyer-item p {
    font-size: 12px;
  }

  /* filter */
  .filter_container {
    flex-shrink: 0;
  }

  .filter_header {
    display: none;
  }
}

@media (min-width: 1000px) {
  .result-wrap {
    display: flex;
    flex-wrap: wrap;
  }

  .result-item {
    width: calc(50% - 10px);
  }

  .result-item:nth-of-type(odd) {
    margin-right: 20px;
  }
}
