/* お知らせ
-------------------------------------------------------------------------*/

@media screen and (width >= 768px) {

  .section-subtitle{
    color: var(--green);
    font-weight: bold;
  }

}

/* 概要 */
.news-dtl{
  width: 100%;
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}
.news-dtl dl{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-dtl dl dt,
.news-dtl dl dd{
  padding: 5px;
}
.news-dtl dl dt{
  width: 18%;
  background-color: #3B3B3B;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
}
.news-dtl dl dd{
  width: 80%;
}

a[target="_blank"]{
  display: inline-block;
  position: relative;
}
a[target="_blank"]::after{
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f35d";
  display: inline-block;
  color: var(--green);
  margin-left: 10px;
}

@media screen and (max-width:767px) {

  .news-dtl dl dt{
    width: 25%;
    font-size: 1.3rem;
  }
  .news-dtl dl dd{
    width: 70%;
  }

}

/* リスト */
.ul-topics{
  width: 100%;
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.ul-topics li{
  width: 100%;
  position: relative;
  padding-left: 25px;
}
.ul-topics li::before{
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0c8";
  position: absolute;
  left: 0;
  color: var(--green);
}
.ul-topics_ttl{
  display: block;
  font-weight: bold;
}

/* メインイメージ */
.hospital-img{
  width: 100%;
  margin: 20px auto 30px;
}
.hospital-img img{
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #ccc;
}

/* ブース */
.booth-img{
  width: 100%;
  margin: 20px auto 0;
}
.booth-img img{
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background-color: #ccc;
  border: 1px solid #ccc;
}

@media screen and (max-width:767px) {

.booth-img{
  overflow-x: hidden;
  overflow-x: scroll;
}
.booth-img::before{
  content: "※横にスクロールします。";
  margin-bottom: 10px;
  display: block;
  color: #ff0000;
  font-weight: bold;
}
.booth-img img{
  width: 800px;
}

}