body {
  font-family: 'Noto Sans', sans-serif;
}


.footer .icon-link {
    font-size: 25px;
    color: #000;
}

.link-block a {
    margin-top: 5px;
    margin-bottom: 5px;
}

.dnerf {
  font-variant: small-caps;
}


.teaser .hero-body {
  padding-top: 0;
  padding-bottom: 3rem;
}

.teaser {
  font-family: 'Google Sans', sans-serif;
}


.publication-title {
}

.publication-banner {
  max-height: parent;

}

.publication-banner video {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  object-fit: fit;
}

.publication-header .hero-body {
}

.publication-title {
    font-family: 'Google Sans', sans-serif;
}

.publication-authors {
    font-family: 'Google Sans', sans-serif;
}

.publication-venue {
    color: #555;
    width: fit-content;
    font-weight: bold;
}

.publication-awards {
    color: #ff3860;
    width: fit-content;
    font-weight: bolder;
}

.publication-authors {
}

.publication-authors a {
   color: hsl(204, 86%, 53%) !important;
}

.publication-authors a:hover {
    text-decoration: underline;
}

.author-block {
  display: inline-block;
}

.publication-banner img {
}

.publication-authors {
  /*color: #4286f4;*/
}

.publication-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;

    overflow: hidden;
    border-radius: 10px !important;
}

.publication-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.publication-body img {
}



.slider-pagination .slider-page {
  background: #000000;
}

.eql-cntrb { 
  font-size: smaller;
}


.video-container {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}

.video-box video {
  width: 100%;
  height: auto;
  object-fit: cover;  /* 動画のアスペクト比を維持しながら、ボックス全体に表示 */
}

.center-image {
  display: block;
  margin: 0 auto;
}

.custom_slider {
  position: relative;
  /* width: 100vw;
  height: 100vh; */
  width: 100%;
  height: auto;
  max-width: 800px;
  overflow: hidden;  /* カルーセル内のコンテンツは隠す */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.w-slider-mask {
  display: flex;
  transition: transform 800ms ease;
  width: 1000%;
}

.slide {
  /* width: 100vw;
  height: 100vh; */
  width: 100%;
  height: auto;
  flex-shrink: 0;
  margin: 0 auto;
}

.video_class video {
  /* width: 100%;
  height: 100%; */
  width: 100%;
  height: auto;
  max-width: 800px;
  object-fit: cover;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  cursor: pointer;
  z-index: 1000;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

/* スクロール可能なページ全体に対応 */
body {
  overflow-y: auto;  /* 縦方向にスクロールできるように */
  overflow-x: hidden;  /* 横スクロールを無効化 */
}

/* 画像と動画に共通のスタイルを適用 */
.blend-img-background {
  width: 100%;          /* 親要素の幅に対して100% */
  max-width: 800px;      /* 最大幅を800pxに制限 */
  height: auto;          /* アスペクト比を維持 */
}


.dots-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem; /* ドットとスライダーの間のスペース */
}

.dot {
  width: 10px; /* ドットの幅 */
  height: 10px; /* ドットの高さ */
  border-radius: 50%; /* 丸くする */
  background-color: black; /* 黒色 */
  margin: 0 5px; /* ドットの間のスペース */
  opacity: 0.5; /* 初期の透明度 */
  transition: opacity 0.3s; /* 透明度の変化にアニメーション */
}
.active {
  opacity: 1; /* アクティブなドットは完全に表示 */
  width: 13px;
  height: 13px;
}