#top_information .top_information_container {
  width: 100%;
  margin: 0 auto;
  padding-top: 10px;
}
#top_information .top_information_wrapper {
  background-color: #333;
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
}
#top_information .top_information_wrapper:last-child {
  margin-bottom: 0;
}
#top_information .top_information_wrapper p {
  font-weight: bold;
}
#top_information .top_information_wrapper a {
  color: #fff;
}
#top_information .top_information_wrapper a:hover {
  color: #eee;
}
#top_information .top_information_wrapper p.center {
  text-align: center;
}

#top_information .top_information_wrapper .pc_text {
  font-size: 14px;
}
#top_information .top_information_wrapper .pc_text .padding {
  padding: 15px;
}
#top_information .top_information_wrapper .sp_text {
  font-size: 14px;
  line-height: 20px;
  /* text-align: left; */
  text-align: center;
}
#top_information .top_information_wrapper .sp_text .padding {
  padding: 10px;
}
#top_information .top_information_wrapper .pc_text p {
  font-size: 18px;
}
#top_information .top_information_wrapper .sp_text p {
  font-size: 16px;
}
#top_information a {
  text-decoration: underline;
  color: #000000;
}
#top_information a:hover {
  color: #303030;
}

/* モーダル */
[data-modal="title"] {
  cursor: pointer;
  text-decoration: underline;
  color: #fff;
  display: inline-block;
}
[data-modal="title"]:hover {
  color: #eee;
}
[data-modal="body"] {
  display: none;
}
#top_information .modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.6);
  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;
}
#top_information .modal-content {
  position: relative;
  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;
}
#top_information .modal-box {
  background: #fff;
  max-width: 1020px;
  width: 90vw;
  /* min-height: 30vh; */
  padding: 1rem;
  border-radius: .5rem;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  text-align: left;
}
#top_information .modal-close {
  position: absolute;
  top: -28px;
  right: -28px;
  text-decoration: none;
  border: solid 2px #3a3a3a;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  z-index: 1;
  background-color: #ffffff;
  color: #6e6e6e;
  font-weight: bold;
  cursor: pointer;
  pointer-events: auto;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  #top_information .modal-box {
    max-height: 55vh;
    max-width: 90vw;
    text-align: left;
  }
  #top_information .modal-close {
    top: -23px;
    right: -15px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
/* モーダル用transition */
#top_information .fade-enter-active,
#top_information .fade-leave-active {
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#top_information .fade-enter-from,
#top_information .fade-leave-to {
  opacity: 0;
}
