@charset "shift_jis";
/* --------------------------
    all
-------------------------- */
.countdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 1rem;
    margin: 0 auto;
position: relative;
top: 495px;
z-index: 99;

  }
  
  .countdown-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(to right, #f06, #9400d3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .countdown-date {
    margin-bottom: 1.5rem;
    width: 500px;
  }
  
  .countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    padding: 0.75rem;
    width: 200px;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
    font-weight: bold;
    transition: transform 0.3s ease;
  }
  
  .timer-box:hover {
    transform: scale(1.1);
  }
  
  .days-box {
    background-color: #ff4d83;
  }
  
  .hours-box {
    background-color: #ff7133;
  }
  
  .minutes-box {
    background-color: #3ca9d9;
  }
  
  .seconds-box {
    background-color: #6a4dff;
  }
  
  .timer-value {
    font-size: 3em;
  }
  
  .timer-label {
    font-size: 2em;
  }

.main-visual-area {
  height: 980px;
  background-color: #3BC3FF;
  background-size: auto;
  position: relative;
}
.main-visual-area::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 360px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}
h1.main-ttl img {
  max-height: 600px;
  position: absolute;
  top: 280px;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  z-index: 50;
}
.main-visual-area .main-decoration {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}
.fv-icon {
  position: absolute;
  top: -35px;
  right: -1%;
  z-index: 6;
}
.fv-icon img {
  max-width: 285px;
}
.mv_item01 img, .mv_item03 img {
  max-width: 250px;
}
.mv_item02 img {
  max-width: 300px;
}
.mv_item01 {
  position: absolute;
  top: 235px;
  left: -8%;
  z-index: 5;
}
.mv_item02 {
  position: absolute;
  top: 275px;
  left: 84%;
  z-index: 5;
}
.mv_item03 {
  position: absolute;
  top: 27px;
  left: 3%;
  z-index: 4;
}
.hashtag-container {
  position: relative;
  width: 100%;
  top: 480px;
  z-index: 99;
  overflow: hidden;
  height: 50px;
}
.hashtag {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  display: flex;
}
.hashtag ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hashtag ul li {
  display: inline-block;
  padding: 0 14px;
  line-height: 50px;
}
.hashtag ul li a {
  color: #0F3A82;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s;
}
.hashtag ul li a:hover {
  border-bottom: 2px solid #0F3A82;
}
        
/* --------------------------
    PC用スタイル
-------------------------- */
@media screen and (min-width: 780px) {}
/* --------------------------
    スマホ用スタイル
-------------------------- */
@media screen and (max-width: 499px) {
  .main-visual-area {
    height: 540px;
  }
  h1.main-ttl img {
    top: 125px;
    max-width: 380px;
  }
  .fv-icon img, .mv_item03 img {
    max-width: 75px;
  }
  .fv-icon {
    top: -14px;
    right: 82%;
    z-index: 99;
    transform: rotateZ(-20deg);
  }
  .hashtag-container {
    top: 220px;
  }
  .hashtag ul li {
    padding: 0px 6px;
  }
  .hashtag ul li a {
    font-size: 14px;
  }
  
  .timer-value {
    font-size: 2em;
}
.timer-label {
    font-size: 1.5em;
}

.countdown-timer {
    width: 100%;
}
.countdown-date {
    width: 80%;
    margin-bottom: 1rem;
}

.countdown-wrapper {
    top: 210px;
}
.countdown-timer {
    gap: 0.5em;
}
}
@media screen and (min-width: 481px) and (max-width: 779px) {}
@media screen and (max-width: 480px) {}