@charset 'UTF-8';
section {
  padding-top: 15px;
}
strong {
  color: rgb(212, 78, 16); /* 任意の色に変更 */
}
.mannaka {
  text-align: center;
  margin-top: 10px;
}
.clear-img {
  width: 20px;
  height: 20px;
}
/* 電光掲示板 */
.slide-sample {
  margin : 23px auto;
  width : 800px;
  overflow : hidden;
  background-color: #38332e; /*掲示板の背景色*/
  border: 3px solid #757575;
}

.slide-sample ul{
  display : inline-block;
  margin: 0;
  padding-left: 100%;
  white-space : nowrap;
  animation : SlideSample 24s linear infinite;
}

.slide-sample ul li{
  display:inline;
  margin: 0 80px 0 0;
  color: #fdfceb;
  font-size: 32px;
  letter-spacing: .12em; /*文字の間隔*/
  text-shadow: 0 0 6px; /*文字のぼかし*/
}

@keyframes SlideSample{
  0% { transform: translateX(0)}
  100% { transform: translateX(-100%)}
}

/* ボックス全体のレイアウト調整 ↓ */
.box{
  display: flex;
  padding: 10px 20px;
  justify-content: flex-start;
  width: 1000px;
  background-color: #7a7a7a;
  margin: 0px 0px 10px 0px;
}

/* 指定席ボックスのデザイン ↓ */
.left-box{
  margin : 23px auto;
  width : 160px;
  background-color: #38332e;
  border: 3px solid #757575;
}
.left-box p {
  margin: 0 auto;
  color: #f4b3c2;
  font-size: 20px;
  letter-spacing: .08em;
  text-shadow: 0 0 6px;
  line-height: 0.8;
  padding-top: 10px;
  text-align: center;
}
.left-box p span{
  font-size: 12px;
}
.slide-sample ul .point {
  color: #f4b3c2; /* 任意の色に変更 */
}
.slide-sample ul .top {
  color: #89c3eb; /* 任意の色に変更 */
}
/* lightbox */
.thumbnails {
  display: flex;
  flex-wrap: wrap; /* 画像が画面幅を超える場合に折り返す */
}
.thumbnails a {
  margin: 5px; /* 画像間の余白を設定 */
}
.b_color {
  background-color: rgba(16, 21, 90, 1);
  color:#fdfceb;
}

.l_text {
  color: #aa4c8f;
}