@charset "UTF-8";
body {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: #4A3636;
  background-color: #E9F6F8;
  font-family: "Noto Sans JP", sans-serif;
}

.wrapper {
  overflow: hidden;
}

.inner {
  max-width: 640px;
  padding-inline: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .inner {
    padding-inline: 30px;
    max-width: 1084px;
    margin-inline: auto;
  }
}

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

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

.hidden-pc {
  display: block !important;
}
@media screen and (min-width: 900px) {
  .hidden-pc {
    display: none !important;
  }
}

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

.button {
  min-width: 192px;
  border: 2px solid #4A3636;
  background: #FFF;
  padding: 4px 22px 6px;
  border-radius: 40px;
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  display: inline;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 374px) {
  .button {
    font-size: 13px;
    padding-bottom: 5px;
  }
}
@media screen and (min-width: 900px) {
  .button {
    min-width: 132px;
    font-size: 14px;
  }
}
.button:hover {
  background-color: #FFEE56;
}

.header {
  height: 64px;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .header {
    padding-inline: 24px;
  }
}

.header__inner {
  padding-block: 18px;
  padding-inline: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 900px) {
  .header__inner {
    padding-inline: 0;
    padding-block: 20px;
  }
}

.header__logo a img {
  width: 210px;
}
@media screen and (min-width: 900px) {
  .header__logo a img {
    width: 183px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 900px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__link {
  -webkit-transition: color 0.3s, -webkit-text-decoration 0.3s;
  transition: color 0.3s, -webkit-text-decoration 0.3s;
  transition: color 0.3s, text-decoration 0.3s;
  transition: color 0.3s, text-decoration 0.3s, -webkit-text-decoration 0.3s;
}
.header__link:hover {
  color: #67B0C7;
  -webkit-text-decoration: solid underline #67B0C7;
          text-decoration: solid underline #67B0C7;
}

.header__nav-button {
  margin-left: 4px;
  margin-top: -1px;
}

.drawer-icon {
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 51;
}
@media screen and (min-width: 900px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 12px;
  width: 100%;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 12px;
}
.drawer-icon.is-checked .drawer-icon__bar .drawer-icon__dot {
  display: none;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 6px;
  background: #4A3636;
  -webkit-transition: linear, top 0.3s, -webkit-transform 0.3s;
  transition: linear, top 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, linear, top 0.3s;
  transition: transform 0.3s, linear, top 0.3s, -webkit-transform 0.3s;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0;
  width: 25.6px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 12px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 24px;
}

.drawer-icon__dot {
  position: absolute;
  top: 0;
  right: -6.4px;
  width: 4.8px;
  height: 3px;
  border-radius: 6px;
  background: #4A3636;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 61px;
  right: 0;
  background: #fff;
  z-index: 50;
  padding: 82px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  text-align: center;
}

.drawer-content__link {
  font-size: 14px;
}

.drawer-content__button {
  margin-top: 6px;
}

.mv {
  position: relative;
  padding-top: 18px;
}
@media screen and (min-width: 900px) {
  .mv {
    padding-top: 34px;
  }
}

.mv__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: calc(100% - 156px);
  overflow: hidden;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
}
@media screen and (min-width: 900px) {
  .mv__bg {
    height: calc(100% - 92px);
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}
.mv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.mv__inner {
  position: relative;
  margin-inline: auto;
}
@media screen and (max-width: 374px) {
  .mv__inner {
    padding-inline: 20px;
    max-width: 540px;
  }
}
@media screen and (min-width: 600px) {
  .mv__inner {
    padding-inline: 30px;
    max-width: 560px;
  }
}
@media screen and (min-width: 768px) {
  .mv__inner {
    padding-inline: 100px;
    max-width: 700px;
  }
}
@media screen and (min-width: 900px) {
  .mv__inner {
    padding-inline: 30px;
    max-width: 908px;
  }
}

@media screen and (min-width: 900px) {
  .mv__content {
    width: 848px;
  }
}

.mv__text {
  text-align: center;
  text-shadow: 0px 0px 30px #FFF;
  font-family: "Kiwi Maru", serif;
  font-size: 14px;
  line-height: 125%; /* 17.5px */
}
@media screen and (min-width: 1200px) {
  .mv__text {
    font-size: 24px;
    font-weight: 500;
    line-height: 125%; /* 30px */
  }
}

.mv__lead {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .mv__lead {
    margin-top: 24px;
    gap: 16px;
  }
}
.mv__lead img {
  margin: 0 auto;
}
.mv__lead img:nth-child(1) {
  width: 335px;
}
@media screen and (min-width: 1200px) {
  .mv__lead img:nth-child(1) {
    width: 520px;
  }
}
.mv__lead img:nth-child(2) {
  width: 240px;
}
@media screen and (min-width: 1200px) {
  .mv__lead img:nth-child(2) {
    width: 356px;
  }
}

.mv__decoration-wrap {
  margin-top: 10px;
  position: relative;
  height: 522px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .mv__decoration-wrap {
    height: 400px;
  }
}
@media screen and (min-width: 900px) {
  .mv__decoration-wrap {
    margin-top: 33px;
    height: 522px;
  }
}
@media screen and (min-width: 1200px) {
  .mv__decoration-wrap {
    margin-top: 33px;
    height: 522px;
  }
}

.mv__decoration-wrap-devises {
  position: absolute;
  top: 103px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 600px) {
  .mv__decoration-wrap-devises {
    top: 10px;
  }
}
@media screen and (min-width: 900px) {
  .mv__decoration-wrap-devises {
    top: 0;
  }
}
.mv__decoration-wrap-devises img {
  max-width: 200px;
}
@media screen and (min-width: 900px) {
  .mv__decoration-wrap-devises img {
    max-width: 250px;
  }
}

.mv__decoration-wrap-fukidashi {
  position: absolute;
  top: 8px;
  left: 0;
}
@media screen and (min-width: 600px) {
  .mv__decoration-wrap-fukidashi {
    left: -25px;
  }
}
@media screen and (min-width: 768px) {
  .mv__decoration-wrap-fukidashi {
    left: -50px;
  }
}
@media screen and (min-width: 900px) {
  .mv__decoration-wrap-fukidashi {
    top: -32px;
    left: 37px;
  }
}
.mv__decoration-wrap-fukidashi img {
  width: 142px;
}
@media screen and (min-width: 600px) {
  .mv__decoration-wrap-fukidashi img {
    width: 170px;
  }
}
@media screen and (min-width: 768px) {
  .mv__decoration-wrap-fukidashi img {
    width: 194px;
  }
}
@media screen and (min-width: 900px) {
  .mv__decoration-wrap-fukidashi img {
    width: 244px;
  }
}

.mv__decoration-wrap-present {
  position: absolute;
  top: 0;
  right: 25px;
}
@media screen and (min-width: 900px) {
  .mv__decoration-wrap-present {
    right: 20px;
  }
}
@media screen and (min-width: 900px) {
  .mv__decoration-wrap-present {
    top: -15px;
    right: 127px;
  }
}
.mv__decoration-wrap-present img {
  width: 110px;
}
@media screen and (min-width: 600px) {
  .mv__decoration-wrap-present img {
    width: 130px;
  }
}
@media screen and (min-width: 900px) {
  .mv__decoration-wrap-present img {
    width: 180px;
  }
}

.mv__decoration-wrap-food-monaka {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 54.069px;
  z-index: 3;
}
@media screen and (min-width: 600px) {
  .mv__decoration-wrap-food-monaka {
    width: 73px;
    left: 30px;
  }
}
@media screen and (min-width: 900px) {
  .mv__decoration-wrap-food-monaka {
    width: 127px;
    left: 40px;
    bottom: -4px;
  }
}
@media screen and (min-width: 1200px) {
  .mv__decoration-wrap-food-monaka {
    left: 0;
  }
}

.mv__decoration-wrap-food-coffee {
  position: absolute;
  width: 47.257px;
  left: 43px;
  bottom: 17px;
  z-index: 2;
}
@media screen and (min-width: 600px) {
  .mv__decoration-wrap-food-coffee {
    width: 64px;
    left: 73px;
  }
}
@media screen and (min-width: 900px) {
  .mv__decoration-wrap-food-coffee {
    width: 111px;
    left: 141px;
    bottom: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .mv__decoration-wrap-food-coffee {
    left: 101px;
  }
}

.mv__decoration-wrap-cats-black {
  position: absolute;
  width: 62px;
  right: 0;
  bottom: 58px;
  z-index: 3;
}
@media screen and (min-width: 600px) {
  .mv__decoration-wrap-cats-black {
    width: 108px;
    right: 10px;
  }
}
@media screen and (min-width: 900px) {
  .mv__decoration-wrap-cats-black {
    width: 170px;
    right: 83px;
    bottom: 55px;
  }
}
@media screen and (min-width: 1200px) {
  .mv__decoration-wrap-cats-black {
    right: 63px;
  }
}

.mv__decoration-wrap-cats-yellow {
  position: absolute;
  width: 98px;
  right: 9px;
  bottom: 0;
  z-index: 3;
}
@media screen and (min-width: 600px) {
  .mv__decoration-wrap-cats-yellow {
    width: 135px;
    right: 19px;
  }
}
@media screen and (min-width: 900px) {
  .mv__decoration-wrap-cats-yellow {
    width: 233px;
    right: 20px;
    bottom: -48px;
  }
}
@media screen and (min-width: 1200px) {
  .mv__decoration-wrap-cats-yellow {
    right: 0;
  }
}

.about {
  margin-top: 32px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .about {
    margin-top: 86px;
  }
}

.about__decoration {
  position: absolute;
}
.about__decoration img {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.about__inner {
  max-width: 375px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 600px) {
  .about__inner {
    max-width: 540px;
  }
}
@media screen and (min-width: 900px) {
  .about__inner {
    max-width: 740px;
  }
}
@media screen and (min-width: 1200px) {
  .about__inner {
    max-width: 888px;
  }
}

.about__content {
  background: #fff;
  border-radius: 24px;
  padding: 40px 12px;
  text-align: center;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .about__content {
    padding: 40px 114px;
    border-radius: 40px;
    max-width: 848px;
  }
}
.about__content::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 36px;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #CCE1E4;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .about__content::after {
    width: 140px;
    height: 50px;
  }
}

.about__heading::before {
  background: url(../img/about.png);
}

.heading {
  position: relative;
  padding-top: 43.33px;
  text-align: center;
}
.heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 37.333px;
  height: 37.333px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .heading::before {
    width: 48px;
    height: 48px;
  }
}

.heading__en {
  font-family: Courgette;
  font-size: 16px;
  line-height: 125%; /* 25px */
}
@media screen and (min-width: 900px) {
  .heading__en {
    margin-top: 12px;
    font-size: 20px;
  }
}

.heading__ja {
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 125%; /* 25px */
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 6px solid #FFEE56;
  margin-top: 6px;
}
@media screen and (min-width: 900px) {
  .heading__ja {
    margin-top: 8px;
    font-size: 32px;
    border-bottom: 8px solid #FFEE56;
    padding-bottom: 8px;
  }
}

.about__heading-decoration-l {
  position: absolute;
  top: 31px;
  left: 33px;
  width: 88px;
}
@media screen and (min-width: 600px) {
  .about__heading-decoration-l {
    width: 147px;
    top: 46.35px;
    left: -50px;
  }
}
@media screen and (min-width: 1200px) {
  .about__heading-decoration-l {
    width: 147px;
    top: 39.35px;
    left: 85px;
  }
}

.about__heading-decoration-r {
  position: absolute;
  top: 30px;
  right: 19.78px;
  width: 88px;
}
.about__heading-decoration-r img {
  max-width: 100%;
}
@media screen and (min-width: 600px) {
  .about__heading-decoration-r {
    width: 147px;
    top: 46.35px;
    right: -50px;
  }
}
@media screen and (min-width: 1200px) {
  .about__heading-decoration-r {
    width: 147px;
    top: 46.35px;
    right: 84.3px;
  }
}

.about__decoration-pawprint {
  top: -10px;
  right: 0;
  width: 54px;
}
@media screen and (min-width: 768px) {
  .about__decoration-pawprint {
    width: 80px;
    right: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-pawprint {
    width: 100px;
    top: -80px;
    right: 165.88px;
  }
}

.about__heading-sub {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .about__heading-sub {
    margin-top: 33px;
    font-size: 16px;
  }
}

.about__texts {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .about__texts {
    margin-top: 32px;
  }
}

@media screen and (min-width: 900px) {
  .about__text {
    font-size: 16px;
  }
}
.about__text:not(:first-child) {
  margin-top: 1.5em;
}
@media screen and (min-width: 900px) {
  .about__text:not(:first-child) {
    margin-top: 1.7em;
  }
}

.link-text {
  text-decoration-line: underline;
}
.link-text:hover {
  color: #67B0C7;
}

.fontweight-bold {
  font-weight: 700;
}

.about__strong-text {
  margin-top: 32px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px dashed #9ED0E0;
  padding-bottom: 6px;
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .about__strong-text {
    font-size: 20px;
    padding-bottom: 10px;
    padding-top: 12px;
  }
}

.about__button {
  margin-top: 24px;
}
.about__button .button {
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .about__button {
    margin-top: 33px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    max-width: 260px;
  }
  .about__button .button {
    font-size: 20px;
    border: 3px solid #4A3636;
    padding: 7px 37px 9px 37px;
  }
}

.about__decoration-goods-1 {
  bottom: 218px;
  right: 21px;
  width: 48px;
}
@media screen and (min-width: 900px) {
  .about__decoration-goods-1 {
    width: 80px;
    bottom: 490px;
    right: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-goods-1 {
    width: 101px;
    bottom: 585.63px;
    right: 150px;
  }
}

.about__decoration-goods-2 {
  bottom: 159px;
  right: 57px;
  width: 133px;
}
@media screen and (min-width: 900px) {
  .about__decoration-goods-2 {
    width: 200px;
    bottom: 380px;
    right: 74px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-goods-2 {
    width: 308px;
  }
}

.about__decoration-stairs {
  bottom: 62px;
  left: 0;
  width: 138px;
}
@media screen and (min-width: 900px) {
  .about__decoration-stairs {
    width: 427px;
    bottom: 150px;
    left: -103px;
  }
}

.about__decoration-photo {
  position: relative;
  overflow: hidden;
  width: auto;
}

.about__decoration-photo-r {
  position: absolute;
  top: 273px;
  right: -140px;
  width: 200px; /* もしくは適切な幅を指定 */
}
@media screen and (max-width: 374px) {
  .about__decoration-photo-r {
    width: 250px;
    right: -100px;
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-photo-r {
    width: 300px;
    right: -170px;
    top: 175px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-photo-r {
    width: 480px;
    top: 73px;
    right: -284px;
  }
}

.about__decoration-photo-l {
  position: absolute;
  top: 395px;
  left: -140px;
  width: 200px;
}
@media screen and (max-width: 374px) {
  .about__decoration-photo-l {
    width: 250px;
    left: -100px;
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-photo-l {
    width: 300px;
    top: 175px;
    left: -170px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-photo-l {
    width: 480px;
    top: 74px;
    left: -338px;
  }
}

.about__bottom {
  margin-top: 139px;
}
@media screen and (min-width: 900px) {
  .about__bottom {
    margin-top: 167px;
  }
}

.about__decoration-onomichi {
  position: relative;
  bottom: 0;
  display: block;
  width: 357px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 374px) {
  .about__decoration-onomichi {
    width: 500px;
  }
}
@media screen and (min-width: 600px) {
  .about__decoration-onomichi {
    width: 600px;
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-onomichi {
    width: 800px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-onomichi {
    width: 891px;
  }
}

.about__swiper {
  width: 100%;
  height: 100px;
}
@media screen and (min-width: 900px) {
  .about__swiper {
    height: 200px;
    margin-top: -4px;
  }
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  height: 100px; /* 高さを指定 */
  width: 100px;
  margin-right: 10px;
}
@media screen and (min-width: 900px) {
  .swiper-slide {
    height: 200px; /* 高さを指定 */
    width: 200px;
    margin-right: 20px;
  }
}

.about__decoration-stripe {
  width: 250px;
  top: -20px;
  left: -20px;
}

.about__decoration-waves {
  width: 873.922px;
  top: 605.33px;
  right: -566px;
}

.how-to-enter {
  padding-top: 64.8px;
  padding-bottom: 37.67px;
}
@media screen and (min-width: 900px) {
  .how-to-enter {
    padding-block: 120px;
  }
}

.how-to-enter__inner {
  position: relative;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 375px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__inner {
    max-width: 900px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__inner {
    max-width: 1512px;
  }
}

.how-to-enter__decoration {
  position: absolute;
  z-index: -1;
}
.how-to-enter__decoration img {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.how-to-enter__decoration-paws1 {
  width: 55px;
  height: 120px;
  top: 72px;
  right: 20px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__decoration-paws1 {
    width: 70px;
    height: 220px;
    top: 190px;
    right: -20px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__decoration-paws1 {
    width: 100px;
    top: 148px;
    right: 36px;
  }
}

.how-to-enter__decoration-paws2 {
  width: 55px;
  height: 120.12px;
  top: 547px;
  left: 20px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__decoration-paws2 {
    width: 70px;
    height: 220px;
    top: 580px;
    left: -20px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__decoration-paws2 {
    width: 100px;
    height: 220px;
    left: 36px;
  }
}

.how-to-enter__decoration-paws3 {
  width: 55px;
  height: 120.12px;
  top: 878px;
  right: 20px;
}

.how-to-enter__decoration-cat1 {
  width: 94px;
  height: 80.046px;
  top: 4px;
  right: -30px;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .how-to-enter__decoration-cat1 {
    width: 186px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__decoration-cat1 {
    width: 214px;
    height: 181px;
    top: -18px;
    right: 105px;
  }
}

.how-to-enter__decoration-cat2 {
  width: 105px;
  height: 63px;
  top: 0;
  right: 24px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__decoration-cat2 {
    width: 200px;
    right: 83px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__decoration-cat2 {
    width: 238px;
    height: 141px;
    top: -26px;
    right: 231px;
  }
}

.how-to-enter__decoration-map {
  width: 135px;
  top: 0;
  left: 0;
}
@media screen and (min-width: 900px) {
  .how-to-enter__decoration-map {
    width: 280px;
    left: 6px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__decoration-map {
    width: 420px;
    top: -60px;
    left: 36px;
  }
}

.how-to-enter__heading::before {
  position: absolute;
  background: url(../img/how-to-use.png);
  width: 37.333px;
  height: 37.333px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .how-to-enter__heading::before {
    width: 48px;
    height: 48px;
  }
}

.how-to-enter__steps {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .how-to-enter__steps {
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__steps {
    gap: 58px;
  }
}

.how-to-enter__step {
  position: relative;
}
.how-to-enter__step:nth-child(-n+2)::after {
  position: absolute;
  content: "";
  background-image: url(../img/dashed-sp.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  height: 36px;
  top: calc(100% + 16px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .how-to-enter__step:nth-child(-n+2)::after {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__step {
    width: 294px;
  }
  .how-to-enter__step:nth-child(2) {
    margin-top: 69px;
  }
  .how-to-enter__step:nth-of-type(-n+2)::after {
    background-image: url(../img/dashed-pc.png);
  }
}
@media screen and (min-width: 900px) and (min-width: 768px) {
  .how-to-enter__step:nth-of-type(-n+2)::after {
    display: block;
    width: 80px;
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .how-to-enter__step:nth-of-type(-n+2)::after {
    width: 113px;
    height: 24px;
  }
}
@media screen and (min-width: 900px) and (min-width: 768px) {
  .how-to-enter__step:nth-of-type(-n+2):nth-of-type(1)::after {
    top: 182px;
    left: 292px;
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .how-to-enter__step:nth-of-type(-n+2):nth-of-type(1)::after {
    top: 205px;
    left: 298px;
  }
}
@media screen and (min-width: 900px) and (min-width: 768px) {
  .how-to-enter__step:nth-of-type(-n+2):nth-of-type(2)::after {
    top: 114px;
    left: 296px;
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .how-to-enter__step:nth-of-type(-n+2):nth-of-type(2)::after {
    top: 136px;
    left: 308px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__step {
    max-width: 320px;
  }
}

.step-box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.step-box__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.step-box__image img {
  height: 210px;
}
@media screen and (min-width: 900px) {
  .step-box__image img {
    height: 280px;
  }
}
@media screen and (min-width: 1200px) {
  .step-box__image img {
    height: 300px;
  }
}

.step-box__head {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .step-box__head {
    font-size: 20px;
    margin-top: 10px;
  }
}

@media screen and (min-width: 900px) {
  .step-box__description {
    width: 320px;
  }
}
@media screen and (min-width: 1200px) {
  .step-box__description {
    font-size: 16px;
  }
}

.follow__button {
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  position: relative;
  background: #fff;
  padding: 8px 12px 8px 40px;
}
.follow__button:hover {
  outline: 1px solid #9ED0E0;
}
.follow__button::before {
  position: absolute;
  content: "";
  background-image: url(../img/htu-instagram.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .follow__button {
    font-size: 16px;
    padding: 7px 10px 7px 42px;
  }
  .follow__button::before {
    width: 24px;
    height: 24px;
    left: 10px;
  }
}

.how-to-enter__button {
  margin-top: 14px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .how-to-enter__button {
    margin-top: 48px;
  }
}
.how-to-enter__button .button {
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .how-to-enter__button .button {
    font-size: 20px;
    padding-top: 8px;
    padding-bottom: 9px;
    padding-inline: 37px;
    border-width: 3px;
  }
}

.prizes {
  padding-top: 20px;
  padding-bottom: 214px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .prizes {
    margin-top: 8px;
    padding-bottom: 640px;
  }
}

.prizes__inner {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (min-width: 900px) {
  .prizes__inner {
    padding-inline: 30px;
    max-width: 1084px;
  }
}

.prizes__content {
  padding-inline: 20px;
  padding-bottom: 36px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .prizes__content {
    max-width: 100%;
    padding-top: 8px;
    padding-bottom: 53px;
    padding-inline: 30px;
  }
}
.prizes__content::before, .prizes__content::after {
  position: absolute;
  content: "";
}
.prizes__content::before {
  width: 237.6px;
  height: 83px;
  top: -20px;
  left: 50%;
  background-image: url(../img/deco-prizes-1-sp.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .prizes__content::before {
    background-image: url(../img/deco-prizes-1-pc.png);
    width: 365.624px;
    height: 148.967px;
  }
}
.prizes__content::after {
  background-color: #fff;
  width: 100%;
  height: calc(100% - 63px);
  display: block;
  border-radius: 24px;
  overflow: hidden;
  top: 63px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .prizes__content::after {
    height: calc(100% - 126px);
    top: 128px;
  }
}

.prizes__decoration-triangle-l {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes__decoration-triangle-l {
    display: block;
    position: absolute;
    top: 6px;
    left: 0;
    width: 315px;
  }
}

.prizes__decoration-triangle-r {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes__decoration-triangle-r {
    display: block;
    position: absolute;
    top: 6px;
    right: 0;
    width: 315px;
  }
}

.prizes__heading::before {
  position: absolute;
  background: url(../img/prizes.png);
  width: 37.333px;
  height: 37.333px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .prizes__heading::before {
    width: 48px;
    height: 48px;
  }
}

.prizes__text {
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .prizes__text {
    margin-top: 40px;
    font-size: 16px;
    font-weight: 400;
  }
}

.prizes__cards {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 38px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .prizes__cards {
    margin-top: 82px;
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(6, 1fr);
    grid-row-gap: 78px;
    grid-column-gap: 34px;
    max-width: 912px;
    margin-right: auto;
    margin-left: auto;
  }
}

.prizes__card {
  position: relative;
  width: calc(50% - 7.5px);
}
@media screen and (min-width: 900px) {
  .prizes__card {
    width: 100%;
  }
  .prizes__card:nth-of-type(1) {
    grid-area: 1/1/2/4;
  }
  .prizes__card:nth-of-type(2) {
    grid-area: 1/4/2/7;
  }
  .prizes__card:nth-of-type(3) {
    grid-area: 2/1/3/3;
  }
  .prizes__card:nth-of-type(4) {
    grid-area: 2/3/3/5;
  }
  .prizes__card:nth-of-type(5) {
    grid-area: 2/5/3/7;
  }
}
.prizes__card:hover .prizes__card-image img,
.prizes__card:hover .prizes__card-image-small img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.prizes__card:hover .prizes__card-zoom .zoom-icon_bg {
  fill: #9ED0E0;
}

.prizes__card-number {
  position: absolute;
  width: 48px;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}

@media screen and (min-width: 900px) {
  .prizes__card .prizes__card-number {
    top: -30px;
    width: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__card .prizes__card-number {
    top: -38px;
    width: 80px;
  }
}

.prizes__card--large .prizes__card-number {
  top: -25px;
}
@media screen and (min-width: 1200px) {
  .prizes__card--large .prizes__card-number img {
    width: 100px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card--large .prizes__card-number {
    top: -50px;
    width: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__card--large .prizes__card-number {
    width: 100px;
  }
}

@media screen and (min-width: 900px) {
  .prizes__card--large .prizes__card-inner {
    border-radius: 24px;
  }
}

.prizes__card-inner {
  position: relative;
  background-color: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .prizes__card-inner {
    border-radius: 16px;
  }
}

.prizes__card-image {
  display: block;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .prizes__card-image {
    width: 100%;
    height: 100%;
    border-top-right-radius: 24px;
    border-top-left-radius: 24px;
  }
}
.prizes__card-image img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.prizes__card-image-small {
  display: block;
  overflow: hidden;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
@media screen and (min-width: 900px) {
  .prizes__card-image-small {
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
  }
}
.prizes__card-image-small img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.prizes__card-heading {
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  min-height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 9px;
  border-bottom-left-radius: 8px;
  background: #f5f5f5;
}
@media screen and (min-width: 900px) {
  .prizes__card-heading {
    padding-top: 7px;
    padding-right: 5px;
    padding-left: 5px;
    padding-bottom: 5px;
  }
}

@media screen and (min-width: 900px) {
  .prizes__card .prizes__card-heading {
    font-size: 16px;
    min-height: 80px;
    max-width: 280px;
    padding: 15px 0px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
}

@media screen and (min-width: 900px) {
  .prizes__card--large .prizes__card-heading {
    font-size: 20px;
    min-height: 120px;
    max-width: 440px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
}

@media screen and (min-width: 900px) {
  .prizes__card--large .prizes__card-zoom .zoom-xl {
    width: 100px;
    height: 100px;
    right: 0;
  }
}

.prizes__card-zoom {
  position: absolute;
  right: 0;
  bottom: -4px;
}

@media screen and (min-width: 900px) {
  .prizes__card .prizes__card-zoom svg {
    width: 64px;
    height: 64px;
    right: 0;
  }
}

.prizes__content .how-to-enter__button {
  margin-top: 18px;
}
@media screen and (min-width: 900px) {
  .prizes__content .how-to-enter__button {
    margin-top: 41px;
  }
}

@media screen and (min-width: 900px) {
  .prizes-card--large .prizes-card-button {
    border-radius: 24px;
  }
}

.prizes-card__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  outline: none;
}
.prizes-card__button:hover {
  border: 2px solid #9ED0E0;
}
@media screen and (min-width: 900px) {
  .prizes-card__button:hover {
    border-width: 4px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card__button {
    border-radius: 16px;
  }
}

@media screen and (min-width: 900px) {
  .prizes__card--large .prizes-card__button {
    border-radius: 24px;
  }
}

.prizes-modal {
  position: fixed;
  inset: 0;
  width: 336px;
  max-width: calc(100% - 20px);
  height: 480px;
  max-height: calc(100% - 20px);
  padding-top: 0;
  padding-right: 20px;
  padding-left: 20px;
  text-align: center;
  background: #fff;
  border: none;
  border-radius: 24px;
  z-index: 60;
  overflow-y: auto;
  overscroll-behavior-y: none;
}
@media screen and (min-width: 900px) {
  .prizes-modal {
    width: 480px;
    height: 650px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
.prizes-modal::-ms-backdrop {
  background: #000;
  opacity: 0.7;
}
.prizes-modal::backdrop {
  background: #000;
  opacity: 0.7;
}

.prizes-modal__image {
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__image {
    width: calc(100% + 80px);
    margin-left: -40px;
    margin-right: -40px;
  }
}
.prizes-modal__image img {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.prizes-modal__head {
  margin-top: 39px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .prizes-modal__head {
    font-size: 20px;
  }
}

.prizes-modal__text {
  margin-top: 12px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__text {
    font-size: 16px;
  }
}

.prizes-modal__button {
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__button {
    margin-top: 24px;
  }
}

.prizes-modal__button .button {
  min-width: 0;
}
@media screen and (min-width: 900px) {
  .prizes-modal__button .button {
    min-width: 96px;
    font-size: 20px;
    padding-top: 8px;
    padding-right: 37px;
    padding-bottom: 10px;
    padding-left: 37px;
    border-width: 3px;
  }
}

.js-modal-close {
  margin-top: 24px;
}

.prizes__bg {
  position: absolute;
  width: 100%;
  min-width: 580px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -10;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
@media screen and (min-width: 900px) {
  .prizes__bg {
    min-width: 1512px;
  }
}

.spot {
  position: relative;
  padding-top: 46.7px;
  padding-bottom: 45.7px;
  margin-top: -45.7px;
}
@media screen and (min-width: 900px) {
  .spot {
    margin-top: -120px;
    padding-top: 117px;
    padding-bottom: 120px;
    position: relative;
  }
}
.spot::before, .spot::after {
  position: absolute;
  left: 0;
  width: 100%;
  content: "";
  background-position: left;
  background-repeat: repeat-x;
  background-size: contain;
}
.spot::before {
  height: 45.7px;
  background-image: url(../img/wave-top.png);
  top: 1px;
}
@media screen and (min-width: 900px) {
  .spot::before {
    height: 120px;
    background-image: url(../img/wave-top-pc.png);
    top: 1px;
  }
}
.spot::after {
  height: 45.7px;
  background-image: url(../img/wave-bottom.png);
  bottom: 1px;
}
@media screen and (min-width: 900px) {
  .spot::after {
    height: 120px;
    background-image: url(../img/wave-bottom-pc.png);
  }
}

.spot__decoration-pawprint {
  position: absolute;
  width: 100px;
  height: 220px;
  bottom: 120px;
  left: calc(50% - 720px);
}

.spot__outer {
  background: #67B0C7;
  padding-bottom: 21.86px;
}
@media screen and (min-width: 900px) {
  .spot__outer {
    padding-bottom: 1px;
    padding-top: 1px;
  }
}

@media screen and (min-width: 900px) {
  .spot__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    padding-left: max(30px, 50% - 512px);
  }
}

.spot__heading-wrap {
  text-align: center;
}

.spot__heading {
  position: relative;
  display: inline-block;
  font-family: "Kiwi Maru";
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 125%; /* 35px */
  padding-left: 36px;
}
@media screen and (min-width: 900px) {
  .spot__heading {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 32px;
    letter-spacing: 0.25em;
    padding-top: 72px;
    padding-right: 3px;
    padding-left: 3px;
  }
}
@media screen and (min-width: 1200px) {
  .spot__heading {
    font-size: 40px;
  }
}
.spot__heading::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-image: url(../img/star.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .spot__heading::before {
    width: 48px;
    height: 48px;
    top: 0;
    left: 100%;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@media screen and (min-width: 1200px) {
  .spot__heading::before {
    width: 56px;
    height: 56px;
  }
}

.spot__slider {
  margin-top: 22px;
}
@media screen and (min-width: 900px) {
  .spot__slider {
    margin-top: 0;
    width: calc(100% - 56px - 32px);
  }
}

.spot-swiper__slide {
  height: auto;
}

.spot__card {
  height: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding-inline: 24px;
  padding-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .spot__card {
    padding-inline: 32px;
    padding-bottom: 40px;
    border-radius: 24px;
  }
}

.spot-card__image {
  display: block;
  width: calc(100% + 48px);
  margin-left: -24px;
}
@media screen and (min-width: 900px) {
  .spot-card__image {
    width: calc(100% + 64px);
    margin-left: -32px;
  }
}

.spot-card__texts {
  margin-top: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
@media screen and (min-width: 900px) {
  .spot-card__texts {
    margin-top: 25px;
    gap: 25px;
  }
}

.spot-card__heading {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spot-card__heading {
    font-size: 19px;
  }
}
@media screen and (min-width: 1200px) {
  .spot-card__heading {
    font-size: 20px;
  }
}

.spot-card__text {
  text-align: left;
}
@media screen and (min-width: 900px) {
  .spot-card__text {
    font-size: 16px;
  }
}

.spot__arrows {
  position: relative;
  max-width: 700px;
  margin-top: -10px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1200px) {
  .spot__arrows {
    margin-top: -32px;
    max-width: 944px;
  }
}

.spot__swiper-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.spot-prev,
.spot-next {
  width: 80px;
  height: 80px;
  background-color: #FFEE56;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
  background-size: 16px 27px;
  position: static;
  -webkit-transition: background-position 0.3s ease-in-out;
  transition: background-position 0.3s ease-in-out;
}
.spot-prev::after,
.spot-next::after {
  display: none;
}

.spot-prev {
  background-image: url(../img/spot_arrow-l.svg);
}
.spot-prev:hover {
  background-position: 40% center;
}

.spot-next {
  background-image: url(../img/spot_arrow-r.svg);
}
.spot-next:hover {
  background-position: 60% center;
}

@media screen and (min-width: 900px) {
  .spot__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 50px;
    margin-top: 39px;
  }
}
@media screen and (min-width: 1200px) {
  .spot__bottom {
    gap: 81px;
  }
}

.spot__decoration-spots {
  display: block;
  width: 255px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .spot__decoration-spots {
    width: 320px;
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .spot__decoration-spots {
    width: 496px;
  }
}

@media screen and (min-width: 900px) {
  .spot__texts {
    margin-top: 1px;
  }
}

.spot__text {
  margin-top: 16px;
  font-size: 11.444px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spot__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .spot__text {
    margin-top: 0;
    font-size: 16px;
  }
}

.spot__texts .how-to-enter__button {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .spot__texts .how-to-enter__button {
    margin-top: 24px;
    margin-right: 2px;
    margin-bottom: 5px;
    text-align: right;
  }
}

.qa {
  padding-top: 37px;
}
@media screen and (min-width: 900px) {
  .qa {
    padding-top: 119px;
  }
}

.qa__inner {
  max-width: 640px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .qa__inner {
    max-width: 1084px;
    padding-right: 30px;
    padding-left: 30px;
  }
}

.qa__heading::before {
  position: absolute;
  background: url(../img/qa.png);
  width: 37.333px;
  height: 37.333px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .qa__heading::before {
    width: 48px;
    height: 48px;
  }
}

.qa__boxes {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
}
@media screen and (min-width: 900px) {
  .qa__boxes {
    margin-top: 40px;
    gap: 24px;
  }
}

.qa-box {
  border-radius: 12px;
  border: 2px solid #4A3636;
  background: #FFF;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .qa-box {
    border-radius: 16px;
  }
}
.qa-box.is-open .qa-box__head-toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

.qa-box1 .qa-box__head {
  padding: 10px 14px 12px;
}
@media screen and (min-width: 900px) {
  .qa-box1 .qa-box__head {
    padding: 21px 19px 22px 23px;
  }
}

.qa-box__head {
  padding: 10px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .qa-box__head {
    padding: 21px 19px 19px 22px;
    gap: 16px;
  }
}

.qa-box__head-q,
.qa-box__head-a {
  color: #9ED0E0;
  font-family: "Josefin Sans";
  font-size: 24px;
  line-height: 125%; /* 30px */
}
@media screen and (min-width: 900px) {
  .qa-box__head-q,
  .qa-box__head-a {
    font-size: 32px;
  }
}

.qa-box__head-text {
  font-size: 14px;
  text-align: left;
  font-weight: 700;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 900px) {
  .qa-box__head-text {
    font-size: 20px;
  }
}

.qa-box__head-toggle {
  position: relative;
  display: block;
  width: 100%;
  max-width: 26px;
  height: 26px;
  background-color: #9ED0E0;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .qa-box__head-toggle {
    max-width: 48px;
    height: 48px;
  }
}
.qa-box__head-toggle::before, .qa-box__head-toggle::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 900px) {
  .qa-box__head-toggle::before, .qa-box__head-toggle::after {
    width: 19px;
    height: 3px;
  }
}
.qa-box__head-toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.qa-box__body {
  padding-top: 16px;
  padding-left: 14px;
  padding-right: 14px;
  padding-bottom: 14px;
  background: #F5F5F5;
  display: none;
}
@media screen and (min-width: 900px) {
  .qa-box__body {
    padding: 24px 23px 21px;
  }
}

.qa-box1 .qa-box__body {
  display: block;
}

.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.qa-box__head-a {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.qa-box__a-text {
  font-size: 14px;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 900px) {
  .qa-box__a-text {
    font-size: 16px;
  }
}

.entry-requirements {
  padding-top: 30.67px;
}
@media screen and (min-width: 900px) {
  .entry-requirements {
    padding-top: 121px;
  }
}

.entry-requirements__content {
  border: 8px solid #FFF;
  background: rgba(255, 255, 255, 0.5);
  padding-block: 16px 24px;
  padding-inline: 13.5px;
  margin-bottom: 32px;
}
@media screen and (min-width: 600px) {
  .entry-requirements__content {
    padding-inline: 48px;
  }
}
@media screen and (min-width: 900px) {
  .entry-requirements__content {
    padding: 32px 48px 47px;
    margin-bottom: 120px;
  }
}

.entry-requirements__heading::before {
  position: absolute;
  background: url(../img/entre-requirements.png);
  width: 37.333px;
  height: 37.333px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .entry-requirements__heading::before {
    width: 48px;
    height: 48px;
  }
}

.entry-requirements__table {
  margin-top: 21px;
}
@media screen and (min-width: 900px) {
  .entry-requirements__table {
    margin-top: 40px;
  }
}

.entry-requirements-table {
  width: 100%;
}

.entry-requirements-table_1 .entry-requirements-table__row {
  padding-top: 0;
}

.entry-requirements-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding-top: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 900px) {
  .entry-requirements-table__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-top: 12px;
    padding-bottom: 8px;
    padding-left: 14px;
  }
}

.entry-requirements-table_5 .entry-requirements-table__row {
  padding-bottom: 0;
  border: none;
}

.entry-requirements-table-header {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  -moz-text-align-last: left;
       text-align-last: left;
  padding-left: 16px;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .entry-requirements-table-header {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    font-size: 16px;
    width: 103px;
    margin-top: -2px;
  }
}
.entry-requirements-table-header::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #9ED0E0;
  border-radius: 50%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 900px) {
  .entry-requirements-table-date {
    width: calc(100% - 224px);
    font-size: 16px;
  }
}
.entry-requirements-table-date li {
  position: relative;
  padding-left: 1.5em;
}
.entry-requirements-table-date li::before {
  position: absolute;
  top: 0.1em;
  left: 0.2em;
  content: "・";
}

.entry-requirements__bg img {
  width: 100%;
}

.contact {
  padding-top: 39px;
  padding-bottom: 45px;
  background-color: #fff;
}
@media screen and (min-width: 900px) {
  .contact {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media screen and (min-width: 600px) {
  .contact__inner {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 900px) {
  .contact__inner {
    max-width: 848px;
    padding-inline: 0;
    margin-inline: auto;
  }
}

.contact__heading::before {
  position: absolute;
  background: url(../img/contact.png);
  width: 37.333px;
  height: 37.333px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .contact__heading::before {
    width: 48px;
    height: 48px;
  }
}

.contact__text {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact__text {
    margin-top: 34px;
    font-size: 16px;
  }
}

.contact__form {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .contact__form {
    margin-top: 40px;
  }
}

.contact__field {
  margin-bottom: 24px;
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
}
@media screen and (min-width: 900px) {
  .form-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}

@media screen and (min-width: 900px) {
  .form-field-magazine {
    padding-top: 13px;
    padding-bottom: 15px;
  }
}

@media screen and (min-width: 900px) {
  .form-field-message {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .form-field__head {
    width: 180px;
  }
}

.form-field__label {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .form-field__label {
    font-size: 16px;
  }
}

.form-field__tag {
  border-radius: 4px;
  background: #CE2073;
  padding: 4px 8px;
  color: #fff;
}

@media screen and (min-width: 900px) {
  .form-field__item {
    width: calc(100% - 180px - 40px);
  }
}

.form-text,
.form-textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font: inherit;
  color: inherit;
  vertical-align: top;
  width: 100%;
  border-radius: 8px;
  border: 0 solid #fff;
  background: #F5F5F5;
  padding: 16px;
  font-size: 14px;
}
.form-text::-webkit-input-placeholder, .form-textarea::-webkit-input-placeholder {
  color: #ccc;
}
.form-text::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #ccc;
}
.form-text:-ms-input-placeholder, .form-textarea:-ms-input-placeholder {
  color: #ccc;
}
.form-text::-ms-input-placeholder, .form-textarea::-ms-input-placeholder {
  color: #ccc;
}
.form-text::placeholder,
.form-textarea::placeholder {
  color: #ccc;
}
@media screen and (min-width: 900px) {
  .form-text,
  .form-textarea {
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .form-text {
    height: 56px;
  }
}

.form-textarea {
  height: 160px;
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border-radius: 8px;
  background: #f5f5f5;
  border: none;
  font-size: 14px;
  padding: 16px 16px;
  background-image: url(../img/contact_arrow.png), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat;
  background-position: center right 11px, center center;
  background-size: 32px 32px, cover;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .form-select {
    font-size: 16px;
  }
}
.form-select:focus {
  outline-color: #9ED0E0;
}
.form-select.is-error {
  border: 1px solid #CE2073;
  background-image: url(../img/contact_arrow.png), linear-gradient(to left, #CE2073 52px, #FFF0F7 52px);
}
.form-select.is-error:focus {
  outline: #CE2073;
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
}

.form-radio {
  cursor: pointer;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}
.form-radio__input:focus + .form-radio__text::before {
  border: 1px solid #9ED0E0;
}

.form-radio__text {
  position: relative;
  font-size: 14px;
  padding-left: 32px;
}
@media screen and (min-width: 900px) {
  .form-radio__text {
    font-size: 16px;
    padding-left: 33px;
  }
}
.form-radio__text::before, .form-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  left: 0;
}
.form-radio__text:before {
  width: 24px;
  height: 24px;
  background: #f5f5f5;
}
.form-radio__text:after {
  width: 12px;
  height: 12px;
  background: #9ED0E0;
  left: 6px;
  opacity: 0;
}

.contact__privacy {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact__privacy {
    margin-top: 42px;
  }
}

.form-checkbox {
  cursor: pointer;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}

.form-checkbox__text {
  font-size: 14px;
  padding-left: 36px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text:before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #f5f5f5;
}
.form-checkbox__text:after {
  width: 24px;
  height: 24px;
  background: url(../img/contact_check.png) no-repeat center center/contain;
  opacity: 0;
}
.form-checkbox__text a {
  text-decoration-line: underline;
  font-weight: inherit;
}

.contact__button {
  margin-top: 26px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact__button {
    margin-top: 39px;
  }
}

.contact__button .button {
  font-size: 16px;
}
@media screen and (min-width: 900px) {
  .contact__button .button {
    padding-right: 38px;
    padding-left: 38px;
    border-width: 2px;
  }
}

.form-text:focus,
.form-textarea:focus,
.form-checkbox__input:focus {
  outline-color: #9ED0E0;
  background: #E9F6F8;
}
.form-text.is-error,
.form-textarea.is-error,
.form-checkbox__input.is-error {
  border: 1px solid #CE2073;
  background: #FFF0F7;
}
.form-text.is-error + .form-checkbox__text::before,
.form-textarea.is-error + .form-checkbox__text::before,
.form-checkbox__input.is-error + .form-checkbox__text::before {
  border: 1px solid #CE2073;
  background: #FFF0F7;
}
.form-text.is-error:focus,
.form-textarea.is-error:focus,
.form-checkbox__input.is-error:focus {
  outline: #CE2073;
}

.footer {
  padding-top: 40px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .footer {
    padding-top: 120px;
  }
}

.footer__decoration-pawprint {
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .footer__decoration-pawprint {
    right: 50px;
    top: 40px;
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__decoration-pawprint {
    right: auto;
    left: calc(50% + 576px);
    top: 80px;
    width: 100px;
  }
}

.footer__sns-links {
  text-align: center;
}

.sns-links__title {
  font-family: "Josefin Sans";
  font-size: 20px;
  line-height: 125%; /* 25px */
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .sns-links__title {
    font-size: 24px;
  }
}

.sns-links__nav {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sns-icon img {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 900px) {
  .sns-icon img {
    width: 40px;
    height: 40px;
  }
}

.footer__decoration {
  margin-top: 11px;
  margin-right: auto;
  margin-left: auto;
  max-width: 327px;
  padding-top: 2px;
}
@media screen and (min-width: 900px) {
  .footer__decoration {
    margin-top: 40px;
    max-width: 742px;
  }
}

.footer__access-wrap {
  margin-top: -2px;
}

.access-wrap {
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
}
@media screen and (min-width: 900px) {
  .access-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 900px) {
  .access-wrap__map {
    width: 50%;
  }
}
.access-wrap__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 335/271;
  vertical-align: top;
}
@media screen and (min-width: 900px) {
  .access-wrap__map iframe {
    aspect-ratio: 512/400;
  }
}

.access-wrap__body {
  padding-top: 21px;
  padding-right: 26px;
  padding-left: 27px;
  padding-bottom: 29px;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 374px) {
  .access-wrap__body {
    padding-right: 20px;
    padding-left: 21px;
  }
}
@media screen and (min-width: 900px) {
  .access-wrap__body {
    padding: 10px;
    margin-top: 0;
  }
}

.access-wrap__logo {
  width: 153px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .access-wrap__logo {
    display: inline-block;
    width: 183px;
    margin: 0;
  }
}

.access-wrap__info {
  margin-top: 31px;
}
@media screen and (min-width: 900px) {
  .access-wrap__info {
    margin-top: 24px;
  }
}

.access-wrap__info-row {
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.access-wrap__info-row:nth-child(4) {
  margin-bottom: 0;
}
@media screen and (min-width: 900px) {
  .access-wrap__info-row {
    margin-bottom: 12px;
    gap: 40px;
  }
}

.access-wrap__info-term {
  font-weight: 700;
  position: relative;
  padding-left: 16px;
  min-width: 64px;
}
@media screen and (min-width: 900px) {
  .access-wrap__info-term {
    font-size: 14px;
    min-width: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .access-wrap__info-term {
    font-size: 16px;
  }
}
.access-wrap__info-term::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: #9ED0E0;
  border-radius: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 900px) {
  .access-wrap__info-description {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .access-wrap__info-description {
    font-size: 16px;
  }
}

.footer__pagetop {
  text-align: center;
  padding-top: 23px;
  padding-bottom: 22px;
}
@media screen and (min-width: 900px) {
  .footer__pagetop {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 10;
    padding: 0;
  }
}

.pagetop {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.pagetop img {
  width: 77px;
  height: 80px;
}
@media screen and (min-width: 900px) {
  .pagetop img {
    width: 100px;
    height: 104px;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.footer__bottom {
  text-align: center;
  position: relative;
  padding-top: 46px;
}
@media screen and (min-width: 900px) {
  .footer__bottom {
    margin-top: 120px;
    padding-top: 120px;
  }
}
.footer__bottom::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 100%;
  height: 45.7px;
  content: "";
  background-image: url(../img/wave-top.png);
  background-position: left -6px center;
  background-repeat: repeat-x;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .footer__bottom::before {
    background-image: url(../img/wave-top-pc.png);
    height: 120px;
  }
}

.footer__copyright {
  display: block;
  font-size: 10px;
  color: #fff;
  padding-bottom: 26px;
  background-color: #67B0C7;
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    font-size: 14px;
    padding-bottom: 32px;
  }
}