@charset "UTF-8";
h2.shop-heading {
  font-size: 20px;
  border-bottom: none;
  margin-block: 1rem;
}
h2.shop-heading::after {
  display: none;
}

/*
  ショップのカセット
*/
.shop-cassette-list {
  display: -ms-grid;
  display: grid;
  gap: 40px;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .shop-cassette-list {
    padding: 0;
  }
}

.shop-cassette .shop-cassette__table {
  border: 2px solid #ccc;
}
.shop-cassette .shop-cassette__heading {
  font-size: 14px;
  text-align: left;
  background: #fff;
  border-left: none;
  padding: 16px 8px;
}
@media screen and (min-width: 768px) {
  .shop-cassette .shop-cassette__heading {
    font-size: 18px;
  }
}
.shop-cassette .shop-cassette__main {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .shop-cassette .shop-cassette__main {
    font-size: 16px;
  }
}
.shop-cassette .shop-cassette__block-group {
  display: -ms-grid;
  display: grid;
}
@media screen and (min-width: 768px) {
  .shop-cassette .shop-cassette__block-group {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.shop-cassette .shop-cassette__block-group.-full {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .shop-cassette .shop-cassette__block-group.-full .shop-cassette__block {
    -ms-grid-columns: 1fr 7fr;
    grid-template-columns: 1fr 7fr;
  }
}
@media screen and (min-width: 768px) {
  .shop-cassette .shop-cassette__block-group .shop-cassette__block:not(:first-child) {
    border-left: 1px solid #ccc;
  }
}
.shop-cassette .shop-cassette__block {
  border-top: 1px solid #ccc;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3fr;
  grid-template-columns: 1fr 3fr;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .shop-cassette .shop-cassette__block {
    -ms-grid-columns: 1fr 3fr;
    grid-template-columns: 1fr 3fr;
  }
}
.shop-cassette .shop-cassette__block > dt {
  background-color: #f2f2f2;
  padding: 10px;
  text-align: center;
  font-weight: bold;
}
.shop-cassette .shop-cassette__block > dd {
  padding: 10px;
  border-left: 1px solid #ccc;
}
.shop-cassette .shop-cassette__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .shop-cassette .shop-cassette__status {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.shop-cassette .shop-cassette__status__star {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 2px 12px 0 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.shop-cassette .shop-cassette__status__star img {
  width: 100%;
  border-radius: 4px 4px 0 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.shop-cassette .shop-cassette__status__score {
  position: relative;
  width: 30px;
  color: #e00923;
  font-weight: 700;
  font-size: 20px;
}
.shop-cassette .shop-cassette__status__number {
  width: 80px;
  color: #4a90e2;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shop-cassette .shop-cassette__status__number a {
  margin-left: 10px;
  color: #4a90e2;
  text-decoration: none;
}
.shop-cassette .shop-cassette__status__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .shop-cassette .shop-cassette__status__right {
    gap: 0;
  }
}

.shop-cassette__btn-unit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  place-items: center;
}

.shop-cassette__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
  background: #009a02;
  border: 3px solid #009a02;
  border-radius: 36px;
  -webkit-box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 380px;
  width: calc(100% - 20px);
  margin: 20px auto 0;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  padding: 8px 18px;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .shop-cassette__btn {
    font-size: 19px;
    padding: 12px 18px;
  }
}
.shop-cassette__btn:visited {
  color: #fff;
}
.shop-cassette__btn:link {
  color: #fff;
}
.shop-cassette__btn:hover {
  opacity: 0.7;
}

.shop-ul-block {
  margin-top: 5px;
  margin-left: 1em;
  padding-left: 1.5em;
}
@media screen and (min-width: 768px) {
  .shop-ul-block {
    padding-left: 0;
  }
}
.shop-ul-block li {
  list-style: disc;
}

.float_box {
  position: relative;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.float_box.hide {
  opacity: 0;
  visibility: hidden;
}

.float_box_wrapper {
  position: fixed;
  z-index: 998;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: auto;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.8);
}

.float_box_link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 360px;
  height: 70px;
  padding: 0 0 5px;
  background: #dd0012;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 0 #a10613;
          box-shadow: 0 5px 0 #a10613;
  color: #fff !important;
  text-align: center;
  font-size: 20px;
  text-decoration: none;
  font-weight: bold;
  pointer-events: auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.float_box_link:link {
  color: #fff !important;
}
@media screen and (min-width: 769px) {
  .float_box_link:hover {
    -webkit-transform: translate(0, 4px);
    transform: translate(0, 4px);
    -webkit-box-shadow: 0 2px 0 #b10003;
            box-shadow: 0 2px 0 #b10003;
  }
}

.float_box_link span {
  display: block;
}

.float_box_link .bg_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 30px;
  margin-top: 5px;
  margin-right: 18px;
  background: #fff;
  border-radius: 4px;
  color: #dd0012;
  font-size: 17px;
  font-weight: bold;
}

.float_box_link .float_box_txt {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
}

.float_box_link .float_box_txt::before,
.float_box_link .float_box_txt::after {
  position: absolute;
  top: 2px;
  content: "";
  display: block;
  width: 2px;
  height: 1em;
  background: #fff;
}

.float_box_link .float_box_txt::before {
  left: -1em;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}

.float_box_link .float_box_txt::after {
  right: -1em;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
