@charset "UTF-8";

/* スクロールダウン */
.scroll {
 position: absolute;
 right: 50%;
 bottom: 80px;
 writing-mode: vertical-rl;
 z-index: 999;
}

@media screen and (max-width: 767px) {
 .scroll,
 .scroll.fadeout {
  display: none;
 }
}

.scroll a,
.scroll a:hover {
 position: absolute;
 left: 10px;
 top: 5px;
 color: #fff;
 font-size: 0.8rem;
}

/* フェードアウト */
.scroll.fadeout {
 opacity: 0;
}

/* 線のアニメーション部分 */
.scroll::before {
 animation: scroll 2s infinite;
 background-color: #fff;
 bottom: -80px;
 content: "";
 height: 75px;
 left: 0;
 margin: auto;
 position: absolute;
 right: 0;
 width: 1px;
}

/* 線のアニメーション */
@keyframes scroll {
 0% {
  transform: scale(1, 0);
  transform-origin: 0 0;
 }

 50% {
  transform: scale(1, 1);
  transform-origin: 0 0;
 }

 51% {
  transform: scale(1, 1);
  transform-origin: 0 100%;
 }

 100% {
  transform: scale(1, 0);
  transform-origin: 0 100%;
 }
}


/* お知らせ一覧 */
.wp-show-posts {
 width: 100%;
 max-width: 900px;
 margin: 0 auto;
}

.wp-show-posts-single {
 margin-bottom: 0 !important;
 padding: 1rem 1rem 0 1rem;
 border-top: solid 1px #ccc;
 border-left: solid 1px #ccc;
 border-right: solid 1px #ccc;
 background-color: #fff;
}

.wp-show-posts-single:last-child {
 border-bottom: solid 1px #ccc;
}

.wp-show-posts-inner {
 display: flex;
 flex-direction: row-reverse;
 justify-content: flex-end;
}

.wp-show-posts .wp-show-posts-entry-title {
 margin-left: 1rem;
 font-size: 1.2rem;
 font-weight: normal;
}

.wp-show-posts-entry-meta {
 margin-top: 0.5rem;
}

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

 time,
 .wp-show-posts .wp-show-posts-entry-title {
  font-size: 15px;
  padding-top: 5px;
  text-align: left;
 }
}

/* 「貸切バスラインアップ」スニペットの「スターペガサス23人乗り特設ページ」ボタンを非表示 */
.design_button:has(.go_pegasus) {
 display: none;
}