@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-size: 11px;
  background-color: #fff;
  font-family: "ryo-display-plusn", serif;
  font-weight: 500;
  font-style: normal;
}

/* 読み込み中にコンテンツを非表示にする */
body.is-loading > *:not(.load) {
  opacity: 0;
  visibility: hidden;
}

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

a:hover {
  opacity: 0.6;
  transition: 0.6s;
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.number {
  width: 20%;
  height: auto;
  position: relative;
  height: 80px;
}

.credit-container {
  position: relative;
  width: 100%;
}
.credit-container .credit-toggle-btn {
  position: absolute;
  bottom: 5%;
  right: 6%;
  z-index: 31;
  width: 30px;
  height: 30px;
  border: none;
  background-color: transparent;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.credit-container .credit-toggle-btn span {
  position: absolute;
  background-color: #fff;
  height: 1px;
  width: 20px;
  transition: transform 0.3s ease;
}
.credit-container .credit-toggle-btn span:last-child {
  transform: rotate(90deg);
}
.credit-container .credit-toggle-btn.is-active span:first-child {
  transform: rotate(45deg);
}
.credit-container .credit-toggle-btn.is-active span:last-child {
  transform: rotate(-45deg);
}

.credit {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-family: "arial", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 769px) {
  .credit {
    font-size: 0.9333333333vw;
  }
}
.credit a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10% 10px;
  width: 100%;
}
.credit a:last-child {
  margin-bottom: 15%;
}
.credit a .credit_name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-right: 10px;
}
.credit a .buy {
  border: 1px solid;
  padding: 0.1vw 1.5vw;
  height: fit-content;
}

.credit_over {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 30;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.is-hidden {
  display: none !important;
}

/* .load
===================================================== */
.load {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.load--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#page-top {
  position: fixed;
  bottom: 3%;
  right: 3%;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  #page-top {
    right: 3%;
  }
}
#page-top img {
  width: 2.3611111111vw;
}
@media screen and (max-width: 768px) {
  #page-top img {
    width: 7.6vw;
  }
}

#page-top a {
  display: block;
  opacity: 0.9;
  transition: all 0.3s ease;
}

#page-top a:hover {
  opacity: 0.5;
}

#page-top a:hover {
  opacity: 0.5;
}

/* .fv
===================================================== */
.fv_container {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .fv_container {
    background-image: url(../images/fv_back.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    position: fixed;
  }
}
.fv h1 {
  position: absolute;
  top: 43%;
  left: 0;
  transform: translateY(-50%);
  width: 300%; /* コンテナの2倍の幅に設定 */
  animation: loop-left 20s linear infinite; /* アニメーションを適用 */
}
.fv_over {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

/* 左へループするアニメーション */
@keyframes loop-left {
  0% {
    transform: translate(0, -50%);
  }
  100% {
    transform: translate(-50%, -50%); /* 幅の半分（コンテナ1つ分）だけ左に移動 */
  }
}
/* .sec01
===================================================== */
.sec01 {
  position: relative;
  overflow: hidden;
}
.sec01_walking {
  position: relative;
  height: 90vw;
}
@media screen and (min-width: 769px) {
  .sec01_walking {
    height: 31vw;
  }
}
.sec01_walking img {
  position: absolute;
  opacity: 0;
  will-change: opacity, transform;
}
.sec01_walking img:nth-child(1) {
  top: -30%;
  left: 50%;
  z-index: 1;
  width: 80%;
}
.sec01_walking img:nth-child(2) {
  top: -26%;
  left: 34%;
  z-index: 2;
  width: 80%;
}
.sec01_walking img:nth-child(3) {
  top: -36%;
  left: 23%;
  z-index: 3;
  width: 90%;
}
.sec01_walking img:nth-child(4) {
  top: 7%;
  right: 50%;
  z-index: 4;
  width: 40%;
}
.sec01_number {
  position: absolute;
  top: 12%;
  left: 27%;
  z-index: 10;
}
.sec01 .sec01_image01 {
  width: 80%;
  margin-top: -20%;
  margin-left: auto;
}
.sec01 .sec01_image01 img {
  width: auto;
  max-width: 100%;
}
.sec01 .sec01_image_container {
  height: 100vw;
}
@media screen and (min-width: 769px) {
  .sec01 .sec01_image_container {
    height: 36vw;
  }
}
.sec01 .sec01_image_container .sec01_image02 {
  margin-top: 10%;
  margin-bottom: auto;
  margin-right: auto;
  width: 50%;
}
.sec01 .sec01_image_container .sec01_image03 {
  margin-top: auto;
  margin-left: auto;
  width: 45%;
}
.sec01 .sec01_image04 {
  width: 80%;
  margin: 10% auto 0 17%;
}
.sec01_footprints {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.sec01_footprints img {
  opacity: 0;
}
.sec01_footprints .sec01_fp01 img {
  width: 12%;
}
.sec01_footprints .sec01_fp01 img:nth-child(1) {
  position: absolute;
  top: 18%;
  left: 40%;
  transform: rotate(-10deg);
}
.sec01_footprints .sec01_fp01 img:nth-child(2) {
  position: absolute;
  top: 20%;
  left: 27%;
  transform: rotate(-13deg);
}
.sec01_footprints .sec01_fp01 img:nth-child(3) {
  position: absolute;
  top: 22%;
  left: 8%;
  transform: rotate(5deg);
}
.sec01_footprints .sec01_fp01 img:nth-child(4) {
  position: absolute;
  top: 25%;
  left: 0%;
  transform: rotate(-10deg);
}
.sec01_footprints .sec01_fp01 img:nth-child(5) {
  position: absolute;
  top: 30%;
  left: -5%;
  transform: rotate(-10deg);
}
.sec01_footprints .sec01_fp01 img:nth-child(6) {
  position: absolute;
  top: 35%;
  left: -5%;
  transform: rotate(-23deg);
}
.sec01_footprints .sec01_fp01 img:nth-child(7) {
  position: absolute;
  top: 40%;
  left: -2%;
  transform: rotate(-50deg);
}
.sec01_footprints .sec01_fp01 img:nth-child(8) {
  position: absolute;
  top: 44%;
  left: 8%;
  transform: rotate(-59deg);
}
.sec01_footprints .sec01_fp01 img:nth-child(9) {
  position: absolute;
  top: 46%;
  left: 24%;
  transform: rotate(-80deg);
}
.sec01_footprints .sec01_fp02 img {
  width: 12%;
}
.sec01_footprints .sec01_fp02 img:nth-child(1) {
  position: absolute;
  top: 47%;
  left: 58%;
  transform: rotate(-80deg);
}
.sec01_footprints .sec01_fp02 img:nth-child(2) {
  position: absolute;
  top: 49%;
  left: 77%;
  transform: rotate(-60deg);
  z-index: -1;
}
.sec01_footprints .sec01_fp03 img {
  width: 12%;
}
.sec01_footprints .sec01_fp03 img:nth-child(1) {
  position: absolute;
  top: 66%;
  left: 40%;
  transform: rotate(14deg);
}
.sec01_footprints .sec01_fp03 img:nth-child(2) {
  position: absolute;
  top: 68%;
  left: 22%;
  transform: rotate(20deg);
}
.sec01_footprints .sec01_fp03 img:nth-child(3) {
  position: absolute;
  top: 70%;
  left: 6%;
  transform: rotate(21deg);
}
.sec01_footprints .sec01_fp03 img:nth-child(4) {
  position: absolute;
  top: 74%;
  left: -1%;
  transform: rotate(10deg);
}
.sec01_footprints .sec01_fp03 img:nth-child(5) {
  position: absolute;
  top: 79%;
  left: -4%;
  transform: rotate(-10deg);
}
.sec01_footprints .sec01_fp03 img:nth-child(6) {
  position: absolute;
  top: 85%;
  left: -5%;
  transform: rotate(-16deg);
}
.sec01_footprints .sec01_fp03 img:nth-child(7) {
  position: absolute;
  top: 89%;
  left: -7%;
  transform: rotate(0deg);
}

/* .sec02
===================================================== */
.sec02 {
  position: relative;
  overflow: hidden;
}
.sec02_number {
  position: absolute;
  top: 5%;
  left: 70%;
  z-index: 10;
}
.sec02_content .sec02_container01 {
  position: relative;
}
.sec02_content .sec02_container01 img:last-child {
  position: absolute;
  top: 0;
  left: 30%;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.sec02_content .sec02_container02 {
  position: absolute;
  top: 13%;
  left: 4%;
  width: 100%;
  height: auto;
  z-index: 11;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sec02_content .sec02_container02 img {
  width: 35%;
  height: auto;
}
.sec02_content .credit_02 {
  margin-top: -30%;
  margin-bottom: 20%;
  align-items: end;
}
.sec02_content .credit_02 a {
  width: 65%;
  z-index: 11;
  padding-right: 5px;
}
.sec02 .film {
  position: relative;
  margin-bottom: 10px;
}
.sec02 .film:last-of-type {
  margin-bottom: 0;
}
.sec02 .film > img {
  width: 100%;
  height: auto;
  display: block;
}
.sec02 .film .sec02-slider-left,
.sec02 .film .sec02-slider-right {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}
.sec02 .film .sec02-slider-left div,
.sec02 .film .sec02-slider-right div {
  padding: 0 1px;
  box-sizing: border-box;
}
.sec02 .film .sec02-slider-left div img,
.sec02 .film .sec02-slider-right div img {
  width: 100%;
  height: auto;
  display: block;
}

/* .sec03
===================================================== */
.sec03 {
  position: relative;
  overflow: hidden;
  padding-top: 40%;
  height: 250vw;
}
@media screen and (min-width: 769px) {
  .sec03 {
    height: 80vw;
  }
}
.sec03_number {
  position: absolute;
  top: 9%;
  left: 10%;
  z-index: 10;
}
.sec03_content img:first-child {
  position: absolute;
  z-index: 1;
  top: 16%;
  left: 0;
}
.sec03_content img:last-child {
  position: absolute;
  top: 40%;
  right: 0;
  width: 70%;
}
.sec03_yummy {
  display: flex;
  position: absolute;
  bottom: 3%;
  height: 80vw;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .sec03_yummy {
    height: 26vw;
  }
}
.sec03_yummy img {
  position: absolute;
  opacity: 0;
  will-change: opacity, transform;
}
.sec03_yummy img:nth-child(1) {
  top: 24%;
  left: 33%;
  z-index: 1;
  width: 25%;
}
.sec03_yummy img:nth-child(2) {
  top: 13%;
  left: 48%;
  z-index: 2;
  width: 31%;
}
.sec03_yummy img:nth-child(3) {
  top: 5%;
  left: 66%;
  z-index: 3;
  width: 35%;
}
.sec03 .credit_03 {
  color: #000;
  position: absolute;
  bottom: 0%;
  right: 0%;
  align-items: flex-end;
  width: 70%;
  padding-right: 5px;
}

/* .sec04
===================================================== */
.sec04 {
  position: relative;
  overflow: hidden;
  padding-top: 20%;
}
.sec04_number {
  position: absolute;
  top: 45%;
  left: 5%;
}
.sec04_content > img:nth-child(1) {
  margin-left: auto;
  width: 80%;
}
.sec04_content .sec04_image01 {
  width: 75%;
  margin-top: -18%;
}
.sec04_content .sec04_image02 {
  width: 55%;
  margin-top: 5%;
  margin-left: auto;
}
.sec04_content .sec04_image03 {
  width: 55%;
  margin-top: 5%;
}
.sec04_content .sec04_dl {
  position: absolute;
  top: 48%;
  left: 13%;
  width: 77%;
  /* GSAPでアニメーションさせるための初期状態（高さ0で見えない状態） */
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
.sec04_content .sec04_skateboard {
  display: flex;
  position: relative;
  height: 60vw;
  width: 100%;
  margin-top: -240px;
}
@media screen and (min-width: 769px) {
  .sec04_content .sec04_skateboard {
    height: 20vw;
  }
}
.sec04_content .sec04_skateboard img {
  position: absolute;
  opacity: 0;
  will-change: opacity, transform;
}
.sec04_content .sec04_skateboard img:nth-child(1) {
  top: -84%;
  left: 35%;
  z-index: 1;
  width: 50%;
}
.sec04_content .sec04_skateboard img:nth-child(2) {
  top: -56%;
  left: 43%;
  z-index: 2;
  width: 57%;
}
.sec04_content .sec04_skateboard img:nth-child(3) {
  top: -26%;
  left: 55%;
  z-index: 3;
  width: 61%;
}

/* .sec05
===================================================== */
.sec05 {
  position: relative;
  overflow: hidden;
  margin-top: 10%;
}
.sec05_number {
  position: absolute;
  top: 2%;
  left: 5%;
  z-index: 1;
}
.sec05_content {
  width: 100%;
  height: 150vw;
}
@media screen and (min-width: 769px) {
  .sec05_content {
    height: 50vw;
  }
}
.sec05_content img:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.sec05_content img:nth-child(2) {
  position: absolute;
  top: 0;
  left: -8%;
  z-index: 1;
  width: 100%;
}
.sec05_content .credit_05 {
  position: absolute;
  bottom: 14%;
  width: 60%;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .sec05_content .credit_05 {
    width: 65%;
  }
}
.sec05_slider {
  display: flex;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 769px) {
  .sec05_slider {
    width: 6.7vw;
  }
}
.sec05_slider img {
  width: 20%;
}

/* .sec06
===================================================== */
.sec06 {
  position: relative;
  overflow: hidden;
}
.sec06_number {
  position: absolute;
  top: 2%;
  left: 5%;
  z-index: 1;
}
.sec06_content .sec06_container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 40%;
  position: absolute;
  top: 20%;
  left: 2%;
}
.sec06_content .credit_06 {
  position: absolute;
  bottom: 28%;
  width: 60%;
  z-index: 2;
}
.sec06_content .credit_06 a {
  margin: 0 auto 10px 3%;
  padding: 0;
}

/* .sec07
===================================================== */
.sec07 {
  position: relative;
  overflow: hidden;
}
.sec07_walking {
  position: relative;
  height: 84vw;
}
@media screen and (min-width: 769px) {
  .sec07_walking {
    height: 29vw;
  }
}
.sec07_walking img {
  position: absolute;
}
.sec07_walking img:nth-child(1) {
  top: -48%;
  left: 40%;
  z-index: 1;
  width: 90%;
}
.sec07_walking img:nth-child(2) {
  top: -48%;
  left: 26%;
  z-index: 2;
  width: 100%;
}
.sec07_walking img:nth-child(3) {
  top: -60%;
  left: 15%;
  z-index: 3;
  width: 100%;
}
.sec07_walking img:nth-child(4) {
  top: 12%;
  right: 39%;
  z-index: 4;
  width: 40%;
}
.sec07_number {
  position: absolute;
  top: 10%;
  left: 25%;
}
.sec07 .sec07_image01 {
  width: 80%;
  margin-top: -20%;
  margin-left: auto;
}
.sec07 .sec07_image01 img {
  width: auto;
  max-width: 100%;
}
.sec07 .sec07_image_container {
  height: 100vw;
}
@media screen and (min-width: 769px) {
  .sec07 .sec07_image_container {
    height: 36vw;
  }
}
.sec07 .sec07_image_container .sec07_image02 {
  margin-top: 10%;
  margin-bottom: auto;
  margin-right: auto;
  width: 50%;
}
.sec07 .sec07_image_container .sec07_image03 {
  margin-top: auto;
  margin-left: auto;
  width: 45%;
}
.sec07 .sec07_image04 {
  width: 70%;
  margin: 10% auto 0 20%;
}
.sec07_footprints {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.sec07_footprints .sec07_fp01 img {
  width: 12%;
}
.sec07_footprints .sec07_fp01 img:nth-child(1) {
  position: absolute;
  top: 18%;
  left: 40%;
  transform: rotate(-10deg);
}
.sec07_footprints .sec07_fp01 img:nth-child(2) {
  position: absolute;
  top: 20%;
  left: 27%;
  transform: rotate(-13deg);
}
.sec07_footprints .sec07_fp01 img:nth-child(3) {
  position: absolute;
  top: 22%;
  left: 8%;
  transform: rotate(5deg);
}
.sec07_footprints .sec07_fp01 img:nth-child(4) {
  position: absolute;
  top: 25%;
  left: 0%;
  transform: rotate(-10deg);
}
.sec07_footprints .sec07_fp01 img:nth-child(5) {
  position: absolute;
  top: 30%;
  left: -5%;
  transform: rotate(-10deg);
}
.sec07_footprints .sec07_fp01 img:nth-child(6) {
  position: absolute;
  top: 35%;
  left: -5%;
  transform: rotate(-23deg);
}
.sec07_footprints .sec07_fp01 img:nth-child(7) {
  position: absolute;
  top: 40%;
  left: -2%;
  transform: rotate(-50deg);
}
.sec07_footprints .sec07_fp01 img:nth-child(8) {
  position: absolute;
  top: 44%;
  left: 8%;
  transform: rotate(-59deg);
}
.sec07_footprints .sec07_fp01 img:nth-child(9) {
  position: absolute;
  top: 46%;
  left: 24%;
  transform: rotate(-80deg);
}
.sec07_footprints .sec07_fp02 img {
  width: 12%;
}
.sec07_footprints .sec07_fp02 img:nth-child(1) {
  position: absolute;
  top: 49%;
  left: 58%;
  transform: rotate(-80deg);
}
.sec07_footprints .sec07_fp02 img:nth-child(2) {
  position: absolute;
  top: 51%;
  left: 77%;
  transform: rotate(-60deg);
}
.sec07_footprints .sec07_fp03 img {
  width: 12%;
}
.sec07_footprints .sec07_fp03 img:nth-child(1) {
  position: absolute;
  top: 69%;
  left: 40%;
  transform: rotate(14deg);
}
.sec07_footprints .sec07_fp03 img:nth-child(2) {
  position: absolute;
  top: 71%;
  left: 22%;
  transform: rotate(20deg);
}
.sec07_footprints .sec07_fp03 img:nth-child(3) {
  position: absolute;
  top: 74%;
  left: 6%;
  transform: rotate(21deg);
}
.sec07_footprints .sec07_fp03 img:nth-child(4) {
  position: absolute;
  top: 77%;
  left: -1%;
  transform: rotate(10deg);
}
.sec07_footprints .sec07_fp03 img:nth-child(5) {
  position: absolute;
  top: 81%;
  left: -4%;
  transform: rotate(-10deg);
}
.sec07_footprints .sec07_fp03 img:nth-child(6) {
  position: absolute;
  top: 85%;
  left: -5%;
  transform: rotate(-16deg);
}
.sec07_footprints .sec07_fp03 img:nth-child(7) {
  position: absolute;
  top: 89%;
  left: -7%;
  transform: rotate(0deg);
}

/* .sec08
===================================================== */
.sec08 {
  position: relative;
  overflow: hidden;
  margin-top: 10%;
}
.sec08_number {
  position: absolute;
  top: 2%;
  left: 5%;
  z-index: 1;
}
.sec08_content {
  width: 100%;
  height: 200vw;
}
@media screen and (min-width: 769px) {
  .sec08_content {
    height: 66vw;
  }
}
.sec08_content img:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.sec08_content img:nth-child(2) {
  opacity: 0;
  position: absolute;
  top: 6%;
  left: -10%;
  z-index: 1;
  width: 100%;
}
.sec08_content .sec08_image02 {
  opacity: 0;
  position: absolute;
  top: 27%;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 150vw;
}
@media screen and (min-width: 769px) {
  .sec08_content .sec08_image02 {
    height: 50vw;
  }
}
.sec08_content .sec08_image02 .credit-toggle-btn span {
  background-color: #000;
}
.sec08 .credit_08 {
  position: absolute;
  bottom: 5%;
  right: 5%;
  align-items: flex-end;
  width: auto;
}
.sec08 .credit_08 a {
  padding: 0;
  width: auto;
  justify-content: flex-end;
  margin-bottom: 0;
}

/* .footer
===================================================== */
.footer_logo {
  width: 30%;
  margin: 4%;
}
@media screen and (min-width: 769px) {
  .footer {
    width: 33.3333333333%;
  }
  .footer_image {
    background-image: url(../images/footer.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    position: fixed;
  }
}
@media screen and (min-width: 769px) and (min-width: 769px) {
  .footer_image {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 769px) {
  .footer_logo {
    margin: 94vh auto 4% 4%;
  }
}

/* .pc_背景固定
===================================================== */
@media screen and (min-width: 769px) {
  .pc_3 {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    justify-content: space-between;
  }
  .pc_3 .fv {
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .pc_3 .fv .fv_container {
    width: 33.3333333333%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .pc_3 .fv .fv_container img {
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width: 769px) {
  .pc_3 main {
    width: 33.3333333333%;
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #fff;
    -webkit-overflow-scrolling: touch;
    margin-left: auto;
  }
  .pc_3 main img {
    width: 100%;
    height: auto;
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .pc_3 .footer {
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .pc_3 .footer .footer_image img,
  .pc_3 .footer .footer_logo img {
    max-height: 100%;
    object-fit: contain;
  }
}

@media screen and (min-width: 769px) {
  main {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  main::-webkit-scrollbar {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */