@charset "UTF-8";
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.store-page a[href^=tel],
.store-page a[href^=fax],
.store-page a[x-apple-data-detectors] {
  color: #222222;
  text-decoration: none;
}

.store-page > .container-contents > .list-store {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  padding: 1.5%;
}
.store-page > .container-contents > .list-store > .store {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 49%;
  aspect-ratio: 2.6/1;
  height: auto;
  padding-bottom: 0.8vw;
}
.store-page > .container-contents > .list-store > .store:first-child, .store-page > .container-contents > .list-store > .store:nth-child(3) {
  margin-right: 1.5%;
}
.store-page > .container-contents > .list-store > .store:first-child, .store-page > .container-contents > .list-store > .store:nth-child(2) {
  margin-bottom: 1.5%;
}
.store-page > .container-contents > .list-store > .store > .store-name {
  background-color: #1C0D82;
  color: #ffffff;
  font-size: 1.9vw;
  line-height: 1.5;
  padding: 7px 7px 7px 40px;
  margin-bottom: 1.2vw;
}
.store-page > .container-contents > .list-store > .store > .box-information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.3vw;
  padding: 0px 1.8vw;
}
.store-page > .container-contents > .list-store > .store > .box-information > .icon {
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 20px;
}
.store-page > .container-contents > .list-store > .store > .box-information > .box-text {
  margin-left: 12px;
}
.store-page > .container-contents > .list-store > .store > .box-information > .box-text > .label {
  color: #888888;
  font-size: 0.9vw;
  margin-bottom: 4px;
}
.store-page > .container-contents > .list-store > .store > .box-information > .box-text > .data {
  font-size: 1vw;
}
.store-page > .container-contents > .list-store > .store > iframe {
  height: clamp(90px, 16vh, 220px);
  width: 100%;
  padding: 0 1.8vw;
}

@media screen and (max-width: 820px) {
  .store-page > .container-contents {
    padding-bottom: 50px;
  }
  .store-page > .container-contents > .list-store {
    display: block;
    padding: 8px 16px 16px 16px;
  }
  .store-page > .container-contents > .list-store > .store {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
  .store-page > .container-contents > .list-store > .store:first-child, .store-page > .container-contents > .list-store > .store:nth-child(3) {
    margin-right: 0;
  }
  .store-page > .container-contents > .list-store > .store:first-child, .store-page > .container-contents > .list-store > .store:nth-child(2) {
    margin-bottom: 16px;
  }
  .store-page > .container-contents > .list-store > .store > .store-name {
    font-size: 18px;
    margin-bottom: 12px;
    padding: 3px 10px 5px;
  }
  .store-page > .container-contents > .list-store > .store > .box-information {
    padding: 0 10px;
    margin-bottom: 8px;
  }
  .store-page > .container-contents > .list-store > .store > .box-information > .box-text {
    margin-left: 4px;
  }
  .store-page > .container-contents > .list-store > .store > .box-information > .box-text > .label {
    display: none;
  }
  .store-page > .container-contents > .list-store > .store > .box-information > .box-text > .data {
    font-size: 15px;
  }
  .store-page > .container-contents > .list-store > .store > iframe {
    padding: 0 10px;
  }
}