/* ヘッダー店名のテキスト色 */
#header .header_info .shop {
    color: #ffffff;
}

/* ヘッダー営業時間のテキスト色 */
#header .header_info .time {
    color: #ffffff;
}

/* ヘッダー電話番号のテキスト色 */
#header .header_info .tel {
    color: #ff66c4;
}

/* プロフィールタイプアイコンの色変更 */

#topbox #profdata .type li, #option_box li, .gallist li article .type li {
    border-color: #ff66c4; /* ←枠線の色 */
    color: #ff66c4; /* ←文字の色 */
    background-color: black; /* 背景色を黒に */
}


/* テキストの色を白に変更 */
body {
    color: white;
}


/* ブラウザ幅600以下のとき背景色を黒に変更 */
@media screen and (max-width: 600px) {
  body {
    background-color: #000000;
  }
}



 /* スマホフッターナビの背景色を変更 */
#bottomNavi.sp {
  background-color: rgba(255, 102, 196, 0.8); /* #ff66c4 の色をrgbaで指定、0.8で不透明度80% */
}



/* レビューを6行だけ表示 */
.comment {
  display: -webkit-box;
  -webkit-line-clamp: 6; /* 表示する行数を指定 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* X(Twitter)アイコン色変更 */
.sns .sns02 {
    background-color: #000000; /* ←背景の色 */
}




