@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  overflow-x: hidden;
}

.lp_container {
  width: 100%;
}

.lp_container-inner {
  max-width: 500px;
  border-left: 1px solid var(--white);
  border-right: 1px solid var(--white);
  margin: 0 auto;
}

.container {
  margin: 10px;
  padding: 50px 10px;
  text-align: center;
  z-index: 1;
  opacity: 0;
  position: relative;
  border: 1px solid var(--white);
  background-image: url(../../../../images/campaign/dailytarotreading/may2026/frame_u.svg),
    url(../../../../images/campaign/dailytarotreading/may2026/frame_un.svg);
  background-repeat: no-repeat;
  background-position: top, bottom;
  background-size: contain;
  animation: containerFadeIn 2s ease-out forwards;
}

@keyframes containerFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  opacity: 0;
  margin-bottom: 15px;
  animation: titleFadeIn 2.5s ease-out 0.5s forwards;
}

@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lead {
  margin-bottom: 25px;
  color: var(--white);
  font-family: var(--fa-mincho);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 2px rgba(64, 34, 78, 0.5);
  animation: leadFadeIn 2.5s ease-out 1s forwards;
  opacity: 0;
}

@keyframes leadFadeIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}

.expiration {
  margin: 0 0 25px 0;
  padding: 10px 0;
  color: var(--raspberry);
  font-family: var(--fa_hiragino-maru-gothic);
  font-style: normal;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
  background-color: var(--white);
  border-radius: 50px;
  text-shadow: none;
}

.expiration p {
  opacity: 1 !important;
}

.expiration p::before {
  display: inline-block;
  content: url(../../../../images/cmn_icon_dia.svg);
  width: 12px;
  height: 12px;
  position: relative;
  top: 1px;
  right: 3px;
}

.expiration p::after {
  display: inline-block;
  content: url(../../../../images/cmn_icon_dia.svg);
  width: 12px;
  height: 12px;
  position: relative;
  top: 1px;
  right: -4px;
}

.expiration .note {
  font-size: 0.7em;
}

.coins-display {
  font-size: 1.5em;
  margin-bottom: 30px;
  padding: 15px;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  border: 2px solid #ddbb80;
}

.game-area {
  margin: 30px 0;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
  flex-wrap: wrap;
  opacity: 0;
  animation: cardsFadeIn 3s ease-out 1.5s forwards;
}

@keyframes cardsFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  width: 130px;
  height: 200px;
  background: linear-gradient(135deg, #40224e, #ab346c, #40224e);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5em;
  border: 1px solid #e0ba7a;
  box-shadow: 0 15px 30px rgba(64, 34, 78, 0.6),
    inset 0 1px 0 rgba(64, 34, 78, 0.1);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px solid rgba(155, 123, 184, 0.3);
  border-radius: 8px;
}

.card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 50px rgba(64, 34, 78, 0.5), 0 0 30px rgba(64, 34, 78, 0.5);
  border-color: #e0ba7a;
}

.card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  animation: mysticalShine 6s infinite;
}

@keyframes mysticalShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }

  100% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
}

.card.flipped {
  background: linear-gradient(135deg, #2d1b4e, #4a2b7a, #6b4a9e);
  animation: mysticalFlip 0.8s ease-in-out;
  box-shadow: 0 0 40px rgba(107, 74, 158, 0.6);
}

.card.winner {
  background: linear-gradient(135deg, #ffd700, #ffed4e, #daa520);
  border-color: #d4af37;
  animation: divineWinner 1.5s ease-in-out;
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
}

.card.middle {
  background: linear-gradient(135deg, #d6e5f0, #e8f1f8, #b8cde0, #9bb8d3);
  border-color: #7a9cc6;
  animation: divineWinner 1.5s ease-in-out;
  box-shadow: 0 0 50px rgba(184, 205, 224, 0.8);
}

.card.loser {
  background: linear-gradient(135deg, #6b4832, #a57e65, #c49a7e, #d4b496);
  border-color: #8b6f5a;
  box-shadow: 0 0 30px rgba(165, 126, 101, 0.6),
    inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.card.unselected {
  opacity: 0.1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

@keyframes mysticalFlip {
  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(90deg) scale(1.1);
  }

  100% {
    transform: rotateY(0deg);
  }
}

@keyframes divineWinner {
  0%,
  100% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.15) rotate(2deg);
  }

  50% {
    transform: scale(1.1) rotate(-1deg);
  }

  75% {
    transform: scale(1.15) rotate(1deg);
  }
}

.result {
  margin: 30px 0;
  font-size: 1.2em;
  font-family: var(--fa-mincho);
  font-weight: 700;
  letter-spacing: 0.05em;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.result.show {
  animation: resultFadeIn 1.5s ease-out forwards;
}

@keyframes resultFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.result.winner {
  color: #d4af37;
  text-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
  animation: divineglow 3s ease-in-out infinite alternate;
}

.result.loser {
  color: #40224e;
}

.result.loser span {
  font-size: 1.6em;
  display: contents;
}

@keyframes divineglow {
  from {
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
    transform: scale(1);
  }

  to {
    text-shadow: 0 0 40px rgba(212, 175, 55, 1);
    transform: scale(1.02);
  }
}

.lp_container button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.lp_container button img {
  width: 100%;
  max-width: 320px;
  display: block;
}

.lp_container button img.shadow {
  filter: drop-shadow(0 10px 15px #130f40);
}

.instructions {
  margin: 25px 0 50px 0;
  font-size: 1em;
  opacity: 0;
  line-height: 1.8;
  color: var(--white);
  font-style: italic;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 2px rgba(64, 34, 78, 0.5);
  animation: instructionsFadeIn 3s ease-out 2s forwards;
}

.instructions_explanation {
  margin: 30px 0 15px 0;
  padding: 5px;
  color: var(--raspberry-dark);
  font-size: 0.8em;
  font-style: normal;
  text-shadow: none;
  text-align: left;
  line-height: 1.6;
  background-color: var(--white);
  border-radius: 10px;
}

.instructions_explanation .box {
  margin: 5px;
  padding: 15px 15px 15px 25px;
}

.instructions_explanation ul {
  list-style: circle;
}

.instructions_grade h2,
.instructions_period h2 {
  margin-bottom: 60px;
  font-style: normal;
  line-height: 1.4;
  text-shadow: none;
  color: #40224e !important;
}

.instructions_grade h2.title-gold::after,
.instructions_period h2.title-gold::after {
  bottom: -110%;
  background-image: url(../../../../images/line-dec-wht.svg) !important;
}

.instructions_grade .box p::before {
  position: relative;
  top: 5px;
  right: 5px;
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(../../../../images/cmn_icon_dia.png) no-repeat;
  background-size: contain;
}

h2.title-gold {
  color: #40224e !important;
}

h2.title-gold::after {
  background-image: url(../../../../images/line-dec-wht.svg);
}

.box {
  margin: 15px;
  padding: 10px 5px;
  border: solid 1px var(--gold);
  outline: solid 2px var(--gold);
  outline-offset: 1px;
  border-radius: 5px;
}

@keyframes instructionsFadeIn {
  from {
    opacity: 1;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .cards-container {
    gap: 20px;
  }

  .card {
    width: 100px;
    height: 150px;
    font-size: 2.5em;
  }

  h1 {
    font-size: 2em;
  }
}

.footer_container {
  margin: 0;
}

.footer_content-recommend {
  text-align: center;
}

.footer_content-recommend .result-table-inner {
  margin-top: 35px;
  padding: 15px;
}

.footer_content-recommend .coinget-btn {
  margin-top: 10px;
}

.footer_content-recommend .thumbnail {
  position: relative;
  margin-bottom: 20px;
}

.footer_content-recommend .flame_circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  margin: auto;
  z-index: 1;
}

.footer_content-recommend .user_photo {
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--white);
}

.footer_content-recommend .prof-more {
  margin-bottom: 25px;
}

.footer_content-recommend .prof-more ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.footer_content-recommend .prof-more ul li {
  flex-grow: 1;
  width: 50%;
  height: 265px;
  box-sizing: border-box;
  align-items: center;
  padding: 15px 0;
  position: relative;
}

.footer_content-recommend .prof-more ul li #btn_area_card {
  top: 80%;
}

.footer_content-recommend
  .prof-more
  ul
  li
  #btn_area_card
  div.btn_status
  a::before {
  background: none;
}

.footer_content-recommend .prof-more .price_tel {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

.footer_content-recommend .prof-more .price_tel p::before {
  display: inline-block;
  content: url(../../../../images/cmn_icon_phone_square.svg);
  width: 18px;
  height: 18px;
  position: relative;
  top: 3px;
  margin: 0 5px 0 0;
}

.footer_content-recommend .prof-more .user_name {
  font-family: var(--fa-mincho);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 0.9;
  margin: 12px 0 5px;
}

.footer_content-recommend .prof-more .btn_prof {
  font-family: var(--fa_hiragino-maru-gothic);
  font-weight: 900;
  font-size: 1.2rem;
  text-align: center;
  color: var(--white);
  background: var(--gradient-status-call);
  outline: solid 1px var(--gold);
  padding: 5px;
  border-radius: 20px;
  margin: 10px auto;
  width: 85%;
}

.footer_content-recommend .prof-more a:link,
.footer_content-recommend .prof-more a:visited,
.footer_content-recommend .prof-more a:hover,
.footer_content-recommend .prof-more a:active {
  color: var(--white);
  text-decoration: none;
}

.footer_container .footer_content-banner {
  margin-bottom: 15px;
}

.footer_container .footer_content-category .section__category {
  padding: 0;
}

/* 星空の背景のスタイル */
.stars {
  position: relative;
  width: 100%;
  background-image: linear-gradient(-45deg, #9b7ba8, #b88ca6, #c58d98, #d9a5ad);
  overflow: hidden;
}

/* 星のスタイル */
.star {
  position: absolute;
  display: block;
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 4px 2px rgba(255, 255, 255, 0.2);
  opacity: 0;
  animation: twinkle 5s infinite;
}

/* 星がキラキラ光るアニメーション */
@keyframes twinkle {
  0% {
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}
