/*=======================================================
==========================================================
　　　　　　　　　　　　　SHOP CSS
==========================================================
========================================================*/

/* mainのz-indexを上書き（ci-style.cssの!importantに対抗） */
main {
  z-index: 1 !important;
}

/* ヘッダーロゴ（左上） */
.header__inner h1 a {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  text-decoration: none;
  color: inherit;
}
.header__logo {
  display: block;
  width: auto;
  height: 40px;
}
.header__logo-text {
  font-family: 'en';
  letter-spacing: .1em;
}

/* 店舗カード */
.shop-card {
  background: transparent;
  border: 1px solid rgba(255, 188, 30, 0.3);
  border-radius: 8px;
  padding: 2rem 2.5rem;
  margin: 3rem 0 0;
}
.shop-card:first-child {
  margin-top: 2rem;
}

/* 店舗名 */
.shop-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #FFBC1E;
  text-align: center;
  margin: 0 0 1.5rem;
  line-height: 1.5;
  letter-spacing: .05em;
  white-space: nowrap;
}

/* 店舗詳細エリア（マップ + 情報テーブル） */
.shop-detail {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
}

/* Google Map */
.shop-map {
  flex: 1;
  min-width: 0;
  border-radius: 6px;
  overflow: hidden;
}
.shop-map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border-radius: 6px;
}

/* 店舗情報テーブル */
.shop-info {
  flex: 1;
  min-width: 0;
}
.shop-table {
  width: 100%;
  border-collapse: collapse;
}
.shop-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.shop-table tr:last-child {
  border-bottom: none;
}
.shop-table th {
  color: #FFBC1E;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: left;
  padding: .8em .8em .8em 0;
  white-space: nowrap;
  vertical-align: top;
  width: 8em;
}
.shop-table td {
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  padding: .8em 0;
  line-height: 1.7;
  vertical-align: top;
}
.shop-table td a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: .2em;
  transition: color 0.3s;
}
.shop-table td a:hover {
  color: #FFBC1E;
}
/* 営業時間などの補足テキスト */
.shop-note {
  display: inline-block;
  color: #B5B5B5;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: .3em;
}

/* SNS / Site リンク */
.shop-links {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.shop-links tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.shop-links tr:last-child {
  border-bottom: none;
}
.shop-links th {
  color: #FFBC1E;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: left;
  padding: 1.2em 1em 1.2em 0;
  white-space: nowrap;
  vertical-align: middle;
  width: 9em;
}
.shop-links td {
  padding: 1.2em 0;
  vertical-align: middle;
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  align-items: center;
}
.shop-links td a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
  background: #fff;
  border-radius: 6px;
  padding: .4em .7em;
  height: 44px;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.shop-links td a:hover {
  opacity: .85;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}
.shop-links td a img {
  filter: contrast(1.05);
}
.shop-links td a img {
  display: block;
  height: 26px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
/* Review Site / Gourmet Site はロゴサイズを揃えるため固定サイズタイル */
.shop-links tr:nth-child(2) td a,
.shop-links tr:nth-child(3) td a {
  width: 110px;
  height: 48px;
}
.shop-links tr:nth-child(2) td a img,
.shop-links tr:nth-child(3) td a img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}
/* Font Awesome アイコン（ロゴ画像がないSNS用） */
.shop-links td a.link-fa {
  width: 40px;
}
.shop-links td a.link-fa i {
  font-size: 3rem;
  line-height: 1;
}
.shop-links td a.link-fa .fa-instagram {
  background: radial-gradient(circle at 30% 110%, #FED373 0%, #F15245 45%, #D92E7F 60%, #9B36B7 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 準備中リンク（クリック不可の見た目） */
.shop-links td a.is-coming-soon {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  position: relative;
}
.shop-links td a.is-coming-soon::after {
  content: "準備中";
  position: absolute;
  bottom: -2em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  color: #B5B5B5;
  white-space: nowrap;
}


/*=======================================================
==========================================================
　　　　　　　　　　　　　PC only
==========================================================
========================================================*/
@media screen and (min-width:1023px) {

/* PC: ハンバーガー非表示 */
.drawer__button { display: none !important; }

.shop-detail {
  flex-direction: row;
}
.shop-map iframe {
  height: 280px;
}

}/*=======================================================
==========================================================
  　　　　　　　　　　　　SP only
==========================================================
========================================================*/
@media screen and (max-width:768px) {

/* SP: ヘッダーロゴ */
.header__logo {
  height: 38px;
}
.header__inner h1 {
  font-size: 18px;
}

.shop-card {
  padding: 1.5rem 1rem;
  margin: 2rem 0 0;
}
.shop-card:first-child {
  margin-top: 1.5rem;
}
.shop-name {
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  margin: 0 0 1rem;
  letter-spacing: .02em;
}
.shop-detail {
  flex-direction: column;
  gap: 1.2rem;
}
.shop-map iframe {
  height: 220px;
}
.shop-table th {
  font-size: 1.2rem;
  width: 7em;
  padding: .6em .5em .6em 0;
}
.shop-table td {
  font-size: 1.2rem;
  padding: .6em 0;
}
.shop-note {
  font-size: 1rem;
}
/* SP: SNS/Site リンク */
.shop-links {
  margin-top: 1.5rem;
}
.shop-links th {
  font-size: 1.1rem;
  width: 7em;
  padding: 1em .5em 1em 0;
}
.shop-links td {
  padding: 1em 0;
  gap: .8rem .8rem;
}
.shop-links td a {
  height: 40px;
}
.shop-links td a img {
  height: 22px;
  max-width: 100px;
}
.shop-links td a.link-fa {
  width: 40px;
}
.shop-links td a.link-fa i {
  font-size: 2.8rem;
}
/* SP: Review Site / Gourmet Site 固定サイズ（タッチターゲット確保） */
.shop-links tr:nth-child(2) td a,
.shop-links tr:nth-child(3) td a {
  width: 88px;
  height: 44px;
}

}/*=======================================================
==========================================================
  　　　　　　　　　　　　Ipad only
==========================================================
========================================================*/
@media screen and (min-width:768px) and ( max-width:1023px) {

.shop-card {
  padding: 1.8rem 2rem;
}
.shop-detail {
  flex-direction: row;
  gap: 1.5rem;
}
.shop-map iframe {
  height: 260px;
}
/* iPad: SNS/Site リンク */
.shop-links td {
  gap: 1rem 1.2rem;
}
.shop-links td a {
  height: 36px;
}
.shop-links td a img {
  height: 22px;
  max-width: 120px;
}
/* iPad: Review Site / Gourmet Site 固定サイズ */
.shop-links tr:nth-child(2) td a,
.shop-links tr:nth-child(3) td a {
  width: 95px;
  height: 42px;
}

}/*=======================================================
==========================================================
　　　　　　　　　　　　　共通コード
==========================================================
========================================================*/
