@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@media screen and (max-width: 767px) {
  .only-pc {
    display: none;
  }
}

@media print,
screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}

html {
  width: 100%;
}

body {
  font-size: 14px;
  font-size: clamp(14px, 1.3333333333vw, 16px);
  font-family: YakuHanJP, Roboto, Noto Sans JP, sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 0;
  width: 100%;
}

main {
  overflow: hidden;
}

a {
  text-decoration: none;
}

.fv {
  position: relative;
  background-color: #00B1FF;
  width: 100%;
  padding: 15% 0 20%;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .fv {
    padding: 30% 0 50%;

  }
}

.lectlogo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 120px;
}

@media screen and (max-width: 767px) {
  .lectlogo {
    width: 80px;
  }
}

.lectlogo1 {
  position: absolute;
  top: 40px;
  left: 20px;
  width: 120px;
  z-index: 20;
}

@media screen and (max-width: 767px) {
  .lectlogo1 {
    width: 80px;
    margin-left: 0px;
  }
}

.lectlogo1 a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.fv::before {
  position: absolute;
  content: "";
  background-image: url(../img/fv_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: bottom center;
  z-index: -10;
}

.fv::after {
  position: absolute;
  content: "";
  background-image: url(../img/fv_bbottom.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-position: bottom center;
  z-index: 1;
}


@media screen and (max-width: 767px) {
  .fv::after {
    background-image: url(../img/fv_bbottom_sp.png);
  }
}

.fv_inner {
  position: relative;
  max-width: 1200px;
  width: 95%;
  margin: 0 auto 5%;
  z-index: 10;
}


.fv_ttl {
  max-width: 1100px;
  width: 90%;
  margin: auto;
  animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}



.navibox {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 40px auto 0;
  gap: 20px 30px;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .navibox {
    gap: 10px 20px;
  }
}

.navibtn {
  position: relative;
  text-align: center;
  font-weight: 800;
  line-height: 1.2;
  width: 300px;
  height: 45px;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .navibtn {
    width: 60%;
    height: 20%;
    padding-right: 0;
    margin: 0 auto;
  }
}

.navibtn a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  background: #FFFFFF;
  text-align: center;
  color: #FF076C;
  font-size: 1.4em;
  font-weight: bold;
  padding: 10px 0;
}

@media screen and (max-width: 767px) {
  .navibtn a {
    font-size: 0.8em;
  }
}

/* ↓追加ココから */
.navibtn:last-child a {
  background: #FF076C;
  color: #FFFFFF;
}

/* ↑追加ココまで */

.navibtn a:hover {
  opacity: 0.7;
}

.navibtn:hover::before,
.navibtn:hover::after {
  opacity: 0.7;
}

.navibtn::before,
.navibtn::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 45px;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.navibtn::before {
  left: -5px;
  background-image: url("../img/navi_l.png");
}

.navibtn::after {
  right: -5px;
  background-image: url("../img/navi_r.png");
}

@media screen and (max-width: 767px) {

  .navibtn::before,
  .navibtn::after {
    content: "";
    top: 50%;
    width: 6%;
    height: 100%;
    background-position: center;
  }

  .navibtn::before {
    left: 0px;
  }

  .navibtn::after {
    right: -10px;
  }
}

.navibtn:last-child::before {
  background-image: url("../img/navi_l2.png");
}

.navibtn:last-child::after {
  background-image: url("../img/navi_r2.png");
}


.eventall {
  margin: 4em auto;
}

.event-box {
  padding: 5% 0 15%;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .event-box {
    padding: 20% 0 30%;
  }
}


.otherevent_item {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px;
  margin: auto;
}

.otherevent_item li {
  width: 300px;
  padding: 20px;
  border-radius: 20px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .otherevent_item li {
    width: 45%;
    padding: 10px;
    border-radius: 20px;
  }
}

.otherevent_item li a {
  text-decoration: none;
  position: relative;
}

.otherevent_image {
  position: relative;
  background-color: #ffffff;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin: auto;
  align-items: center;
}

.otherevent_image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  object-fit: cover;
}

.otherevent_image::before {
  content: "";
  position: absolute;
  width: 15%;
  height: 16%;
  background: url(../img/arrow-circle.png?aaa) no-repeat;
  background-size: contain;
  bottom: 2%;
  right: 3%;
  z-index: 10;
}

.otherevent_days {
  font-size: clamp(10px, 1.1vw, 12px);
  text-align: left;
  padding: 2px;
  margin: 10px auto 0;
}

.otherevent_title {
  font-size: 1.2em;
  text-align: left;
  color: #666666;
  margin: 10px auto 1em;
}
@media screen and (max-width: 767px) {
.otherevent_title {
  font-size: 1em;
}
}

.otherevent_item li:nth-child(3n+1) .otherevent_image {
  box-shadow: 10px 10px 0px 0px #23B8C5;
}

.otherevent_item li:nth-child(3n+2) .otherevent_image {
  box-shadow: 10px 10px 0px 0px #8BCBB1;
}

.otherevent_item li:nth-child(3n) .otherevent_image {
  box-shadow: 10px 10px 0px 0px #FFFFFF;
}

@media screen and (max-width: 767px) {
  .otherevent_item li:nth-child(3n+1) .otherevent_image {
    box-shadow: 5px 5px 0px 0px #23B8C5;
  }

  .otherevent_item li:nth-child(3n+2) .otherevent_image {
    box-shadow: 5px 5px 0px 0px #8BCBB1;
  }

  .otherevent_item li:nth-child(3n) .otherevent_image {
    box-shadow: 5px 5px 0px 0px #FFFFFF;
  }
}


#footer {
  font-size: 10px;
  padding: 10px;
  background: #EEEEEE;
}

@media all and (-ms-high-contrast: none) {
  .line_anime {
    height: auto;
  }
}

.topbtn {
  z-index: 999;
}


.topbtn {
  display: inline-block;
  padding-top: 0;
  position: fixed;
  bottom: 16px;
  right: 15px;
}

.topbtn a {
  text-decoration: none;
}

.topbtn::before {
  animation: scroll 3.5s infinite;
  border: solid #000;
  border-width: 0 0 1px 1px;
  content: "";
  display: inline-block;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  transform: rotate(135deg);
  width: 20px;
  height: 20px;
}

@keyframes scroll {
  0% {
    transform: rotate(135deg) translate(0, 0);
  }

  80% {
    transform: rotate(135deg) translate(-20px, 20px);
  }

  0%,
  80%,
  100% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }
}

.othereventlist {
  position: relative;
  background-color: #92F4FF;
  background-image: url(../img/event_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.othereventlist::after {
  position: absolute;
  content: "";
  background-image: url(../img/event_bottom.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-position: bottom center;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .othereventlist::after {
    background-image: url(../img/event_bottom_sp.png);
  }
}


.giftlist {
  position: relative;
  background-color: #8BF4FF;
  background-image: url(../img/gift_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.giftlist::after {
  position: absolute;
  content: "";
  background-image: url(../img/gift_bottom.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-position: bottom center;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .giftlist::after {
    background-image: url(../img/gift_bottom_sp.png);
  }
}


.shoeslist {
  position: relative;
  background-color: #60CAF9;
  background-image: url(../img/shoes_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.gourmetfestival {
  position: relative;
  background-color: #C1F2F8;
  background-image: url(../img/product_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .gourmetfestival {
    margin: 0 auto;
  }
}

.gourmetfestival::after {
  position: absolute;
  content: "";
  background-image: url(../img/product_bottom.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-position: bottom center;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .gourmetfestival::after {
    background-image: url(../img/product_bottom_sp.png);
  }
}


.gourmet_ttl {
  position: relative;
  max-width: 700px;
  width: 90%;
  margin: 0 auto 40px;
}

.loop_area {
  max-width: 1100px;
  margin: 5% auto;
  overflow: hidden;
}

.gourmet {
  width: 150%;
  margin: 5% auto;
  display: flex;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(-200%);
  }
}

.gourmet img:first-child {
  animation: loop 50s -25s linear infinite;
}

.gourmet img:last-child {
  animation: loop2 50s linear infinite;
}


.conbtn {
  position: relative;
  text-align: center;
  font-weight: 800;
  line-height: 1.2;
  width: 400px;
  height: 60px;
  padding: 0 10px;
  margin: auto;
  background: #4AB997;
}

.conbtn a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  font-size: 1.5em;
  font-weight: bold;
  padding: 15px 0;
}

@media screen and (max-width: 767px) {
  .conbtn a {
    font-size: 1em;
    padding: 10px 0;
  }

  .conbtn {
    position: relative;
    text-align: center;
    font-weight: 800;
    line-height: 1.2;
    width: 70%;
    height: 20%;
    padding: 0 10px;
    margin: auto;
  }
}

.conbtn a::before {
  position: absolute;
  content: "";
  right: 35px;
  top: 36%;
  width: 16px;
  height: 16px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
}

.conbtn a:hover {
  opacity: 1;
}

.conbtn a:hover::before {
  right: 30px;

}

@media screen and (max-width: 767px) {
  .conbtn a::before {
    top: 38%;
    width: 12px;
    height: 12px;
    right: 25px;
  }
}


.conbtn::before,
.conbtn::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 60px;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  background-position: center;
}

.conbtn::before {
  left: -20px;
  background-image: url("../img/navi_l3.png");
}

.conbtn::after {
  right: -20px;
  background-image: url("../img/navi_r3.png");
}


@media screen and (max-width: 767px) {

  .conbtn::before,
  .conbtn::after {
    width: 4%;
    height: 100%;
  }

  .conbtn::before {
    left: -10px;
    background-image: url("../img/navi_l3.png");
  }

  .conbtn::after {
    right: -10px;
    background-image: url("../img/navi_r3.png");
  }
}


.conbtn2 {
  position: relative;
  text-align: center;
  font-weight: 800;
  line-height: 1.2;
  width: 400px;
  height: 60px;
  padding: 0 10px;
  margin: auto;
  background: #23B8C5;
}

.conbtn2 a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  font-size: 1.5em;
  font-weight: bold;
  padding: 15px 0;
}

@media screen and (max-width: 767px) {
  .conbtn2 a {
    font-size: 1em;
    padding: 10px 0;
  }

  .conbtn2 {
    position: relative;
    text-align: center;
    font-weight: 800;
    line-height: 1.2;
    width: 70%;
    height: 20%;
    padding: 0 10px;
    margin: auto;
  }
}

.conbtn2 a::before {
  position: absolute;
  content: "";
  right: 35px;
  top: 36%;
  width: 16px;
  height: 16px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
}

.conbtn2 a:hover {
  opacity: 1;
}

.conbtn2 a:hover::before {
  right: 30px;

}

@media screen and (max-width: 767px) {
  .conbtn2 a::before {
    top: 38%;
    width: 12px;
    height: 12px;
     right: 25px;
  }
}


.conbtn2::before,
.conbtn2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 60px;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  background-position: center;
}

.conbtn2::before {
  left: -20px;
  background-image: url("../img/navi_l4.png");
}

.conbtn2::after {
  right: -20px;
  background-image: url("../img/navi_r4.png");
}


@media screen and (max-width: 767px) {

  .conbtn2::before,
  .conbtn2::after {
    width: 4%;
    height: 100%;
  }

  .conbtn2::before {
    left: -10px;
  }

  .conbtn2::after {
    right: -10px;
  }
}


.conbtn3 {
  position: relative;
  text-align: center;
  font-weight: 800;
  line-height: 1.2;
  width: 400px;
  height: 60px;
  padding: 0 10px;
  margin: auto;
  background: #F4A24B;
}

.conbtn3 a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  font-size: 1.5em;
  font-weight: bold;
  padding: 15px 0;
}

@media screen and (max-width: 767px) {
  .conbtn3 a {
    font-size: 1em;
    padding: 10px 0;
  }

  .conbtn3 {
    position: relative;
    text-align: center;
    font-weight: 800;
    line-height: 1.2;
    width: 70%;
    height: 20%;
    padding: 0 10px;
    margin: auto;
  }
}

.conbtn3 a::before {
  position: absolute;
  content: "";
  right: 35px;
  top: 36%;
  width: 16px;
  height: 16px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
}

.conbtn3 a:hover {
  opacity: 1;
}

.conbtn3 a:hover::before {
  right: 30px;

}

@media screen and (max-width: 767px) {
  .conbtn3 a::before {
    top: 38%;
    width: 12px;
    height: 12px;
     right: 25px;
  }
}


.conbtn3::before,
.conbtn3::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 24px;
  height: 60px;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  background-position: center;
}

.conbtn3::before {
  left: -20px;
  background-image: url("../img/navi_l5.png");
}

.conbtn3::after {
  right: -20px;
  background-image: url("../img/navi_r5.png");
}


@media screen and (max-width: 767px) {

  .conbtn3::before,
  .conbtn3::after {
    width: 4%;
    height: 100%;
  }

  .conbtn3::before {
    left: -10px;
  }

  .conbtn3::after {
    right: -10px;
  }
}




.attention {
max-width: fit-content;
text-align: left;
width: 90%;
margin: 5% auto;
}


@keyframes fireworks-animation {
  0% {
    transform: translate(-50%, 90vh);
    width: 4px;
    opacity: 1;
  }

  50% {
    width: 4px;
    opacity: 1;
  }

  100% {
    width: 600px;
    opacity: 0;
  }
}

.c-firework,
.c-firework::before,
.c-firework::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, #EDFF47 10px, #000 0) 50% 00%,
    radial-gradient(circle, #EDFF47 10px, #000 0) 00% 50%,
    radial-gradient(circle, white 10px, #000 0) 50% 99%,
    radial-gradient(circle, #F854BC 10px, #000 0) 99% 50%,
    radial-gradient(circle, #FF076C 10px, #000 0) 80% 90%,
    radial-gradient(circle, #FF076C 10px, #000 0) 95% 90%,
    radial-gradient(circle, #EDFF47 10px, #000 0) 10% 60%,
    radial-gradient(circle, #EDFF47 10px, #000 0) 31% 80%,
    radial-gradient(circle, white 10px, #000 0) 80% 10%,
    radial-gradient(circle, #F854BC 10px, #000 0) 90% 23%,
    radial-gradient(circle, #FF076C 10px, #000 0) 45% 20%,
    radial-gradient(circle, #FF076C 10px, #000 0) 13% 24%;
  background-size: 8px 8px;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  animation: fireworks-animation 4s infinite;
  z-index: 1;
}

.c-firework::before {
  transform: translate(-50%, -50%) rotate(25deg) !important;
}

.c-firework::after {
  transform: translate(-50%, -50%) rotate(-37deg) !important;
}

.c-firework:nth-of-type(2),
.c-firework:nth-of-type(2)::before,
.c-firework:nth-of-type(2)::after {
  top: 30%;
  left: 16%;
  animation-duration: 3.8s;
}

.c-firework:nth-of-type(3),
.c-firework:nth-of-type(3)::before,
.c-firework:nth-of-type(3)::after {
  top: 10%;
  left: 72%;
  animation-duration: 4.2s;
}

.c-firework:nth-of-type(4),
.c-firework:nth-of-type(4)::before,
.c-firework:nth-of-type(4)::after {
  top: 28%;
  left: 32%;
  animation-duration: 3.6s;
}

.c-firework:nth-of-type(5),
.c-firework:nth-of-type(5)::before,
.c-firework:nth-of-type(5)::after {
  top: 32%;
  left: 84%;
  animation-duration: 4.4s;
}

.c-firework:nth-of-type(6),
.c-firework:nth-of-type(6)::before,
.c-firework:nth-of-type(6)::after {
  top: 38%;
  left: 40%;
  animation-duration: 4.1s;
}

.c-firework:nth-of-type(7),
.c-firework:nth-of-type(7)::before,
.c-firework:nth-of-type(7)::after {
  top: 28%;
  left: 64%;
  animation-duration: 3.9s;
}

.c-firework:nth-of-type(8),
.c-firework:nth-of-type(8)::before,
.c-firework:nth-of-type(8)::after {
  top: 30%;
  left: 56%;
  animation-duration: 3.9s;
}


.title-area {
  width: 80%;
  /* 画面幅の90% */
  max-width: 600px;
  /* 最大幅を指定（画像の原寸など） */
  aspect-ratio: 1024 / 182;
  /* 画像の比率に合わせる */
  background: url("../img/title-bg01.png") center center/100% 100% no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 40px auto;
}

.title-text {
  color: #fff;
  font-size: 2.2em;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(34, 34, 34, 0.15);
  letter-spacing: 0.1em;
  z-index: 1;
}

.title-text2 {
  color: #46B9DC;
  font-size: 2.2em;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(34, 34, 34, 0.15);
  letter-spacing: 0.1em;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .title-text {
  font-size: 1.8em;
}
.title-text2 {
  font-size: 1.8em;
}
}

.title-area02 {
  width: 80%;
  /* 画面幅の90% */
  max-width: 600px;
  /* 最大幅を指定（画像の原寸など） */
  aspect-ratio: 1024 / 182;
  /* 画像の比率に合わせる */
  background: url("../img/title-bg02.png") center center/100% 100% no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 40px auto;
}

.title-area03 {
  width: 80%;
  /* 画面幅の90% */
  max-width: 600px;
  /* 最大幅を指定（画像の原寸など） */
  aspect-ratio: 1024 / 182;
  /* 画像の比率に合わせる */
  background: url("../img/title-bg03.png") center center/100% 100% no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 40px auto;
}


.title-area04 {
  width: 80%;
  /* 画面幅の90% */
  max-width: 600px;
  /* 最大幅を指定（画像の原寸など） */
  aspect-ratio: 1024 / 182;
  /* 画像の比率に合わせる */
  background: url("../img/title-bg04.png") center center/100% 100% no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 40px auto;
  z-index: 20;
}

.flip-parent {
  position: relative;
}

.flip-anim {
  position: absolute;
  top: 50px;
  right: 70px;
  width: 160px;
  animation: moveX 3s steps(2, start) infinite;
}

@media screen and (max-width: 1050px) {
  .flip-anim {
    top: 0px;
    right: 30px;
    width: 100px;
  }
}

@media screen and (max-width: 767px) {
  .flip-anim {
    top: -60px;
    right: 70px;
    width: 90px;
  }
}

@keyframes moveX {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(60px);
  }
}

.flip-anim2 {
  position: absolute;
  top: 50px;
  left: 30px;
  width: 160px;
  animation: moveX2 3s steps(2, start) infinite;
}

@media screen and (max-width: 1050px) {
  .flip-anim2 {
    top: 0px;
    left: 30px;
    width: 100px;
  }
}

@media screen and (max-width: 767px) {
  .flip-anim2 {
    top: -60px;
    left: 30px;
    width: 90px;
  }
}

@keyframes moveX2 {
  0% {
    transform: translateX(60px);
  }

  100% {
    transform: translateX(0);
  }
}

.cp_container {
  position: relative;
  z-index: 20;
}


.con_ftbana {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin: 10% auto;
  max-width: 1200px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .con_ftbana {
    gap: 20px;
    margin: 15% auto 10%;
  }
}

.ftbana {
  max-width: 500px;
  width: 80%;
}

.ftbana a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}


.baloon01 {
  position: absolute;
  width: 90px;
  left: 5%;
  top: 10%;
  animation: moveY 3s steps(2, start) infinite;
}

.baloon02 {
  position: absolute;
  width: 90px;
  right: 3%;
  top: 10%;
  animation: moveY 3s steps(2, start) infinite;
}

.baloon03 {
  position: absolute;
  width: 90px;
  left: 5%;
  top: 50%;
  animation: moveY 3s steps(2, start) infinite;
}

.baloon04 {
  position: absolute;
  width: 90px;
  right: 3%;
  top: 50%;
  animation: moveY 3s steps(2, start) infinite;
}

.baloon05 {
  position: absolute;
  width: 130px;
  left: 5%;
  top: 80%;
  animation: moveY 3s steps(2, start) infinite;
}

.baloon06 {
  position: absolute;
  width: 130px;
  right: 3%;
  top: 80%;
  animation: moveY 3s steps(2, start) infinite;
}

@media screen and (max-width: 900px) {
  .baloon05 {
    top: 85%;
  }

  .baloon06 {
    top: 85%;
  }
}

@media screen and (max-width: 767px) {
  .baloon01 {
    position: absolute;
    width: 50px;
    left: 5%;
    top: 5%;
  }

  .baloon02 {
    position: absolute;
    width: 50px;
    right: 3%;
    top: 5%;
  }

  .baloon03 {
    position: absolute;
    width: 50px;
    left: 5%;
    top: 40%;
  }

  .baloon04 {
    position: absolute;
    width: 50px;
    right: 3%;
    top: 40%;
  }

  .baloon05 {
    position: absolute;
    width: 80px;
    left: 5%;
    top: 85%;
  }

  .baloon06 {
    position: absolute;
    width: 80px;
    right: 3%;
    top: 85%;
  }
}

@keyframes moveY {
  0% {
    transform: translateY(60px);
  }

  100% {
    transform: translateY(0);
  }
}

.cloud01 {
  position: absolute;
  width: 200px;
  top: 5%;
  right: 0;
  animation: moveY 3s steps(2, start) infinite;
}

.cloud02 {
  position: absolute;
  width: 200px;
  top: 45%;
  left: 5%;
  animation: moveY 3s steps(2, start) infinite;
}

@media screen and (max-width: 767px) {
  .cloud01 {
    width: 120px;
  }

  .cloud02 {
    width: 120px;
  }
}

.cloud03 {
  position: absolute;
  width: 150px;
  top: 20%;
  right: 5%;
  animation: moveY 3s steps(2, start) infinite;
}

@media screen and (max-width: 767px) {
  .cloud03 {
    width: 80px;
    top: 20%;
  }
}

.cloud04 {
  position: absolute;
  width: 150px;
  top: 70%;
  left: 5%;
  animation: moveY 3s steps(2, start) infinite;
}

@media screen and (max-width: 767px) {
  .cloud04 {
    width: 80px;
    top: 80%;
  }
}


.cloud-l {
  position: absolute;
  width: 150px;
  top: 60%;
  right: 5%;
  animation: moveY 3s steps(2, start) infinite;
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .cloud-l {
    width: 80px;
    top: 70%;
  }
}

.cloud-r {
  position: absolute;
  width: 150px;
  top: 30%;
  left: 5%;
  animation: moveY 3s steps(2, start) infinite;
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .cloud-r {
    width: 80px;
    top: 30%;
  }
}