@charset "UTF-8";

/* MAP用 */

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  /* font-family: "FP-ヒラギノUD明朝 StdN W4",FP-HiraginoUDSerifStdN-W4,sans-serif; */
}
#map {
  flex: 1;
  border: none;
}


/* 基本装飾 */
section.pg_menu {
  text-align: right;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  color: inherit;
}
a:hover {
  text-decoration: none;
}

*, *:before, *:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
ol, ul {
  list-style: none;
}

/* 左から出てくるメニュー */

.cp_offcm04 {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-block;
}

/* menu */
.cp_offcm04 .pg_cp_menu {
  position: fixed;
  top: 0;
  left: -100vw;
  width: 360px;
  height: 100%;
  cursor: pointer;
  -webkit-transition: 0.53s transform;
          transition: 0.53s transform;
  -webkit-transition-timing-function: cubic-bezier(.38,.52,.23,.99);
          transition-timing-function: cubic-bezier(.38,.52,.23,.99);
  background-color: #EBFFB7;
  opacity: 0.9;
}

.cp_offcm04 #cp_toggle04 {
  position: absolute;
  display: none;
  opacity: 0;
}
.cp_offcm04 #cp_toggle04:checked ~ .pg_cp_menu {
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
}
/* menu toggle */
.cp_offcm04 #cp_toggle04 ~ label {
  display: block;
  padding: 0.5em;
  cursor: pointer;
  -webkit-transition: 0.5s transform;
          transition: 0.5s transform;
  -webkit-transition-timing-function: cubic-bezier(.61,-0.38,.37,1.27);
          transition-timing-function: cubic-bezier(.61,-0.38,.37,1.27);
  text-align: center;
  color: #333333;
}
.cp_offcm04 #cp_toggle04:checked ~ label {
  -webkit-transform: translateX(360px);
          transform: translateX(360px);
}
.cp_offcm04 #cp_toggle04 ~ label::before {
  font-family: 'FontAwesome';
  content: 'ひらく';
  font-size: 1.2em;
  background: #fff;
  padding: -1px;
  display: block;
  padding: 5px;
}
.cp_offcm04 #cp_toggle04:checked ~ label::before {
  content: 'かくす';
  background: #fff;
  padding: -1px;
  display: block;
  padding: 5px;
}

/* マップ情報 */
.pg_map-info {
  padding: 15px 15px 0;
  position: relative;
}
.pg_map-info__title-image {
  width: 165px;
  display: block;
}
.pg_map-info__now-area {
  text-align: left;
  margin: 10px 0 0;
  font-size: 13px;
  color: #000;
}
.pg_map-info__now-theme {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 13px;
  color: #000;
}

/* アコーディオン */
.pg_accordion {
  margin-right: 5px;
}
.pg_accordion-list {
  background: #fff;
  padding: 10px 10px 10px 30px;
  text-align: left;
  margin-right: 15px;
}

/* 下部メニュー */
.pg_under-menu {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0 25px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.pg_under-menu-list {
  width: 27%;
  text-align: center;
  margin: 10px 0;
}
.pg_under-menu-list__link {
  position: relative;
  padding: 10px 0;
  background: #fff;
  border: 2px solid #000;
  color: #000;
  display: block;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1em;
}
.pg_under-menu-list__link:hover {
  background: var(--common-buttonBackFirstColor, #C8FEAF);
  color: #000;
  border-color: #000;
}
.pg_under-menu-list__link:after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 105%;
  height: 108%;
  content: '';
  border: 2px solid #000;
  z-index: -1;
  border-radius: 10px;
  background: #fff;
}

header {
  position: fixed;
  width: 100%;
  z-index: 9999;
  background: #fff;
}
header p {
  margin: 0;
  display: inline;
}

/* バナー本体 */
.news-banner {
  display: block;
  height: 30px;
  width: 100%;
  background-color: #30FFEB;
  overflow: hidden;
  border-bottom: solid 3px;
  border-color: #000;
}

/* バナー内コンテンツ */
.news-banner__content {
  display: inline-block;
  color: #000;
  line-height: 30px;
  padding-left: 100%;
  white-space: nowrap;
  animation: animate-banner 20s linear infinite;
}

/* バナー内の要素をすべて選択 */
.news-banner__content > * {
  display: inline-block;
}

/* 横にスクロールさせるアニメーション */
@keyframes animate-banner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
