.terms_block{
    dl{
        width: 100%;
        display: flex;
        gap: 20px;
        dt{
            border-left: 7px solid #E95205;
            padding: 0.5em 1em;
            box-sizing: border-box;
            text-align: left;
            letter-spacing: 0.1em;
            font-weight: bold;
            color: #E95205;
        }
        dd{
            padding: 0.5em 1em;
            box-sizing: border-box;
            text-align: left;
            font-size: 14px;
        }
    }
}

@media screen and (max-width: 740px) {
.terms_block{
    dl{
        dt{
            font-size: 14px;
        }
        dd{
            font-size: 12px;
        }
    }
}
}



/* 鳴尾浜告知 */
.opening-card {
  position: fixed;
  top: 56%;
  right: -42px;
  transform: translateY(-50%);
  z-index: 9999;
  width: 340px;
  transition: right 0.35s ease, transform 0.35s ease;
  animation: openingCardPulse 2.8s ease-in-out infinite;
}

.opening-card:hover {
  right: 0;
  transform: translateY(-50%) translateX(-4px);
}

.opening-card__link {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #1c2140 0%, #2a356b 100%);
  border-left: 6px solid #ef6c00;
  border-radius: 20px 0 0 20px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.opening-card__link::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.opening-card__inner {
  padding: 22px 24px 24px;
}

/* [NEW] + 日付 */
.opening-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  flex-wrap: wrap;
}

.opening-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ef6c00;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(239, 108, 0, 0.35);
  white-space: nowrap;
  animation: badgeGlow 1.8s ease-in-out infinite;
}

.opening-card__date {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #ffd7b2;
  white-space: nowrap;
}

/* タイトルまわり */
.opening-card__titleWrap {
  margin: 0 0 18px;
}

.opening-card__titleMain {
  margin: 0;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.opening-card__titleSub {
  margin: 6px 0 0;
  font-size: 26px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
}

.opening-card__notice {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: rgba(255, 251, 0, 0.82);
  font-weight: bold;
}

/* ボタン */
.opening-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1c2140;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.opening-card__cta::after {
  content: "→";
  font-size: 14px;
}

.opening-card__link:hover .opening-card__cta {
  transform: translateX(2px);
}

/* 閉じるボタン */
.opening-card__close {
  position: absolute;
  top: 12px;
  right: 48px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.opening-card__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ふわっと軽く動かす */
@keyframes openingCardPulse {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-5px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}

/* NEWバッジを少し光らせる */
@keyframes badgeGlow {
  0% {
    box-shadow: 0 0 0 rgba(239, 108, 0, 0);
  }
  50% {
    box-shadow: 0 0 16px rgba(239, 108, 0, 0.35);
  }
  100% {
    box-shadow: 0 0 0 rgba(239, 108, 0, 0);
  }
}

/* タブレット */
@media screen and (max-width: 1024px) {
  .opening-card {
    width: 300px;
  }

  .opening-card__titleMain {
    font-size: 36px;
  }

  .opening-card__titleSub {
    font-size: 22px;
  }
}

/* スマホ */
@media screen and (max-width: 767px) {
  .opening-card {
    top: auto;
    right: 12px;
    left: 12px;
    bottom: 16px;
    width: auto;
    transform: none;
    animation: none;
  }

  .opening-card:hover {
    right: 12px;
    transform: none;
  }

  .opening-card__link {
    border-radius: 16px;
  }

  .opening-card__inner {
    padding: 18px 18px 18px;
  }

  .opening-card__meta {
    gap: 8px;
    margin-bottom: 14px;
  }

  .opening-card__badge {
    font-size: 11px;
    padding: 5px 10px;
  }

  .opening-card__date {
    font-size: 13px;
  }

  .opening-card__titleMain {
    font-size: 32px;
    line-height: 1.05;
    text-align: left;
    padding: 0;
  }

  .opening-card__titleSub {
    margin-top: 4px;
    font-size: 20px;
  }

  .opening-card__notice {
    margin-top: 10px;
    font-size: 13px;
  }

  .opening-card__cta {
    font-size: 13px;
    padding: 10px 16px;
  }

  .opening-card__close {
    top: 10px;
    right: 10px;
  }
}