/* =========================
  Shop card renewal (scoped)
========================= */

.contents section.box01{
  padding: 0px 49px 30px !important;
}

.area-wrap{
  margin-right: 0;
  display:block;
  padding-top: 35px;
}

.contents.shop .r-shopAreaTitle{
  margin: 0px 0 20px;
  padding-bottom: 10px;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  border-bottom: 2px solid #333;
}

.contents.shop .r-shopList{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.head_contents .archive_banner{
  text-align: center;
  margin: 0 auto;
  width: 800px;
}

@media screen and (max-width: 768px){
  .head_contents .archive_banner{
    width: 100%;
  }
}

/* カード全体（白背景 + 影） */
.contents.shop .r-shopCard{
  /* display: grid; */
  display: flex;
  justify-content: space-around;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,.10);
  padding: 20px;
  /* overflow: hidden; */
}

/* 左側メイン（タイトル枠 + 中身） */
.contents.shop .r-shopCard__main{
  /* padding: 12px 14px 14px; */
  flex: 1 1 auto;
  min-width: 0;
}

/* タイトル：緑の枠 */
.contents.shop .r-shopCard__heading{
  margin: 0 0 10px;
  border: 2px solid #1ea63a;
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.3;
  position: relative;
}

.contents.shop .r-shopCard__heading:after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #7a0;
    border-right: 2px solid #7a0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 15px;
    top: 15px;
}

.contents.shop .r-shopCard__headingLink{
  color: #1ea63a;
  text-decoration: none;
}

/* 画像＋情報（左 画像 / 右 テーブル） */
.contents.shop .r-shopCard__grid{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 14px;
}

/* 画像 */
.contents.shop .r-shopCard__thumb{
  display: block;
  background: #f5f5f5;
}

.contents.shop .r-shopCard__thumb img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}

/* アイコン行（仮枠） */
.contents.shop .r-shopIcons{
  list-style: none;
  display: flex;
  gap: 6px;
  padding: 8px 0 0;
  margin: 0;
}

.contents.shop .r-shopIcons__item{
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 10px;
  line-height: 1;
  background: #fff;
}

.contents.shop .r-shopIcons__item span{
  opacity: .55; /* 仮表示 */
}

/* 情報テーブル（点線区切り） */
.contents.shop .r-shopTable{
  margin: 0;
}

.contents.shop .r-shopTable__row{
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dotted rgba(0,0,0,.35);
}

.contents.shop .r-shopTable__row:first-child{
  padding-top: 2px;
}

.contents.shop .r-shopTable__row:last-child{
  border-bottom: none;
  padding-bottom: 2px;
}

.contents.shop .r-shopTable__row dt{
  font-weight: 800;
}

.contents.shop .r-shopTable__row dd{
  margin: 0;
  font-weight: normal;
}

.contents.shop .r-shopTable__row .map_link{
  display: block;
  text-decoration: underline;
}

.contents.shop .r-shopTel{
  text-decoration: none;
}

.mv-text__cta-btn {
  /* width: 100%; */
  width: 208px;
  height: 50px;
  margin-top: 0px;
  padding: 5px;
  position: relative;
  border: 4px solid #29d585;
  border-radius: 60px;
  font-size: 20px;
}
.mv-text__cta-btn a {
  width: 100%;
  height: 100%;
  border-radius: 60px;
  background: linear-gradient(70deg, rgb(44, 220, 135) 0%, rgb(26, 172, 120) 50%, rgb(196, 255, 102) 100%);
  background-position: 0% 50%;
  background-size: 200% auto;
  display: flex;
  align-items: center;
  color: #fff;
  transition: 0.3s ease;
  position: relative;
}
.mv-text__cta-btn a:hover {
  background-position: 70% 50%;
}
.mv-text__cta-btn a:hover .arrow {
  transform: rotate(360deg);
}
.mv-text__cta-btn a .arrow {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 12px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.mv-text__cta-btn a .arrow .fas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ea3329;
  font-size: 28px;
}
.mv-text__cta-btn a span {
  width: 100%;
  text-align: center;
  position: relative;
}
.mv-text__cta-btn a .web-reserve-text {
  padding-left: 30px;
  font-weight: bold;
  font-size: 16px;
}

/* 右側（薄いグレー背景のカラム） */
.contents.shop .r-shopCard__side{
  background: rgba(0,0,0,.04);
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  flex: 0 0 230px;
}

/* 電話枠 */
.contents.shop .r-shopCallout{
  background: #fff;
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
}

.contents.shop .r-shopCallout__label{
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(0,0,0,.70);
  line-height: 1.35;
}

.contents.shop .r-shopCallout__tel{
  display: inline-block;
  font-weight: 900;
  font-size: 26px;
  text-decoration: none;
  color: #1ea63a;
  line-height: 1.1;
}

/* ボタン */
.contents.shop .r-shopBtns{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contents.shop .r-shopBtn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  padding: 10px 34px 10px 14px; /* 右の矢印分 */
  text-align: center;
  line-height: 1.2;
}

/* 右端の矢印（▶相当） */
.contents.shop .r-shopBtn::after{
  content: "▶";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: .95;
}

/* 緑：WEB予約 / オレンジ：MAP */
.contents.shop .r-shopBtn--reserve{
  background: #4caf50;
}

.contents.shop .r-shopBtn--map{
  background: #e58b2c;
}

/* =========================
  SP：縦積み（見やすさ優先）
========================= */
@media screen and (max-width: 768px){
  .contents.shop .r-shopCard{
    grid-template-columns: 1fr;
  }

  .contents.shop .r-shopCard__side{
    padding-top: 0;
    background: transparent;
  }

  .contents.shop .r-shopCard__grid{
    grid-template-columns: 1fr;
  }

  .contents.shop .r-shopCard__thumb img{
    border-radius: 6px;
  }

  .contents.shop .r-shopCallout{
    background:rgba(0,0,0,.04);
  }

  .contents.shop .r-shopBtn{
    min-height: 56px;
  }
}

@media (max-width: 768px) {
}

.contents section .r-shopBtns p{
  margin-bottom: 0;
  font-weight: 600;
}

/* サービスアイコン：画像で表示 */
.contents.shop .r-shopIcons{
  list-style: none;
  display: flex;
  gap: 6px;
  padding: 8px 0 0;
  margin: 0;
}

/* .contents.shop .r-shopIcons__item{
  width: 34px;
  height: 28px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: #fff;
  overflow: hidden;
} */

.contents.shop .r-shopIcons__item img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btn_orange a,
.btn_green01 a{
  width: auto !important;
}

.pc{
  display: block;
}
.sp{
  display: none;
}

.area-wrap h3{
  position: relative;
  top: 0;
}

@media (max-width: 768px) {
  .area-wrap{
    padding-top:20px;
  }
  .contents section.box01{
    padding: 0px 15px 15px !important;
  }
  .contents.shop .r-shopAreaTitle{
    font-size: 20px;
  }
  .contents.shop .r-shopCard{
    box-shadow: none;
    padding: 0;
    flex-direction: column;
  }
  .contents.shop .r-shopCard__side{
    padding: 0;
    flex: 0 0 auto;
    width: 100%;
  }
  .contents.shop .r-shopBtns{
    display: block;
    justify-content: space-around;
    flex-direction: row;
  }
  .contents.shop .r-shopBtns p{
    flex: 0 0 47%;
  }
  .btn_orange a,
  .btn_green01 a{
    font-size: 1.3rem;
  }
  .contents.shop .r-shopCallout__label{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
  }
  .contents.shop .r-shopCallout__tel{
    font-size: 24px;
  }
  .pc{
    display: none !important;
  }
  .sp{
    display: block !important;
  }

  .mv-text__cta-btn {
    width: auto;
  }

}
