.entry_img_a01 {
  width: 80%;
  margin: 2rem auto;
  text-align: center;
}
.entry_img_a01:hover {
  opacity: 0.7;
}

.icon--phone--white--info {
  font-size: 0.8rem;
  line-height: 0.1rem;
}

#detail .nav_foot .nav_buttons .nav_button.favorite {
  display: grid;
  place-items: center;
}

#detail .nav_foot .nav_buttons .nav_button.map, #detail .nav_foot .nav_buttons .nav_button.tel {
  display: grid;
  place-items: center;
}

/* ①全体のデザイン（モバイルファースト） */
.yuasobi_article_contents{
  max-width: 960px;
  margin: 0 auto;
  line-height: 2;
  color: var(--bs-body-color);
  box-sizing: border-box;
  letter-spacing: 0.04em;
}

.yuasobi_article_contents p{
  line-height: 2;
}

  /* ③H2のデザイン */
.yuasobi_article_contents h2{
  font-size: clamp(1rem, .8rem + 1vw, var(--font--x-large));
  width: 100%;
  font-weight: 700;
  color: rgb(var(--accent-brown--rgb));
  margin: 0 0 1rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgb(var(--light-gray--rgb));
}

.yuasobi_article_contents h2:before {
    content: """""""";
    margin-right: .5rem;
    border-left: 3px solid rgb(var(--accent-brown--rgb));
}

  /* ④マーカー、強調文字のデザイン */
.yuasobi_article_contents mark{
  background-color: #fff6cc;
  padding: 0.15em 0.3em;
  border-radius: 3px;
}

.yuasobi_article_contents span{
  color: #c0392b;
  font-weight: bold;
}

  /* ⑤画像のデザイン */
.yuasobi-img {
    width: 90%;
    border-radius: 8px;
    height: auto;
    display: block;
    margin: 1rem auto;
}

/* ⑥ulのデザイン */
.yuasobi_article__li{
  background: #f9f7f4;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.yuasobi_article__li li{
  margin-bottom: 0.8rem;
}


/* ⑦コメント吹き出しのデザイン */
.balloon-quote-moririn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin: 2rem 0;
}

.balloon-quote-moririn img {
    width: 40px;
}

.balloon-quote-moririn .speech {
    position: relative;
    background: #f6f6f6;
    padding: 0.8rem;
}

.balloon-quote-moririn .speaker {
    font-size: 0.7rem;
    color: #666;
    margin-top: 0.1rem;
}

/* ⑧dlのデザイン */
.yuasobi_article__dl{
  background: #f9f7f4;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.yuasobi_article__dl dt{
  font-weight: bold;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.yuasobi_article__dl dd{
  margin: 0.3rem 0 1rem 0.5rem;
}



/*  PC・タブレット向けのスタイル */
@media screen and (min-width: 768px) {
  .selector {
    font-size: 18px;
    padding: 2rem;
  }
/* ▼ テーブル（記事内限定）のスタイル */
.yuasobi_article_contents table{
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  line-height: inherit;       /* 全体と同じ 2 */
  letter-spacing: inherit;    /* 全体と同じ 0.04em */
  font-size: 0.95rem;
}

/*— ヘッダー行だけ背景色 —*/
.yuasobi_article_contents thead th{
  background: #f5f5f5;        /* 好みで調整可 */
  font-weight: 700;
  color: rgb(var(--bs-body-color));
}

/* 罫線・余白共通 */
.yuasobi_article_contents th,
.yuasobi_article_contents td{
  border: 1px solid #ddd;
  padding: 0.75rem 0.6rem;
  text-align: left;
  vertical-align: top;
}
}


/* PC幅で文字サイズ微調整（任意） */
@media screen and (min-width: 768px){
  .yuasobi_article_contents table{
    font-size: 1rem;
  }
}

/* モバイル幅でも罫線を死守 */
@media (max-width: 767px){
  .yuasobi_article_contents table,
  .yuasobi_article_contents th,
  .yuasobi_article_contents td{
    border: 1px solid #ddd !important;   /* 罫線を強制 */
    border-collapse: collapse !important;
    padding: 5px;
  }
  .yuasobi_article_contents thead{
    background: #f5f5f5;
    font-weight: 700;
    color: rgb(var(--bs-body-color));
  }
}
