@charset "UTF-8";
/*--------------------------------------------------------------
  Header 
----------------------------------------------------------------*/
#headerWrapper {
  display: block;
  position: fixed;
  z-index: 2;
}

.collapse-header {
  position: fixed;
  z-index: 100;
}
.collapse-header .menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  opacity: 0;
  background: rgba(8, 182, 182, 0.5);
  transition: all 0.5s ease-out;
  overflow: visible;
}
.collapse-header .menu .collapse-nav {
  display: inline-flex;
  margin-right: 100px;
  line-height: 60px;
}
.collapse-header .menu .collapse-nav a {
  position: relative;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-decoration: none;
  font-weight: 700;
  margin-left: 50px;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  transition: all 0.25s ease;
}
.collapse-header .menu .collapse-nav a:hover {
  padding-bottom: 5px;
  border-bottom: 2px solid rgb(255, 255, 255);
}
.collapse-header .menu.open {
  width: 100%;
  opacity: 1;
}
.collapse-header .button-container {
  position: fixed;
  width: 30px;
  height: 22px;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.collapse-header .button-container span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #aaa;
  transition: all 0.35s ease;
}
.collapse-header .button-container .top {
  top: 0px;
}
.collapse-header .button-container:hover .top {
  top: 2px;
}
.collapse-header .button-container.active:hover .top {
  top: 0px;
}
.collapse-header .button-container .middle {
  top: 10px;
}
.collapse-header .button-container .bottom {
  top: 20px;
}
.collapse-header .button-container:hover .bottom {
  top: 18px;
}
.collapse-header .button-container.active:hover .bottom {
  top: 20px;
}
.collapse-header .button-container.active .top {
  background: white;
  transform: translate(0px, 10px) rotate(-405deg);
}
.collapse-header .button-container.active .middle {
  opacity: 0;
}
.collapse-header .button-container.active .bottom {
  background: white;
  transform: translate(0px, -10px) rotate(-495deg);
}

@media screen and (max-width: 575px) {
  .collapse-header .menu .collapse-nav {
    flex-flow: column;
  }
}
.page-news {
  display: block;
  position: fixed;
  top: 0px;
  padding: 0;
  margin: 0;
  left: -100vw;
  width: 100vw;
  height: 100vh;
  background-color: #fcfdfd;
  transition: left 0.6s ease-in-out;
  /*--------------------------------------------------------------
  bulletin 
  ----------------------------------------------------------------*/
  /*--------------------------------------------------------------
  Finance 
  ----------------------------------------------------------------*/
  /*--------------------------------------------------------------
  weather
  ----------------------------------------------------------------*/
  /*--------------------------------------------------------------
  news frame
  ----------------------------------------------------------------*/
  /*--------------------------------------------------------------
  news affiliate frame
  ----------------------------------------------------------------*/
}
.page-news.active {
  left: 0;
}
.page-news .finance-frame {
  display: block;
  position: relative;
  background-color: black;
  font-size: 16px;
  color: #f9f9f9;
  width: 100%;
  height: 30px;
  overflow: hidden;
  z-index: 999;
}
.page-news .finance-frame .bulletin-container {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: black;
  /* 背景色（任意） */
  color: white;
  /* 文字色（任意） */
  height: 40px;
  /* 高さ（調整可） */
  display: flex;
  align-items: center;
}
.page-news .finance-frame .bulletin-message {
  display: block;
  width: auto;
  white-space: nowrap;
  will-change: transform;
  display: inline-block;
  /* 要素の幅をテキストに合わせる */
  white-space: pre;
  /* 連続スペースやタブをそのまま表示 */
}
.page-news .news-main-frame {
  display: block;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}
.page-news .news-main-frame h1 {
  font-size: 20px;
  font-weight: 700;
  /* 上 | 右 | 下 | 左 */
  margin: 0px 0px 8px 0px;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .page-news .news-main-frame h1 {
    margin: 16px 0px 16px 32px;
    font-size: 38px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 8px;
  }
}
.page-news #weatherforecast-today-news {
  display: block;
  position: relative;
  width: 100%;
  height: 160px;
}
.page-news #weatherforecast-today-news .forecast-area {
  position: absolute;
  width: 100%;
  height: 160px;
  z-index: 1;
}
.page-news #weatherforecast-today-news .forecast-area img {
  width: 100px;
}
.page-news #weatherforecast-today-news table {
  width: 100%;
  height: 130px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  border: 0px solid gray;
  background-color: #fdfeff;
  border-radius: 0px;
  height: 160px;
}
.page-news #weatherforecast-today-news td {
  border: 0;
  text-align: center;
  vertical-align: text-top;
  font-size: 1em;
}
.page-news #weatherforecast-today-news td p {
  text-align: center;
}
.page-news #weatherforecast-today-news td img {
  display: inline-block;
  width: 100px;
  height: auto;
}
.page-news #weatherforecast-today-news tr:nth-child(1) {
  max-width: 100%;
  background-color: #c4e7ff;
  font-size: 1em;
}
.page-news #weatherforecast-today-news .red {
  color: red;
}
.page-news #weatherforecast-today-news .blue {
  color: blue;
}
.page-news .news-scroll-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 100vw;
  overflow-x: auto;
  white-space: nowrap;
  cursor: grab;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 2px solid #ccc;
  padding: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.page-news .news-scroll-container .news-button-wrapper {
  display: flex;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}
.page-news .news-scroll-container .news-button-wrapper button {
  padding: 10px 20px;
  font-size: 16px;
  background: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
  min-width: 100px;
}
.page-news #news-frame .news-item table {
  border-color: black;
  font-size: 12px;
  margin-left: 5px;
  margin-right: 10px;
}
.page-news #news-frame .news-item table tbody .tr-first {
  border-top: 1px solid black;
  /* Adjust the color and thickness of the line */
}
.page-news #news-frame .news-item table tbody .tr-first td {
  font-size: 1.5em;
  font-weight: 700;
}
.page-news #news-frame .news-item table tbody td {
  width: 50%;
  /* テキストの最大幅を指定してください */
  overflow: hidden;
  /* 最大幅を超える部分を非表示にする */
  vertical-align: top;
  /* テキストを上詰めに配置 */
  text-align: left;
  font-size: 1.2em;
  /* テキストを左寄せに配置 */
}
.page-news #news-frame .news-item table tbody td a img {
  width: 200px;
  /* 画像の最大幅を親要素に合わせる */
  height: auto;
  /* アスペクト比を維持するために必要 */
  border-width: 1px;
  border-radius: 5px;
  border-color: #4c4d4e;
}
@media screen and (min-width: 768px) {
  .page-news #news-frame .news-item table {
    border-color: black;
    font-size: 20px;
    margin-left: 75px;
    margin-right: 50px;
  }
  .page-news #news-frame .news-item table tbody .tr-first {
    border-top: 1px solid black;
    /* Adjust the color and thickness of the line */
  }
  .page-news #news-frame .news-item table tbody .tr-first td {
    font-size: 2em;
    font-weight: 700;
  }
  .page-news #news-frame .news-item table tbody td {
    margin: 10px;
    width: 50%;
    /* テキストの最大幅を指定してください */
    overflow: hidden;
    /* 最大幅を超える部分を非表示にする */
    vertical-align: top;
    /* テキストを上詰めに配置 */
    text-align: left;
    font-size: 1.8em;
    /* テキストを左寄せに配置 */
  }
  .page-news #news-frame .news-item table tbody td a img {
    width: 500px;
    /* 画像の最大幅を親要素に合わせる */
    height: auto;
    /* アスペクト比を維持するために必要 */
  }
}
.page-news #news-affiliate-frame {
  display: block;
  position: relative;
  width: 100vw;
  height: 120px;
  margin: 0;
  padding: 0;
}
.page-news #news-affiliate-frame .news-affiliate-swiper .swiper-wrapper .swiper-slide {
  display: inline-block;
  position: relative;
  text-align: center;
  align-items: center;
  width: 300px;
  height: 66px;
  background-color: rgba(255, 255, 255, 0.8);
  /* 上 | 右 | 下 | 左 */
  margin: 0px 0px 0px 0px;
  border-radius: 20px;
}
.page-news #news-affiliate-frame .news-affiliate-swiper .swiper-wrapper .swiper-slide img {
  width: 120px;
  height: 110px;
}
.page-news #news-affiliate-frame .news-affiliate-swiper .swiper-wrapper .swiper-slide .tooltip {
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .page-news #news-affiliate-frame .news-affiliate-swiper .swiper-wrapper .swiper-slide img {
    width: 150px;
    height: 140px;
  }
}
.page-news .adsbygoogle-frame {
  width: 100vw;
  min-height: 60px;
  text-align: center;
}

.page-game {
  display: block;
  position: fixed;
  top: 0px;
  padding: 0;
  margin: 0;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background-color: #fcfdfd;
}

#notification-popup {
  display: none;
  position: fixed;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 6000;
  background: #f9fafa;
  height: 100%;
}

#notification-popup button {
  margin: 5px;
  padding: 10px 20px;
  border: none;
  background: #007bff;
  color: #fff;
  cursor: pointer;
}

#notification-popup button.cancel {
  background: #6c757d;
}

/*--------------------------------------------------------------
  search form
--------------------------------------------------------------*/
.wp-block-search__label {
  max-width: 60px;
}

.wp-block-search__button-outside {
  display: flex;
  position: relative;
  justify-content: center;
  /* 水平方向に中央揃え */
  align-items: center;
  /* 垂直方向に中央揃え */
}

.wp-block-search__input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 4px;
  height: 40px;
}

.wp-block-search__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 40px;
  border: none;
  border-radius: 0 3px 3px 0;
  background-color: #00a8ca;
  cursor: pointer;
  text-indent: -9999px; /* テキストを画面外に押し出す */
  white-space: nowrap; /* テキストが改行されないようにする */
  overflow: hidden; /* ボタン内のオーバーフローを隠す */
}

.wp-block-search__button::after {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: "";
}

.wp-block-search__button:hover {
  background-color: #005177;
}/*# sourceMappingURL=style.css.map */