/* header 上書き
------------------------------ */
.header__inner {
  display: grid;
  grid-template-columns: auto max-content 60px;
  align-items: center;
  height: 100%;
  padding: 0 0 0 15px;
}
.header__logo img {
  width: 110px;
}
.header__link a {
  border-left: dashed 1px #000;
  display: grid;
  place-content: center;
  font-size: clamp(12px, 3.5vw, 14px);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  padding: 0 6px;
}
.header__btn {
  display: grid;
  place-content: center;
  width: 60px;
  height: 60px;
}
.header__btn_inn {
  width: 24px;
  height: 14px;
  position: relative;
}

/*------------------------------------------------------------
Shop 一覧
------------------------------------------------------------*/
.ib {
  display: inline-block;
}
#locations {
  padding-bottom: 50px;
}
#locations .locations_txt {
  text-align: center;
  letter-spacing: 0;
}
#locations .locations_link {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background-color: #000;
  margin-left: -20px;
  width: calc(100% + 40px);
  height: 60px;
  margin-top: 28px;
}
#locations .locations_link a {
  color: #fff;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  width: 100%;
  height: 100%;
  position: relative;
  /* padding-bottom: 12px; */
  padding: 0 6px 12px;
}
#locations .locations_link a.en {
  font-size: 12px;
}
#locations .locations_link a + a::before {
  content: '';
  border-left: dashed 1px #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1px;
  height: 40px;
}
#locations .locations_link a::after {
  content: '';
  border-bottom: solid 1px #fff;
  border-left: solid 1px #fff;
  width: 8px;
  height: 8px;
  transform: rotate(-45deg);
}
#locations .locations_wrapper {
  margin-top: 30px;
}
#locations .locations_title {
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  padding: 1px 9px;
}
#locations .locations_item + .locations_item {
  border-top: dashed 1px rgba(0, 0, 0, 0.2);
} 
#locations .locations_item a {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px 14px;
  padding: 14px 35px  14px 0;
  position: relative;
}
#locations .locations_item a::after {
  content: '';
  background: url(../../common/images/btn_arrow_cercle.webp) no-repeat center center / contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
#locations .locations_thumb {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  aspect-ratio: 1 / 1;
  width: 100%;
  background-color: #f1f1f1;
}
#locations .locations_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#locations .locations_name {
  align-self: end;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  font-size: 15px;
  line-height: 1;
}
#locations .locations_name .txt {
  color: #d01126;
  font-size: 10px;
  font-family: 'Montserrat', sans-serif;
  padding-left: 8px;
}
#locations .locations_item p {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  font-size: 12px;
  line-height: 1.4;
}
#locations .locations_wrapper#online .locations_title {
  background-color: #999;
}
#locations .locations_wrapper#online .locations_name {
  grid-row: 1 / 3;
  align-self: center;
  line-height: 1.33;
}
