/* Reset style */
/***
    The new CSS reset - version 1.7.3 (last updated 7.8.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 54.6%;
  }
}

body {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  font-family: "";
  color: #000;
  font-size: 1.6rem;
  overflow-x: hidden;
  background-color: #fff;
}

img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
a:hover {
  opacity: 0.8;
}

.inner {
  max-width: 1240px;
  width: calc(100% - 80px);
  margin: 0 auto;
}
@media screen and (max-width: 580px) {
  .inner {
    width: calc(100% - 30px);
  }
}

.br-sp_580 {
  display: none;
}
@media screen and (max-width: 580px) {
  .br-sp_580 {
    display: block;
  }
}

.br-sp_480 {
  display: none;
}
@media screen and (max-width: 480px) {
  .br-sp_480 {
    display: block;
  }
}

.header {
  position: fixed;
  max-width: 1440px;
  width: calc(100% - 60px);
  margin-inline: auto;
  z-index: 100;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 10px 10px;
  padding: 0 20px 10px;
  box-shadow: 0px 5px 10px 0px rgba(198, 164, 113, 0.2);
  background-color: #fff;
  display: none;
}

#maps {
  max-width: 1240px;
  width: 100%;
  height: 100vh;
  margin-inline: auto;
  position: relative;
}
#maps::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #040256;
  mix-blend-mode: overlay;
  pointer-events: none;
}
#maps iframe {
  transform: translateY(3px);
}
#maps .inner {
  aspect-ratio: 2/1;
  width: unset;
}
@media screen and (max-width: 768px) {
  #maps .inner {
    aspect-ratio: 3/4;
  }
}
#maps .maps a {
  display: inline-block;
  color: #f10808;
  border-bottom: 1px solid #f10808;
  padding-bottom: 1px;
  line-height: 1;
}

#maps .mapbox {
  display: flex;
  align-items: start;
}
#maps .mapbox .left {
  width: calc(100% - 30px);
}
#maps .mapbox .right {
  width: 30px;
  margin-right: 20px;
}
#maps .mapbox .right a {
  border-bottom: none;
}
@media screen and (max-width: 480px) {
  #maps .mapbox .right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  #maps .mapbox .right a {
    width: 3rem;
  }
}
@media screen and (max-width: 768px) {
  #maps .mapbox {
    flex-direction: column;
    gap: 20px;
  }
  #maps .mapbox .left {
    width: 100%;
  }
}
.shop {
  padding: 8rem 0;
}
@media screen and (max-width: 480px) {
  .shop {
    padding: 3rem 0;
  }
}
@media screen and (max-width: 768px) {
  .shop ul {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 0 2rem;
  }
}
.shop ul li {
  border-top: 1px solid #0a0e46;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  .shop ul li {
    width: calc((100% - 2rem) / 2);
  }
}
@media screen and (max-width: 480px) {
  .shop ul li {
    padding: 1rem 0.5rem;
  }
}
.shop ul li table {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .shop ul li table tr {
    font-size: 10px;
  }
}
.shop ul li table th {
  width: 25rem;
  font-weight: bold;
}
.shop ul li table th .ttl-logo {
  width: 200px;
  margin-inline: auto;
}



.shop ul li:nth-child(4) table th .ttl-logo {
  height: 166px;
}
.shop ul li:nth-child(4) table th .ttl-logo img {
  object-fit: contain;
}
@media screen and (max-width: 580px) {
  .shop ul li table th .ttl-logo {
    width: 14rem;
  }
  .shop ul li:nth-child(4) table th .ttl-logo {
    height: 101.5px;
  }
}
.shop ul li table th .ttl-logo img {
  height: 100%;
  object-fit: cover;
}
.shop ul li table td {
  line-height: 2;
  vertical-align: top;
}
.shop ul li table td p span,.shop ul li table td .link span {
  display: inline-block;
  width: 18rem;
  text-align: center;
  color: #fff;
  /*background-color: #d7535b;*/
  background-color: #000;
  padding: 0.5rem 0;
  border-radius: 5px;
  line-height: 1;
  margin-right: 3rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .shop ul li table td p span,.shop ul li table td .link span {
    margin-right: 0;
  }
}
.shop ul li table td p a {
  display: inline-block;
}
.shop ul li table td .link {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .shop ul li table td .link {
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }
}
.shop ul li table td .link a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: #d7535b;
  border-radius: 4rem;
  padding: 0px 2rem;
  color: #fff;
  width: 20rem;
}
@media screen and (max-width: 768px) {
  .shop ul li table td .link a {
    width: 16rem;
    padding: 0.5rem 0;

  }
}
.shop ul li table td .link .shop {
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  .shop ul li table td .link .shop {
    margin-right: 0;
  }
}
.shop ul li table td .link a img {
  width: 2rem;
}

@media screen and (max-width: 480px) {
  .shop ul li table td p {
    line-height: 1.2;
  }
}
@media screen and (max-width: 1080px) {
  .shop ul li table th, .shop ul li table td {
    width: 100%;
    display: block;
  }
  .shop ul li table th {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .shop ul li table th, .shop ul li table td {
    text-align: center;
  }
  .shop ul li table td p {
    margin-bottom: 1rem;
  }
  .shop ul li table td p span {
    display: block;
    margin-bottom: 1rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .shop ul li table td .link a p {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .shop ul li table th {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .shop ul li:nth-child(2) table td .add {
    margin-bottom: 2em;
  }
}
/*QRページ*/
.qr {
  width: 30rem;
  margin: 6rem auto;
}
.qr-img {
  width: 100%;
}
.btn-link {
  width: fit-content;
  margin: 4rem auto;
  display: block;
}
.btn-link a {
  width: 100%;
  background-color: #d7535b;
  color: #fff;
  padding: 1rem 2rem;
  text-align: center;
  border-radius: 4rem;
}


.footer {
  text-align: center;
  padding: 6rem 0 2rem;
}/*# sourceMappingURL=style.css.map */
.footer img {
  width: 20rem;
  display: block;
  margin-inline: auto;
}
.footer a {
    margin: 0 auto;
}
.footer a img:hover{
  transform:scale(1.1,1.1);
  transition:0.5s all;
}