/* 施設詳細ページ-Tooltip */
.tab-stage .d-tooltip-wrap {
  background-color: #EBEBEB;
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin: auto;
  max-width: 1120px;
}
.tab-stage .d-tooltip-wrap .d-tooltip-text {
  color: #757575;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0;
}
.tab-stage .d-tooltip {
  background-color: #fff;
  border: 1px solid #EBEBEB;
  border-radius: 8px;
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.20);
  display: none;
  position: absolute;
  width: 400px;
  max-width: calc(100vw - 32px);
  word-break: break-word;
  white-space: normal;
  z-index: 19;
}
.tab-stage .d-tooltip.is-visible {
  display: block;
}
.tab-stage .d-tooltip-icon {
  background: none;
  margin-left: 3px;
  margin-right: 3px;
  padding: 0;
  position: relative;
  top: 1px;
}
.tab-stage .d-tooltip-icon img {
  vertical-align: bottom;
  height: 20px;
  width: 20px;
}
.tab-stage .d-tooltip-icon img:hover {
  cursor: pointer;
}
.tab-stage .d-tooltip .d-tooltip-content {
  padding: 16px;
}
.tab-stage .d-tooltip .list-asterisk {
  color: #757575;
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.5;
}
.tab-stage .d-tooltip .list-asterisk li {
  margin-left: 1.3em;
  text-indent: -1.3em;
}
.tab-stage .d-tooltip .list-asterisk li::before {
  margin-right: 4px;
}

@media screen and (max-width: 767px){
  .tab-stage .d-tooltip-wrap {
    width: 100%;
  }
  .tab-stage .d-tooltip-wrap .d-tooltip-text {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
    text-align: right;
  }
  .tab-stage .d-tooltip {
    border-color: #EBEBEB;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.20);
    top: 31px;
    left: 16px;
    width: calc(100% - 32px);
    max-width: none;
  }
}