@charset "UTF-8";
@import url("root.css");
/*-----*ブレイクポイントルール*-----*/
/* スマートフォン：max-width:767 */
/* タブレット：min-width:768px */
/* PC：min-width:1025px */
/***************************************
---------------- SHOP ----------------
***************************************/
.shop_imgBox {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.shop_imgBox .shop_imgBox-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.shop_imgBox .shop_imgBox-img:nth-of-type(1) {
  grid-column: 1/2;
  grid-row: 1/2;
}

.shop_imgBox .shop_imgBox-img:nth-of-type(2) {
  grid-column: 2/3;
  grid-row: 1/3;
}

.shop_imgBox .shop_imgBox:nth-of-type(3) {
  grid-column: 1/2;
  grid-row: 2/3;
}

.access_imgBox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 2%;
}

@media (max-width: 767px) {
  .access_imgBox {
    grid-template-columns: repeat(2, 1fr);
  }
}
.access_flowItem--text {
  position: relative;
  padding-left: 60px;
}

@media (max-width: 767px) {
  .access_flowItem--text {
    padding-left: 40px;
  }
}
.access_flowItem--number {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  background: var(--base-color01);
  color: #fff;
  font-size: clamp(1.6rem, 1.459rem + 0.601vw, 2rem);
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 767px) {
  .access_flowItem--number {
    width: 30px;
    height: 30px;
  }
}
.icon_train {
  position: relative;
  padding-left: 32px;
  font-weight: bold;
  margin: 0 0 30px;
  font-size: clamp(1.8rem, 1.8vw, 2rem);
}
@media (max-width: 767px) {
  .icon_train {
    margin: 0 0 20px;
  }
}
.icon_train:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 32px;
  background: url(../img/shop/icon_train.png) no-repeat center center/cover;
}

.accsess_wrap {
  gap: 30px 60px;
}
.accsess_wrap .access_img {
  margin: 0;
  position: relative;
}
.accsess_wrap .access_img:after {
  content: "1";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  background: var(--base-color01);
  text-align: center;
  font-weight: bold;
  font-size: 2.2rem;
}
.accsess_wrap .access_img.access02:after {
  content: "2";
}
.accsess_wrap .access_img.access03:after {
  content: "3";
}
.accsess_wrap .access_img.access04:after {
  content: "4";
}
.accsess_wrap .access_img.access05:after {
  content: "5";
}

.parking_wrap {
  padding: 2% 4%;
  border: 4px double var(--base-color01);
}
.parking_wrap .h3_parking {
  margin: 0;
  text-align: center;
  color: var(--base-color01);
  border-bottom: 1px solid var(--base-color01);
  font-size: clamp(1.8rem, 1.8vw, 2rem);
  padding-bottom: 10px;
  margin: 0 0 15px;
  font-weight: 500;
}
.parking_wrap .list_parking li {
  font-weight: bold;
  position: relative;
  padding-left: 20px;
  line-height: 1.8;
}
.parking_wrap .list_parking li:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 100vh;
  background: var(--base-color01);
}

.sp-row03{
  display: flex;
  gap:2%;
}

.sp-row03 .col-4 {
  width: 32%;
}