@charset "UTF-8";
/*------------------
  base
------------------*/
h1, h2, h3, h4, h5, h6, p, pre, blockquote, ul, li, ol, dl, dd, tr {
  font-size: 16px;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1;
}

.sp {
  display: none !important;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
a:visited {
  color: #000;
}
a:hover {
  color: #000;
  text-decoration: none;
}
a:active {
  color: #000;
}
a.tel {
  pointer-events: none;
  cursor: default;
}

img {
  max-width: 100%;
}

.f-Oswald {
  font-family: YakuHanJPs, "Oswald", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.f-Alata {
  font-family: YakuHanJPs, "Alata", sans-serif;
  font-weight: 400;
}

.f-Kosugi {
  font-family: YakuHanJPs, "Kosugi Maru", sans-serif;
  font-weight: 400;
}

/* content-wrap
==================================*/
.bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -5;
  background: url(../images/sakurahubuki9.webp) repeat center/cover;
}

#contentWrap {
  max-width: 450px;
  margin: auto;
  background: #fff;
}

.underContent {
  position: relative;
  padding-right: 20px;
  padding: 30px 20px 0 0;
}

#fix-tag {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}
#fix-tag .inner {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  right: 0;
  background: linear-gradient(180deg, rgb(255, 94, 135) 0%, rgb(255, 130, 63) 100%);
  width: 20px;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
#fix-tag .inner .scrolling-image {
  width: 12px;
  -webkit-animation: scrollImage 30s linear infinite;
          animation: scrollImage 30s linear infinite;
}

@-webkit-keyframes scrollImage {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}

@keyframes scrollImage {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
/*------------------
  header
------------------*/
header {
  position: fixed;
  top: 5px;
  left: 5px;
  z-index: 10;
}
header .logo {
  width: 74px;
}

/*------------------
  footer
------------------*/
footer {
  padding: 80px 0 20px;
}
footer .copy {
  font-size: 10px;
  text-align: center;
}

/*------------------
  common
------------------*/
.c-title {
  background: #333;
  padding: 10px 20px 15px;
  margin: 0 0 10px;
}
.c-title .f-Oswald {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
}
.c-title .f-Oswald + p {
  color: #F56B9A;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

ul.dots li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 5px;
  font-size: 14px;
}
ul.dots li::before {
  content: "・";
  position: absolute;
  left: 0;
}

ul.att li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 5px;
  font-size: 14px;
}
ul.att li::before {
  content: "※";
  position: absolute;
  left: 0;
}

/*------------------
  loaders
------------------*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/*------------------
  animation
------------------*/
.c-anim-load,
.c-anim-load02,
.c-anim-up,
.c-anim-up01,
.c-anim-up02,
.c-anim-up03 {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.3s ease;
}

.move {
  transform: translate(0, 0);
  opacity: 1;
}

#sakura {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
#sakura .sakura {
  position: absolute;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#sakura li {
  width: 18px;
  position: absolute;
  list-style: none;
  top: -50px;
  -webkit-animation: fall 4s linear infinite, rotate1 2s ease-in-out infinite alternate;
          animation: fall 4s linear infinite, rotate1 2s ease-in-out infinite alternate;
}
#sakura li img {
  width: 100%;
}
@-webkit-keyframes fall {
  to {
    top: 120%;
  }
}
@keyframes fall {
  to {
    top: 120%;
  }
}
@-webkit-keyframes rotate1 {
  from {
    transform: translateX(0px) rotate(0deg);
  }
  to {
    transform: translateX(200px) rotate(-80deg) rotateX(180deg);
  }
}
@keyframes rotate1 {
  from {
    transform: translateX(0px) rotate(0deg);
  }
  to {
    transform: translateX(200px) rotate(-80deg) rotateX(180deg);
  }
}
@-webkit-keyframes rotate2 {
  from {
    transform: translateX(200px) rotate(-45deg);
  }
  to {
    transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rotate2 {
  from {
    transform: translateX(200px) rotate(-45deg);
  }
  to {
    transform: translateX(0px) rotate(0deg);
  }
}
#sakura li:nth-child(1) {
  left: 0;
  -webkit-animation: fall 10s linear infinite, rotate1 3s ease-in-out infinite alternate;
          animation: fall 10s linear infinite, rotate1 3s ease-in-out infinite alternate;
}
#sakura li:nth-child(2) {
  left: 5vw;
  -webkit-animation: fall 15s linear infinite, rotate1 2s ease-in-out infinite alternate;
          animation: fall 15s linear infinite, rotate1 2s ease-in-out infinite alternate;
}
#sakura li:nth-child(3) {
  left: 15vw;
  -webkit-animation: fall 9s linear infinite, rotate1 3.5s ease-in-out infinite alternate;
          animation: fall 9s linear infinite, rotate1 3.5s ease-in-out infinite alternate;
}
#sakura li:nth-child(4) {
  left: 30vw;
  -webkit-animation: fall 8s linear infinite, rotate2 4s ease-in-out infinite alternate;
          animation: fall 8s linear infinite, rotate2 4s ease-in-out infinite alternate;
}
#sakura li:nth-child(5) {
  left: 40vw;
  -webkit-animation: fall 10s linear infinite, rotate1 4s ease-in-out infinite alternate;
          animation: fall 10s linear infinite, rotate1 4s ease-in-out infinite alternate;
}
#sakura li:nth-child(6) {
  left: 55vw;
  -webkit-animation: fall 11s linear infinite, rotate2 3s ease-in-out infinite alternate;
          animation: fall 11s linear infinite, rotate2 3s ease-in-out infinite alternate;
}
#sakura li:nth-child(7) {
  left: 65vw;
  -webkit-animation: fall 7s linear infinite, rotate2 3.5s ease-in-out infinite alternate;
          animation: fall 7s linear infinite, rotate2 3.5s ease-in-out infinite alternate;
}
#sakura li:nth-child(8) {
  left: 50vw;
  -webkit-animation: fall 7s linear infinite, rotate1 3s ease-in-out infinite alternate;
          animation: fall 7s linear infinite, rotate1 3s ease-in-out infinite alternate;
}

/*------------------
  Top
------------------*/
#Top #heroArea {
  position: relative;
}
#Top #heroArea .logo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  width: 158px;
  margin: auto;
}
#Top #heroArea .schedule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  text-align: center;
}
#Top #heroArea .schedule p.f-Oswald {
  color: #D71E26;
  font-size: 12px;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
  paint-order: stroke;
}
#Top #heroArea .schedule p.f-Alata {
  font-size: 14px;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
  paint-order: stroke;
}
#Top #heroArea .schedule p.f-Alata span {
  font-size: 24px;
}
#Top #deadLine {
  margin-bottom: 50px;
}
#Top #deadLine .f-Alata {
  font-size: 20px;
  text-align: center;
}
#Top #deadLine .f-Alata span {
  font-size: 32px;
}
#Top #place {
  margin-bottom: 50px;
}
#Top #place .f-Alata {
  margin-top: 20px;
  font-size: 20px;
  text-align: center;
}
#Top #price {
  margin-bottom: 50px;
}
#Top #price table {
  width: 286px;
  margin: 20px auto 0;
}
#Top #price table th {
  font-weight: 400;
  text-align: right;
}
#Top #price table td small {
  font-size: 12px;
}
@-webkit-keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#Top #event {
  margin-bottom: 50px;
}
#Top #event .link01 {
  margin-left: 10px;
}
#Top #event .link01 a {
  position: relative;
  z-index: 5;
  display: block;
  width: 230px;
  height: 230px;
}
#Top #event .link01 a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../images/Star_1.svg) no-repeat center/contain;
  width: 100%;
  height: 100%;
  -webkit-animation: rotate360 23s linear infinite;
          animation: rotate360 23s linear infinite;
}
#Top #event .link01 a p.f-Kosugi {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  color: #fff;
  text-align: center;
  transform: rotate(15deg) translate(-52%, -10%);
}
#Top #event .link01 a p.f-Kosugi span {
  font-size: 36px;
}
#Top #event .link01 a p.f-Oswald {
  position: absolute;
  left: 20%;
  bottom: 21%;
  transform: rotate(15deg);
  background: #FFF93F;
  width: 100px;
  height: 20px;
  border-radius: 20px;
  color: #D71E26;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}
#Top #event .link02 {
  margin-right: 10px;
}
#Top #event .link02 a {
  position: relative;
  z-index: 5;
  display: block;
  width: 182px;
  height: 182px;
  margin: -30px 0 0 auto;
}
#Top #event .link02 a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../images/Star_2.svg) no-repeat center/contain;
  width: 100%;
  height: 100%;
  -webkit-animation: rotate360 23s linear infinite;
          animation: rotate360 23s linear infinite;
}
#Top #event .link02 a p.f-Kosugi {
  position: absolute;
  top: 26%;
  left: 0;
  width: 100%;
  color: #fff;
  font-size: 26px;
  text-align: center;
  transform: rotate(-15deg);
}
#Top #event .link02 a p.f-Kosugi span {
  font-size: 16px;
}
#Top #event .link02 a p.f-Oswald {
  position: absolute;
  left: 28%;
  bottom: 19%;
  transform: rotate(-15deg);
  background: #FFF93F;
  width: 100px;
  height: 20px;
  border-radius: 20px;
  color: #D71E26;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}
#Top #timeTable p.day {
  margin: 0 15px;
  font-size: 40px;
}
#Top #timeTable p.day small {
  font-size: 24px;
}
#Top #timeTable p.day2 {
  margin-top: 25px;
}
#Top #timeTable .box {
  display: flex;
  margin: 0 15px 10px;
  border: 1px solid #333;
}
#Top #timeTable .box .time {
  position: relative;
  z-index: 1;
  background: #FFFB86;
  width: 135px;
  padding: 4px 0;
  font-size: 18px;
  text-align: center;
}
#Top #timeTable .box .time::after {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  z-index: -1;
  width: 30px;
  height: 35px;
  aspect-ratio: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  background: #FFFB86;
}
#Top #timeTable .box .time + p {
  width: calc(100% - 135px);
  text-align: center;
  line-height: 35px;
}
#Top #timeTable .box.pink .time {
  background: #FF9A9E;
}
#Top #timeTable .box.pink .time::after {
  background: #FF9A9E;
}

/*------------------
  Countdown
------------------*/
#Countdown #about {
  padding: 65px 0 0;
  margin-bottom: 50px;
}
#Countdown #about h2 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
#Countdown #about .info {
  margin: 16px 20px 0;
  font-size: 14px;
  text-align: justify;
  line-height: 1.8;
}
#Countdown #about .dead {
  margin: 35px 0 10px;
  color: #D71E26;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
#Countdown #about .day {
  text-align: center;
}
#Countdown #about .day span {
  font-size: 24px;
}
#Countdown #overview {
  padding: 0 20px;
}
#Countdown #overview dl {
  margin-bottom: 30px;
}
#Countdown #overview dl dt {
  background: #FF9A9E;
  padding: 5px 15px 8px;
  border-top: 6px solid #FF6969;
  color: #fff;
  font-weight: 500;
}
#Countdown #overview dl dd {
  margin: 10px 5px;
  font-size: 14px;
  text-align: justify;
  line-height: 1.8;
}
#Countdown a.goForm {
  position: relative;
  z-index: 5;
  display: block;
  width: 230px;
  height: 230px;
  margin: auto;
}
#Countdown a.goForm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../images/Star_1.svg) no-repeat center/contain;
  width: 100%;
  height: 100%;
  -webkit-animation: rotate360 23s linear infinite;
          animation: rotate360 23s linear infinite;
}
#Countdown a.goForm p.f-Kosugi {
  position: absolute;
  top: 34%;
  left: 1%;
  width: 100%;
  color: #fff;
  font-size: 36px;
  text-align: center;
}
#Countdown a.goForm p.f-Oswald {
  position: absolute;
  left: 25%;
  bottom: 29%;
  background: #FFF93F;
  width: 114px;
  height: 24px;
  border-radius: 20px;
  color: #D71E26;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}

/*------------------
  Fortune
------------------*/
#Fortune {
  min-height: 100lvh;
  background: url(../images/fortune_bg.jpg) repeat left top/108px;
}
#Fortune #game {
  padding: 65px 0 0;
}
#Fortune #game h2 {
  margin-bottom: 20px;
  font-size: 26px;
  text-align: center;
}
#Fortune #game .omikuji-gif {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 420px;
  text-align: center;
  overflow: hidden;
}
#Fortune .modal {
  display: none;
  position: absolute;
  z-index: 1000;
  left: 0;
  right: 0;
  top: 150px;
  width: 300px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
#Fortune .modal-content {
  box-sizing: border-box;
  background-color: #fff;
  height: 100%;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}
#Fortune .modal-content p {
  margin: auto;
  font-family: YakuHanJPs, "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 20px;
  text-align: start;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
}
#Fortune .modal-button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #D71E26;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

/*==========================================
  PC Common
==========================================*/
/*==========================================
  Layout
==========================================*/