@charset "UTF-8";
/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  width: 100%;
  display: block;
}

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
}

#wrapper {
  background: url(../../img/img/back-img.png) no-repeat;
  background-size: cover;
}

.wrapper {
  width: 90%;
  margin-inline: auto;
}

body {
  color: #222222;
}

html {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.25vw;
  }
}
@media (min-width: 1280px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}

.inner {
  width: 100%;
  padding-right: 1.875rem;
  padding-left: 1.875rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1280px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.shadow {
  box-shadow: 0 0.125rem 0.125rem rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .shadow {
    box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.5);
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

.houei-kai {
  width: 100%;
  height: 5rem;
  padding: 1.875rem 0;
  text-align: center;
}

.houei-kai h1 {
  font-size: 1.875rem;
  color: #001524;
}

.roulette {
  width: 100%;
  text-align: center;
  font-size: 6.25rem;
  margin-top: 3.125rem;
  padding: 5rem 0 6.25rem;
  display: block;
}

.num-display__wrapper {
  width: 37.5rem;
  height: 15.625rem;
  margin-inline: auto;
  margin-bottom: 3.125rem;
  background: linear-gradient(45deg, #FDCC77, #EE7C58, #f7daec); /*グラデーションを定義*/
  background-size: 200% 200%; /*サイズを大きくひきのばす*/
  animation: bggradient 10s ease infinite;
  border-radius: 1.875rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, 0.2);
}

@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.number-display {
  display: inline-block;
  font-family: "vdl-linegrpop-shadow";
  font-weight: bold;
  color: #001524;
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.875rem 5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

button {
  font-size: 3.125rem;
  text-transform: uppercase;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 2.5rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  color: #50372a;
  box-shadow: 0 0.3125rem 0.625rem rgba(0, 0, 0, 0.2);
}

.btn-border {
  border: 0.3125rem solid #eeddc0;
  border-radius: 50%;
  background: #eeddc0;
}

.btn-border:before {
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  content: "";
  transition: all 0.3s;
  border: 0.3125rem dotted #FE8D4F;
  border-radius: 50%;
}

.btn-border:hover:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.img-container {
  width: 100%;
  overflow: hidden;
}

.slider .slick-slide {
  margin: 0 0.625rem; /*スライド左右の余白調整*/
}

.img-item {
  width: 1.875rem;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */