@charset "UTF-8";
.noto-sans {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.jost, .page_nav ol, .date {
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}

.reem-kufi {
  font-family: "Reem Kufi", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* ▼▼▼ お知らせ一覧
======================================================*/
.inner_bg {
  background: url(https://en.dailyservice.co.jp/assets/Expo2025JRWG/img/news/bg.jpg) no-repeat center top/600px;
  overflow: hidden;
  padding-top: 25px;
}

.tab_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  overflow-x: scroll;
  padding: 0 25px 20px 25px;
  margin-bottom: 25px;
}
.tab_list li {
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  margin-right: 16px;
  color: #D1D1D1;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}
.tab_list li.active {
  color: #0065B1;
  border-color: #0065B1;
}

.tab_article {
  display: none;
}
.tab_article.active {
  display: block;
  padding: 0 25px;
}

.news_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 17px;
}
.news_list li a {
  display: block;
  font-size: 13px;
}
.news_list li a .img {
  width: 100%;
  aspect-ratio: 1/0.6129;
  position: relative;
}
.news_list li a .img::before {
  content: "";
  background-color: #0065B1;
  background-image: url(https://en.dailyservice.co.jp/assets/Expo2025JRWG/img/news/next_wh.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 2;
}
.news_list li a .img img {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.news_list li a:hover {
  opacity: 1;
}
.news_list li a:hover .img::before {
  background-color: #fff;
  background-image: url(https://en.dailyservice.co.jp/assets/Expo2025JRWG/img/news/next.svg);
}
.news_list li a:hover .img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.news_list li.pdf a .img::before {
  content: "PDF";
  background-color: #12B8D7;
  background-image: url(https://en.dailyservice.co.jp/assets/Expo2025JRWG/img/news/icon_dl_wh.svg);
  background-position: right 5px center;
  border-radius: 3px;
  width: 51px;
  height: 18px;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-size: 12px;
  font-family: "Reem Kufi", serif;
  font-weight: 600;
}
.news_list li.pdf a:hover .img::before {
  background-color: #fff;
  background-image: url(https://en.dailyservice.co.jp/assets/Expo2025JRWG/img/news/icon_dl.svg);
  color: #12B8D7;
}
.news_list .img {
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.news_list span {
  display: inline-block;
  vertical-align: text-top;
  margin-right: 10px;
}
.news_list .cat {
  padding: 1px 7px;
  font-size: 10px;
}
.news_list p {
  margin-top: 10px;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 任意の行数を指定 */
}

.date {
  color: #0065B1;
}

.cat {
  background: #E60012;
  border-radius: 20px;
  color: #fff;
  font-weight: 600;
}

.page_nav {
  margin-top: 47px;
  line-height: 1;
}
.page_nav ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  font-weight: bold;
}
.page_nav ol li span, .page_nav ol li a {
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  aspect-ratio: 1/1;
  text-align: center;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
.page_nav ol li span::before, .page_nav ol li a::before {
  content: "";
  border-radius: 50%;
  background: #12B8D7;
  width: calc(100% + 1px);
  aspect-ratio: 1/1;
  position: absolute;
  top: -0.5px;
  left: -0.5px;
  -webkit-transform: scale(0);
          transform: scale(0);
  z-index: -1;
}
.page_nav ol li span:hover, .page_nav ol li a:hover {
  opacity: 1;
  color: #fff;
}
.page_nav ol li span:hover::before, .page_nav ol li a:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.page_nav ol li a {
  border: 0.5px solid #D1D1D1;
  color: #0065B1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page_nav ol li span {
  border-color: #0065B1;
  background: #0065B1;
  color: #fff;
}
.page_nav ol li.preav_arrow a::after, .page_nav ol li.next_arrow a::after {
  content: "";
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
}
.page_nav ol li.preav_arrow a::after {
  background-image: url(https://en.dailyservice.co.jp/assets/Expo2025JRWG/img/news/prev.svg);
}
.page_nav ol li.preav_arrow a:hover::after {
  background-image: url(https://en.dailyservice.co.jp/assets/Expo2025JRWG/img/news/prev_wh.svg);
}
.page_nav ol li.next_arrow a::after {
  background-image: url(https://en.dailyservice.co.jp/assets/Expo2025JRWG/img/news/next.svg);
}
.page_nav ol li.next_arrow a:hover::after {
  background-image: url(https://en.dailyservice.co.jp/assets/Expo2025JRWG/img/news/next_wh.svg);
}

/* お知らせ詳細 */
.detail .inner_bg {
  background: url(https://en.dailyservice.co.jp/assets/Expo2025JRWG/img/news/bg2.jpg) no-repeat center top/600px;
}

.article {
  border-bottom: 1px solid #D1D1D1;
  padding-bottom: 24px;
}
.article > span {
  display: inline-block;
  margin-right: 8px;
}
.article .date {
  font-size: 15px;
}
.article .cat {
  font-size: 11px;
  padding: 2px 9px;
}
.article_ttl {
  margin: 12px 0 30px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}
.article_img {
  margin-bottom: 24px;
  border-radius: 15px;
  overflow: hidden;
}
.article_img img {
  width: 100%;
}
.article p {
  color: #3B3938;
  line-height: 2;
  font-weight: normal;
}
.article a {
  color: #0065B1;
}
.article .link {
  margin-top: 20px;
  font-size: 13px;
  font-weight: normal;
}