@charset "UTF-8";
/* --------------------
		setting
-------------------- */
@import url(https://cdn.jsdelivr.net/npm/yakuhanjp@4.1.1/dist/css/yakuhanjp.css);
@import url(modaal.css);
:root {
  --c-txt: #000;
  --a-txt: #e30229;
  --btn-txt: #fff;
  --bg: #fff;
  --condensd: "nimbus-sans-condensed", sans-serif;
  --plus_width: 19px;
  --plus_margin: 5px;
}

@media screen and (min-width: 821px) {
  :root {
    --plus_width: 35px;
    --plus_margin: 10px;
  }
}
@media screen and (max-width: 820px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 821px) {
  .sp-only {
    display: none !important;
  }
}

a {
  transition: all 0.25s ease-in-out;
}

/* ----px → vw---- 書き方：vw(px値) */
/* ----px → vw (pc)---- 書き方：vw-pc(px値)　*/
/* --------------------
		base
-------------------- */
html {
  font-size: 10px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 821px) {
  html {
    font-size: 11px;
  }
}

body {
  font-feature-settings: "palt" 1;
  font-family: YakuHanJP, "nimbus-sans", "Helvetica Neue", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.wrapper {
  background-color: var(--bg);
}

p, li, dt, dd {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

li + li {
  margin-top: 1.5em;
}

small {
  font-size: 0.75em;
}

/* --------------------
		header
-------------------- */
header {
  position: relative;
  width: 100vw;
  height: 100svh;
}
header .intro {
  background-color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
header h1 {
  line-height: 0;
  width: 50%;
  height: auto;
}
@media screen and (min-width: 821px) {
  header h1 {
    width: 33.333%;
  }
}

.mainvisual {
  width: 100vw;
  height: 100svh;
  background-image: url(/special/260213_onlinestore_lotto/common/img/main_sp.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  text-indent: -9999px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (min-width: 821px) {
  .mainvisual {
    background-image: url(/special/260213_onlinestore_lotto/common/img/main_pc.webp);
    background-size: contain;
  }
}

/* --------------------
		content
-------------------- */
main {
  background-color: var(--bg);
  overflow: hidden;
  position: relative;
  line-height: 1;
  color: var(--c-txt);
}
main img {
  width: 100%;
  height: auto;
}
main a {
  color: var(--c-txt);
  text-decoration: none;
}
main a:hover, main a:active {
  color: var(--a-txt);
}
@media screen and (min-width: 821px) {
  main a.inline {
    pointer-events: none;
  }
}
main h1 {
  font-family: "nimbus-sans-condensed", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  font-size: 7.5vw;
  text-align: center;
  margin-bottom: 20vw;
}
@media screen and (min-width: 821px) {
  main h1 {
    font-size: 44px;
    margin-bottom: 15%;
  }
}
main h2 {
  font-family: "nimbus-sans-condensed", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  font-size: 5vw;
  text-align: center;
  margin-bottom: 20vw;
}
@media screen and (min-width: 821px) {
  main h2 {
    font-size: 30px;
    margin-bottom: 15%;
  }
}
main section {
  box-sizing: border-box;
  /*&:first-of-type{
  	padding: 0;
  }*/
}
main section.visuals {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 3.75vw;
  padding-right: 3.75vw;
  padding-top: 30%;
}
@media screen and (min-width: 821px) {
  main section.visuals {
    padding-top: 25%;
    flex-direction: row;
  }
}
main section.visuals:nth-child(1) {
  padding-top: 3.75vw;
}
main section.visuals > div {
  opacity: 0;
  visibility: hidden;
  transition-delay: 0.75s;
  transition-duration: 2s;
  transform: translateX(-100px);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
main section.visuals > div.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
main section.visuals > div:nth-child(2n) {
  transition-delay: 1s;
}
main section.overview {
  padding: 30% 7.5% 0;
}
@media screen and (min-width: 821px) {
  main section.overview {
    padding: 20% 0 0;
    margin: 0 auto;
    width: 600px;
  }
}
main section.overview .fadein {
  clip-path: inset(0 100% 0 0);
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
main section.overview .fadein.show {
  clip-path: inset(0);
}
main section.overview p {
  line-height: 1.75;
  margin-top: 2rem;
}
main section.overview p + p {
  margin-top: 15%;
}
main section.overview p em {
  display: block;
  font-family: "nimbus-sans-condensed", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.25;
  font-size: 1.7rem;
  font-style: normal;
  text-align: center;
}
main section.overview p em a {
  color: var(--a-txt);
  display: inline-block;
  position: relative;
  padding-bottom: 1px;
}
main section.overview p em a::after {
  background-color: currentColor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  width: 100%;
}
main section.overview p em a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
main section#stores ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main section#stores ul li {
  font-size: 1.5rem;
  width: auto;
}
@media screen and (min-width: 821px) {
  main section#stores ul {
    max-width: 300px;
    margin: 0 auto;
  }
}
main section#staffs p {
  font-size: 1.2rem;
  text-align: center;
  margin: -10% 0 0;
}
main section:last-of-type {
  padding-bottom: 30%;
}
@media screen and (min-width: 821px) {
  main section:last-of-type {
    padding-bottom: 20%;
  }
}

.visual {
  position: relative;
  aspect-ratio: 4/5;
}
.visual:nth-child(n+3) {
  margin-top: 3.75vw;
}
.visual.center {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 821px) {
  .visual.center {
    width: 70%;
  }
}
.visual .inline {
  position: relative;
  display: block;
}
.visual .inline::before, .visual .inline::after {
  background-color: var(--btn-txt);
  content: "";
  display: block;
  width: var(--plus_width);
  height: 1px;
  position: absolute;
  bottom: calc(var(--plus_width) / 2 + var(--plus_margin));
  right: var(--plus_margin);
  z-index: 3;
  transition: all 0.25s ease-in-out;
}
.visual .inline::after {
  width: 1px;
  height: var(--plus_width);
  right: calc(var(--plus_width) / 2 + var(--plus_margin));
  bottom: var(--plus_margin);
}
.visual:hover .inline::before, .visual:hover .inline::after {
  transform: rotate(45deg);
  background-color: transparent;
}
.visual:hover .mask {
  opacity: 1;
  transition: all 0.5s ease-in-out;
  transition-delay: 1s;
}

.w50 {
  width: 44.375vw;
}

.w75 {
  width: 75%;
  margin-left: 12.5%;
  margin-right: 12.5%;
}
@media screen and (max-width: 820px) {
  .w75 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.right {
  margin-left: auto;
}

.col1 {
  margin-left: 25%;
  margin-right: 25%;
}

.img2 img {
  width: 50%;
  vertical-align: top;
}
.img2 img + img {
  margin-top: 62.5%;
}

@media screen and (max-width: 820px) {
  .visuals > div:nth-child(14), .visuals > div:nth-child(15) {
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  .mask {
    display: none;
  }
}
@media screen and (min-width: 821px) {
  .mask {
    background-color: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 4vw;
    left: 4vw;
    margin: 0;
    width: calc(100% - 8vw);
    height: calc(100% - 8vw);
    opacity: 0;
    transition: all 0.5s ease-in-out;
    z-index: 2;
  }
}

.credit li {
  font-size: 1.3rem;
  line-height: 1.5;
  position: relative;
}
.credit li.p2, .credit li.p3 {
  margin-top: 6rem;
}
.credit li.p1::before, .credit li.p2::before, .credit li.p3::before {
  color: #777;
  font-size: 0.75em;
  line-height: 2.5;
  display: block;
  background-color: currentColor;
  width: 30px;
  height: 1px;
  position: absolute;
  top: -3rem;
}
.credit li.p1::before {
  content: "LEFT";
}
.credit li.p2::before {
  content: "RIGHT";
}
.credit li.p3::before {
  content: "CENTER";
}
.credit li span {
  display: block;
}
.credit li .no {
  display: none;
}
.credit li .name {
  width: calc(100% - 100px);
}
.credit li .buy, .credit li .coming {
  box-sizing: border-box;
  border: 1px solid var(--a-txt);
  border-radius: 2px;
  font-family: "nimbus-sans-condensed", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  display: inline-block;
  line-height: 25px;
  text-align: center;
  width: 100px;
  position: absolute;
  right: 0;
  top: 0;
}
.credit li .coming {
  border: 1px solid #707070;
  color: #707070;
  font-size: 1.2rem;
}
@media screen and (min-width: 821px) {
  .credit li .coming {
    font-size: 1.1rem;
  }
}
.credit li a {
  display: block;
  width: 100%;
}
.credit li a .buy {
  background-color: var(--a-txt);
  color: var(--btn-txt);
}
.credit li a:hover .buy {
  background-color: transparent;
  color: var(--a-txt);
}
@media screen and (min-width: 821px) {
  .credit {
    width: 320px;
  }
}

.modaal-container {
  background-color: transparent;
  box-shadow: none;
  color: var(--c-txt);
}

.modaal-content-container {
  padding: 0;
}

.modaal-inner-wrapper {
  padding: 0 7.5vw;
}

.modaal-wrapper .modaal-close:hover {
  background: none;
}

.modaal-close {
  top: auto;
  bottom: 0;
  right: 0;
}

.modaal-close:before,
.modaal-close:after {
  background-color: #000;
  width: 1px;
  border-radius: 0;
}

/* --------------------
		footer
-------------------- */
.footer {
  background-color: #111;
  padding: 10% 0 5%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 821px) {
  .footer {
    padding: 5% 0 2.5%;
  }
}
.footer img {
  width: 100%;
  height: auto;
}
.footer__logo {
  width: 34.6666666667vw;
  max-width: 150px;
  margin: 0 auto 4.2666666667vw;
}
@media screen and (min-width: 821px) {
  .footer__logo {
    width: 10.15625vw;
    margin: 0 auto 1.25vw;
  }
}
.footer__logo a {
  display: block;
  width: 100%;
}
@media screen and (min-width: 821px) {
  .footer__logo a {
    width: 10.15625vw;
    transition: all 0.5s ease;
  }
}
@media screen and (min-width: 821px) {
  .footer__logo a:hover {
    opacity: 0.5;
  }
}
.footer__copyright {
  text-align: center;
  color: #fff;
  font-size: 1rem;
}/*# sourceMappingURL=style.css.map */