html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

body {
  color: #4a3636;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  background-color: #e9f6f8;
}

.hidden {
  display: none !important;
}

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

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

.visible-md {
  display: none;
}
@media screen and (min-width: 768px) {
  .visible-md {
    display: inline !important;
  }
}

.visible-lg {
  display: none;
}
@media screen and (min-width: 1024px) {
  .visible-lg {
    display: inline !important;
  }
}

.inner {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1560px;
    margin: 0 auto;
    padding-inline: 24px;
  }
}

.underline {
  text-decoration-line: underline;
}
@media screen and (min-width: 768px) {
  .underline {
    font-size: 16px;
  }
}
.underline:hover {
  cursor: pointer;
}

.hash {
  font-weight: 700;
}
.hash:hover {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .hash {
    font-size: 16px;
  }
}

.button {
  height: 40px;
  padding: 4px 22px 6px 22px;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  font-size: 16px;
}
.button a {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .button {
    font-size: 20px;
    height: 56px;
    border: 3px solid #4a3636;
    padding: 7px 37px 9px 37px;
  }
}
@media screen and (max-width: 374px) {
  .button {
    font-size: 13px;
  }
}
.button:hover {
  background: #ffee56;
}

.top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -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: 6px;
}
@media screen and (min-width: 768px) {
  .top {
    gap: 8px;
  }
}
.top__icon img {
  width: 37.333px;
  height: 37.333px;
}
@media screen and (min-width: 768px) {
  .top__icon img {
    width: 48px;
    height: 48px;
  }
}
.top__logo {
  text-align: center;
  font-family: "Courgette", cursive;
  font-size: 16px;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .top__logo {
    font-size: 20px;
  }
}
.top__title {
  text-align: center;
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  padding-bottom: 6px;
  border-bottom: 6px solid #ffee56;
}
@media screen and (min-width: 768px) {
  .top__title {
    font-size: 32px;
    padding-bottom: 8px;
    border-bottom: 8px solid #ffee56;
  }
}
.top__text {
  width: 100%;
  text-align: center;
  padding-top: 10px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .top__text {
    font-size: 16px;
    padding-top: 34px;
  }
}

.header {
  height: 64px;
  background: #fff;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 200;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 16px;
  z-index: 100;
}
@media screen and (min-width: 1024px) {
  .header__inner {
    padding: 0 24px;
  }
}
.header__logo {
  padding-block: 2.5px;
}
.header__logo a img {
  display: block;
}
@media screen and (min-width: 1024px) {
  .header__logo a img {
    width: 183px;
    height: 24px;
    padding: 0;
  }
}
.header__menu {
  position: fixed;
  background: #fff;
  top: 64px;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  overflow-y: auto;
  padding-top: 82px;
  -webkit-transform: translatey(-110%);
          transform: translatey(-110%);
  -webkit-transition: -webkit-transform 0.4s linear;
  transition: -webkit-transform 0.4s linear;
  transition: transform 0.4s linear;
  transition: transform 0.4s linear, -webkit-transform 0.4s linear;
  z-index: 50;
}
.header__menu.is-checked {
  -webkit-transform: translatey(0);
          transform: translatey(0);
}
@media screen and (min-width: 1024px) {
  .header__menu {
    background: transparent;
    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;
    width: auto;
    height: auto;
    position: static;
    padding: 2px 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.header__lists {
  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: 40px;
}
@media screen and (min-width: 1024px) {
  .header__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 12px;
  }
}
.header__link {
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .header__link {
    font-size: 12px;
  }
}
.header__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
  margin-top: 40px;
  padding: 4px 22px 6px 22px;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  font-weight: 700;
  font-size: 14px;
  height: 32px;
}
@media screen and (min-width: 1024px) {
  .header__button {
    margin-block: 13px;
    height: 36px;
  }
}

.drawer-icon {
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 9;
}
.drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 32px;
  height: 3px;
  background: #4a3636;
  -webkit-transition: top 0.4s linear, -webkit-transform 0.4s linear;
  transition: top 0.4s linear, -webkit-transform 0.4s linear;
  transition: transform 0.4s linear, top 0.4s linear;
  transition: transform 0.4s linear, top 0.4s linear, -webkit-transform 0.4s linear;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
  width: 25.6px;
}
.drawer-icon__bar:nth-child(2) {
  top: 12px;
}
.drawer-icon__bar:nth-child(3) {
  top: 24px;
}
.drawer-icon__dot {
  position: absolute;
  background: #4a3636;
  width: 4.8px;
  height: 3px;
  top: 0;
  right: -7px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  top: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 12px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.fv {
  position: relative;
}
.fv__inner {
  background: url(../img/fv-bg-sp.png) no-repeat center center/cover;
  border-radius: 0px 0px 24px 24px;
  height: 554px;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    background: url(../img/fv-bg-pc.png) no-repeat center center/cover;
    border-radius: 0px 0px 40px 40px;
    height: 740px;
    max-width: 100%;
  }
}
.fv__text {
  padding-top: 17px;
  text-align: center;
  text-shadow: 0px 0px 30px #fff;
  font-family: "Kiwi Maru", serif;
  font-size: 14px;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .fv__text {
    padding-top: 34px;
    font-size: 24px;
    font-weight: 500;
  }
}
.fv__title {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .fv__title {
    margin-top: 24px;
    gap: 16px;
  }
}
.fv__title__1 {
  display: block;
}
@media screen and (min-width: 768px) {
  .fv__title__1 {
    width: 520px;
    height: 82px;
  }
}
.fv__title__2 {
  display: block;
}
@media screen and (min-width: 768px) {
  .fv__title__2 {
    width: 356px;
    height: 60px;
  }
}
.fv__pictures {
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__pictures {
    margin: 0 auto;
    max-width: 848px;
    height: 603px;
  }
}
.fv__pictures-sp {
  position: absolute;
  top: 113px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
}
@media screen and (min-width: 768px) {
  .fv__pictures-sp {
    width: 250px;
    top: 33px;
  }
}
.fv__pictures-fukidashi {
  position: absolute;
  top: 18px;
  left: calc(50% - 168px);
}
@media screen and (min-width: 768px) {
  .fv__pictures-fukidashi {
    top: 2px;
    left: calc(50% - 387px);
  }
}
@media screen and (min-width: 768px) {
  .fv__pictures-fukidashi img {
    width: 244px;
    height: auto;
  }
}
.fv__pictures-present {
  position: absolute;
  top: 11px;
  left: calc(50% + 33px);
}
@media screen and (min-width: 768px) {
  .fv__pictures-present {
    top: 17px;
    left: calc(50% + 118px);
  }
}
@media screen and (min-width: 768px) {
  .fv__pictures-present img {
    width: 180px;
    height: auto;
  }
}
.fv__pictures-food {
  position: absolute;
  z-index: 10;
  top: 392px;
  left: calc(50% - 167px);
}
@media screen and (min-width: 768px) {
  .fv__pictures-food {
    top: 260px;
    left: calc(50% - 323px);
  }
}
@media screen and (min-width: 1024px) {
  .fv__pictures-food {
    top: 235px;
    left: calc(50% - 422px);
  }
}
@media screen and (min-width: 768px) {
  .fv__pictures-food img {
    width: 180px;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .fv__pictures-food img {
    width: 207px;
  }
}
.fv__pictures-cat1 {
  position: absolute;
  z-index: 11;
  top: 461px;
  left: calc(50% + 60px);
}
@media screen and (min-width: 768px) {
  .fv__pictures-cat1 {
    top: 427px;
    left: calc(50% + 165px);
  }
}
@media screen and (min-width: 1024px) {
  .fv__pictures-cat1 {
    top: 427px;
    left: calc(50% + 190px);
  }
}
@media screen and (min-width: 768px) {
  .fv__pictures-cat1 img {
    width: 165px;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .fv__pictures-cat1 img {
    width: 233px;
  }
}
.fv__pictures-cat2 {
  position: absolute;
  z-index: 10;
  top: 406px;
  left: calc(50% + 105px);
}
@media screen and (min-width: 768px) {
  .fv__pictures-cat2 {
    top: 345px;
    left: calc(50% + 165px);
  }
}
@media screen and (min-width: 1024px) {
  .fv__pictures-cat2 {
    top: 310px;
    left: calc(50% + 190px);
  }
}
@media screen and (min-width: 768px) {
  .fv__pictures-cat2 img {
    width: 116px;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .fv__pictures-cat2 img {
    width: 170px;
  }
}

.sp__image {
  position: relative;
  width: 100%;
}
.sp__image img {
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .sp__image img {
    width: 250px;
    height: 510px;
  }
}
.sp__container {
  position: absolute;
  top: 122.6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 160px;
  padding-bottom: 19.2px;
  -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: 12.8px;
  border-radius: 12.8px;
  background: #fff;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .sp__container {
    width: 200px;
    height: auto;
    top: 152.5px;
    gap: 16px;
    padding-bottom: 24px;
    border-radius: 16px;
  }
}
.sp__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6.4px 9.6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  border-radius: 12.8px 12.8px 0 0;
  color: #fff;
  text-align: center;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 12.8px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .sp__title {
    padding: 8px 12px;
    font-size: 16px;
  }
}
.sp__text {
  text-align: center;
}
.sp__text1 {
  padding-bottom: 3.2px;
  border-bottom: 2.4px solid #ce2073;
}
@media screen and (min-width: 768px) {
  .sp__text1 {
    font-size: 14px;
    padding-bottom: 4px;
    border-bottom: 3px solid #ce2073;
  }
}
.sp__text2 {
  text-align: center;
  font-weight: 700;
  margin-top: 6.4px;
}
@media screen and (min-width: 768px) {
  .sp__text2 {
    font-size: 16px;
    margin-top: 8px;
  }
}
.sp__button {
  padding: 4px 22px 6px 22px;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  font-weight: 700;
  font-size: 14px;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .sp__button {
    font-size: 16px;
    height: 40px;
  }
}
.sp__button:hover {
  background: #ffee56;
  cursor: pointer;
}

.about {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 156px;
  margin-bottom: 32.8px;
}
@media screen and (min-width: 768px) {
  .about {
    margin-top: 67px;
    padding-top: 80px;
    max-width: 100%;
  }
}
.about__line {
  position: absolute;
  left: -20px;
  top: 88px;
  z-index: -2;
}
.about__pawpads {
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  right: 0;
  top: 22px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about__pawpads img {
    width: 70px;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .about__pawpads {
    right: calc(50% - 589px);
    top: 28px;
    overflow: visible;
  }
  .about__pawpads img {
    width: 100px;
    height: 220px;
  }
}
.about__inner {
  margin-top: 32px;
  margin-inline: 20px;
  background-color: #fff;
  border-radius: 24px;
  padding: 40px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.about__inner::before, .about__inner::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background-size: cover;
  z-index: -5;
}
.about__inner::before {
  top: 427px;
  left: -140px;
  background-image: url(../img/about-photo_L.png);
}
.about__inner::after {
  top: 305px;
  right: -140px;
  background-image: url(../img/about-photo_R.png);
}
@media screen and (min-width: 768px) {
  .about__inner {
    max-width: 848px;
    margin-inline: auto;
    padding: 40px 114px;
    border-radius: 40px;
    gap: 32px;
  }
  .about__inner::before, .about__inner::after {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    background-size: cover;
    z-index: -1;
  }
  .about__inner::before {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-228%, -107%);
            transform: translate(-228%, -107%);
    background-image: url(../img/about-photo_L-pc.png);
  }
  .about__inner::after {
    top: 50%;
    right: 50%;
    -webkit-transform: translate(217%, -107%);
            transform: translate(217%, -107%);
    background-image: url(../img/about-photo_R-pc.png);
  }
}
.about__icon::before, .about__icon::after {
  content: "";
  position: absolute;
  background-size: cover;
  z-index: 1;
}
.about__icon::before {
  width: 80px;
  height: 60px;
  top: 50%;
  left: 50%;
  -webkit-transform: rotate(-8deg) translate(-153%, -123%);
          transform: rotate(-8deg) translate(-153%, -123%);
  background-image: url(../img/about_pic1.png);
}
@media screen and (min-width: 768px) {
  .about__icon::before {
    width: 134px;
    height: 100px;
    -webkit-transform: rotate(-8deg) translate(-240%, -112%);
            transform: rotate(-8deg) translate(-240%, -112%);
  }
}
.about__icon::after {
  width: 80px;
  height: 60px;
  top: 50%;
  left: 50%;
  -webkit-transform: rotate(8deg) translate(68%, -111%);
          transform: rotate(8deg) translate(68%, -111%);
  background-image: url(../img/about_pic2.png);
}
@media screen and (min-width: 768px) {
  .about__icon::after {
    width: 134px;
    height: 100px;
    -webkit-transform: rotate(8deg) translate(141%, -86%);
            transform: rotate(8deg) translate(141%, -86%);
  }
}
.about__pic {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 63px;
  gap: 107.08px;
  margin: auto;
  padding-inline: 32px;
}
@media screen and (min-width: 768px) {
  .about__pic {
    width: 100%;
    top: 154px;
    right: 0;
    padding-inline: 280px;
  }
}
.about__subtitle {
  text-align: center;
}
.about__subtitle h3 {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .about__subtitle h3 {
    font-size: 16px;
  }
}
.about__text {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 16px;
  }
}
.about__gift {
  text-align: center;
  margin: auto;
  font-size: 14px;
  padding-block: 5px;
  border-bottom: 2px dashed #9ed0e0;
  display: inline-block;
}
.about__gift p {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .about__gift {
    font-size: 20px;
    padding-block: 12px;
  }
}
.about__button {
  text-align: center;
}
.about__images {
  position: relative;
  width: 100%;
  height: 176.87px;
}
@media screen and (min-width: 768px) {
  .about__images {
    height: 258px;
  }
}
@media screen and (min-width: 768px) {
  .about__images__waves {
    position: absolute;
    width: 874px;
    height: auto;
    top: -224px;
    left: calc(50% + 449px);
    z-index: -5;
  }
}
.about__images__slope {
  position: absolute;
  bottom: -89px;
  left: -56px;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .about__images__slope {
    bottom: -90px;
    left: calc(50% - 550px);
  }
  .about__images__slope img {
    width: 300px;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .about__images__slope {
    bottom: -54px;
    left: calc(50% - 858px);
  }
  .about__images__slope img {
    width: 427px;
    height: 817px;
  }
}
@media screen and (min-width: 1512px) {
  .about__images__slope {
    left: -105px;
  }
}
.about__images__arrow {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__images__arrow img {
    width: 140px;
  }
}
.about__images__goods1 {
  position: absolute;
  top: 53.67px;
  left: calc(50% - 2px);
  width: 133px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .about__images__goods1 {
    width: 200px;
    z-index: -3;
    left: calc(50% + 150px);
  }
}
@media screen and (min-width: 1024px) {
  .about__images__goods1 {
    width: 308px;
    top: -72px;
    left: calc(50% + 376px);
  }
}
.about__images__goods2 {
  position: absolute;
  top: 11.67px;
  left: calc(50% + 119px);
  width: 48px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .about__images__goods2 {
    left: calc(50% + 350px);
    width: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .about__images__goods2 {
    top: -225px;
    left: calc(50% + 505px);
    width: 101px;
  }
}
.about__images__logo {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  text-align: center;
}
.about__images__logo img {
  margin-inline: 10px;
}
@media screen and (min-width: 768px) {
  .about__images__logo {
    bottom: -8px;
  }
  .about__images__logo img {
    width: 891px;
    height: auto;
    max-width: 100%;
    margin-inline: 0;
  }
}

.auto {
  width: 100%;
  height: 100px;
}
@media screen and (min-width: 768px) {
  .auto {
    height: 150px;
  }
}
@media screen and (min-width: 1024px) {
  .auto {
    height: 200px;
  }
}
.auto-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
@media screen and (min-width: 768px) {
  .auto-slide {
    width: 150px;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .auto-slide {
    width: 200px;
  }
}
.auto-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .auto-slide img {
    width: 150px;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .auto-slide img {
    width: 200px;
    height: 200px;
  }
}

.how-to {
  overflow: hidden;
  padding-top: 32px;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .how-to {
    padding-top: 90px;
    padding-bottom: 4px;
  }
}
.how-to__boxs {
  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: 32px;
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .how-to__boxs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
    margin-top: 40px;
  }
}

.how-to-images {
  overflow: hidden;
}
.how-to-images__map {
  position: absolute;
  left: calc(50% - 189px);
  top: 32px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .how-to-images__map {
    width: 400px;
    top: 30px;
    left: calc(50% - 500px);
  }
}
@media screen and (min-width: 1024px) {
  .how-to-images__map {
    width: 460px;
    top: 30px;
    left: calc(50% - 721px);
  }
}
.how-to-images__cat1 {
  position: absolute;
  top: 32px;
  left: calc(50% + 58px);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .how-to-images__cat1 {
    width: 180px;
    height: auto;
    top: 63px;
    left: calc(50% + 170px);
  }
}
@media screen and (min-width: 1024px) {
  .how-to-images__cat1 {
    width: 238px;
    height: 141px;
    top: 63px;
    left: calc(50% + 287px);
  }
}
.how-to-images__cat2 {
  position: absolute;
  top: 37px;
  left: calc(50% + 125px);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .how-to-images__cat2 {
    width: 160px;
    height: auto;
    top: 74px;
    left: calc(50% + 285px);
  }
}
@media screen and (min-width: 1024px) {
  .how-to-images__cat2 {
    width: 214px;
    height: 181px;
    top: 74px;
    left: calc(50% + 435px);
  }
}
.how-to-images__pawpads {
  position: absolute;
  top: 106px;
  right: 20px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .how-to-images__pawpads {
    width: 70px;
    height: auto;
    top: 235px;
    right: calc(50% - 300px);
    z-index: -1;
  }
}
@media screen and (min-width: 1024px) {
  .how-to-images__pawpads {
    width: 100px;
    height: 220px;
    top: 235px;
    right: 35px;
    z-index: -1;
  }
}
.how-to-images__pawpads__down {
  position: absolute;
  top: 581px;
  left: 20px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
@media screen and (min-width: 768px) {
  .how-to-images__pawpads__down {
    width: 70px;
    height: auto;
    top: 670px;
    left: calc(50% - 333px);
    z-index: -1;
  }
}
@media screen and (min-width: 1024px) {
  .how-to-images__pawpads__down {
    width: 100px;
    height: 220px;
    top: 670px;
    left: 35px;
    z-index: -1;
  }
}
.how-to-images__pawpads__rev {
  position: absolute;
  bottom: 382px;
  right: 20px;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
@media screen and (min-width: 768px) {
  .how-to-images__pawpads__rev {
    width: 70px;
    height: auto;
    right: calc(50% - 300px);
    z-index: -1;
  }
}
@media screen and (min-width: 1024px) {
  .how-to-images__pawpads__rev {
    display: none;
  }
}

.step__line1 {
  position: absolute;
  top: 581px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .step__line1 {
    width: 10px;
    top: 777px;
  }
}
@media screen and (min-width: 1024px) {
  .step__line1 {
    width: 113px;
    height: 24px;
    top: 490px;
    left: calc(50% - 200px);
    z-index: 50;
  }
}

.step__line2 {
  position: absolute;
  bottom: 407px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .step__line2 {
    width: 10px;
    bottom: 535px;
  }
}
@media screen and (min-width: 1024px) {
  .step__line2 {
    width: 113px;
    height: 24px;
    bottom: 411px;
    left: calc(50% + 160px);
    z-index: 50;
  }
}

.step {
  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;
  text-align: center;
  gap: 16px;
  padding-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .step {
    width: 320px;
    padding-bottom: 18px;
  }
}
.step__top__union {
  position: relative;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .step__top__union img {
    width: 280px;
    height: 300px;
  }
}
.step__top__link {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 84px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .step__top__link {
    bottom: 25px;
    width: 121px;
    height: 28px;
  }
}
.step__title {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .step__title {
    padding-top: 8px;
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .step__text {
    font-size: 16px;
    font-weight: 400;
  }
}
.step__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 226px;
  background-color: #fff;
  padding: 8px 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.step__link:hover {
  cursor: pointer;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media screen and (min-width: 768px) {
  .step__link {
    width: 254px;
  }
}
@media screen and (min-width: 768px) {
  .step__link__icon {
    width: 24px;
    height: 24px;
  }
}
.step__link__text {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .step__link__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .step__button {
    padding-top: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .step2 {
    padding-top: 69px;
    padding-bottom: 8px;
  }
}

@media screen and (min-width: 1024px) {
  .step3 {
    padding-bottom: 76px;
  }
}

.prize-top {
  padding-top: 22px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .prize-top {
    padding-top: 8px;
  }
}

@media screen and (min-width: 1024px) {
  .prizes__icon {
    position: relative;
  }
  .prizes__icon::before, .prizes__icon::after {
    content: "";
    position: absolute;
    width: 315px;
    height: 86px;
    vertical-align: top;
  }
  .prizes__icon::before {
    right: 220px;
    background: url("../img/bg_triangle.png") no-repeat center/contain;
  }
  .prizes__icon::after {
    left: 220px;
    background: url("../img/bg_triangle.png") no-repeat center/contain;
    -webkit-transform: scaleY(-1);
            transform: scaleY(-1);
  }
}

.prizes {
  position: relative;
  margin-top: 15px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .prizes {
    margin-top: 120px;
    padding-top: 20px;
    background-size: 1024px auto;
  }
}
.prizes__container {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
}
.prizes__container::before {
  position: absolute;
  content: "";
  width: 238px;
  height: 83px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/prizes-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .prizes__container::before {
    background-image: url(../img/prizes-bg-pc.png);
    width: 378px;
    height: 150px;
    top: -20px;
  }
}
.prizes__container::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 83px);
  border-radius: 24px;
  background-color: #fff;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .prizes__container::after {
    height: calc(100% - 130px);
  }
}
.prizes__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  padding-inline: 20px;
  padding-top: 24px;
  padding-bottom: 18px;
}
@media screen and (min-width: 768px) {
  .prizes__cards {
    padding-top: 32px;
    padding-inline: 56px;
    padding-bottom: 40px;
    max-width: 1024px;
    margin: 0 auto;
    gap: 0;
  }
}
.prizes__button {
  text-align: center;
  padding-bottom: 36.47px;
}
@media screen and (min-width: 768px) {
  .prizes__button {
    padding-bottom: 53px;
  }
}
.prizes__bottom {
  height: 260px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.prizes__bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: -45.71px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .prizes__bottom {
    height: 640px;
  }
  .prizes__bottom img {
    top: 0;
  }
}

.prizes-card {
  width: 160px;
  height: 220px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .prizes-card:nth-child(-n+2) {
    width: calc(50% - 16px);
    height: 510px;
  }
  .prizes-card:nth-child(n+3) {
    width: calc(33.3333333333% - 24px);
    height: 360px;
    margin-top: 40px;
  }
  .prizes-card:nth-child(2) {
    margin-left: 32px;
  }
  .prizes-card:nth-child(4), .prizes-card:nth-child(5) {
    margin-left: 36px;
  }
}
.prizes-card__top {
  position: absolute;
  width: 48px;
  height: 48px;
  top: 24px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
.prizes-card__top img {
  max-width: 100%;
  height: auto;
}
.prizes-card__button {
  position: relative;
  margin-top: 24px;
  cursor: pointer;
  border-radius: 8px;
}
.prizes-card__img {
  width: 160px;
  height: 140px;
  overflow: hidden;
}
.prizes-card__img img {
  border-radius: 8px 8px 0 0;
  max-width: 100%;
  height: auto;
}
.prizes-card__text {
  background-color: #f5f5f5;
  height: 56px;
  font-weight: 700;
  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;
  text-align: center;
  border-radius: 0 0 8px 8px;
}
.prizes-card__zoom {
  position: absolute;
  right: 0;
  bottom: 0;
}
.prizes-card__zoom img {
  border-radius: 0 0 8px 0;
}

.zoom {
  position: relative;
}
.zoom-default {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 1;
}
.zoom-hover {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .prizes-card-large__button {
    margin-top: 50px;
    border-radius: 24px;
    outline: 4px solid transparent;
  }
  .prizes-card-large__button:hover, .prizes-card-large__button:focus {
    outline-color: #9ed0e0;
  }
  .prizes-card-large__button:hover .prizes-card-large__img img, .prizes-card-large__button:focus .prizes-card-large__img img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .prizes-card-large__button:hover .zoom-default, .prizes-card-large__button:focus .zoom-default {
    opacity: 0;
  }
  .prizes-card-large__button:hover .zoom-hover, .prizes-card-large__button:focus .zoom-hover {
    opacity: 1;
  }
  .prizes-card-large__top {
    width: 100px;
    height: 100px;
    top: 50px;
  }
  .prizes-card-large__img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
  }
  .prizes-card-large__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .prizes-card-large__text {
    height: 120px;
    font-size: 20px;
    border-radius: 0 0 24px 24px;
  }
  .prizes-card-large__zoom img {
    width: 100px;
    height: 100px;
    border-radius: 0 0 24px 0;
  }
}
@media screen and (min-width: 1024px) {
  .prizes-card-large__img {
    width: 100%;
    height: 340px;
    overflow: hidden;
  }
  .prizes-card-large__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-width: 768px) {
  .prizes-card-small__button {
    margin-top: 40px;
    border-radius: 16px;
    outline: 4px solid transparent;
  }
  .prizes-card-small__button:hover, .prizes-card-small__button:focus {
    outline-color: #9ed0e0;
  }
  .prizes-card-small__button:hover .prizes-card-small__img img, .prizes-card-small__button:focus .prizes-card-small__img img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .prizes-card-small__button:hover .zoom-default, .prizes-card-small__button:focus .zoom-default {
    opacity: 0;
  }
  .prizes-card-small__button:hover .zoom-hover, .prizes-card-small__button:focus .zoom-hover {
    opacity: 1;
  }
  .prizes-card-small__top {
    width: 80px;
    height: 80px;
    top: 40px;
  }
  .prizes-card-small__img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
  }
  .prizes-card-small__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .prizes-card-small__text {
    height: 80px;
    font-size: 16px;
    border-radius: 0 0 16px 16px;
  }
  .prizes-card-small__zoom img {
    width: 64px;
    height: 64px;
    border-radius: 0 0 16px 0;
  }
}
@media screen and (min-width: 1024px) {
  .prizes-card-small__img {
    width: 100%;
    height: 240px;
    overflow: hidden;
  }
  .prizes-card-small__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 900;
}
.modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 336px;
  height: 480px;
  background-color: white;
  border-radius: 24px;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .modal-content {
    width: 480px;
    height: 650px;
  }
}
.modal-prizes-card__img {
  width: 336px;
  height: 210px;
  overflow: hidden;
  position: relative;
  border-radius: 24px 24px 0 0;
}
@media screen and (min-width: 768px) {
  .modal-prizes-card__img {
    width: 480px;
    height: 300px;
  }
}
.modal-prizes-card__img img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -10%);
          transform: translate(-50%, -10%);
}
.modal-prizes-card__title {
  font-size: 16px;
  text-align: center;
  font-weight: 700;
  padding-top: 39px;
}
@media screen and (min-width: 768px) {
  .modal-prizes-card__title {
    font-size: 20px;
    padding-top: 32px;
  }
}
.modal-prizes-card__text {
  text-align: center;
  font-size: 12px;
  padding-top: 12px;
}
@media screen and (min-width: 768px) {
  .modal-prizes-card__text {
    font-size: 16px;
  }
}
.modal-prizes-card__button {
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .modal-prizes-card__button {
    margin-top: 24px;
  }
  .modal-prizes-card__button button {
    font-size: 16px;
    height: 40px;
    padding: 4px 22px 6px 22px;
    border-radius: 40px;
    border: 2px solid #4a3636;
  }
}

.spots {
  margin-top: -45.71px;
  background: #67b0c7;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .spots {
    margin-top: 0;
  }
}
.spots::before {
  position: absolute;
  content: "";
  top: -45px;
  left: 0px;
  background-image: url(../img/bg_wave.png);
  width: 100%;
  height: 45.71px;
  background-repeat: repeat-x;
  z-index: 5;
  background-size: contain;
  background-position: left -3px center;
}
@media screen and (min-width: 768px) {
  .spots::before {
    height: 120px;
    top: -120px;
  }
}
.spots::after {
  position: absolute;
  content: "";
  bottom: -45px;
  left: 0px;
  background-image: url(../img/bg_wave.png);
  width: 100%;
  height: 45.7px;
  background-repeat: repeat-x;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
  z-index: 5;
  background-size: contain;
  background-position: left -3px center;
}
@media screen and (min-width: 768px) {
  .spots::after {
    height: 120px;
    bottom: -105px;
  }
}
@media screen and (min-width: 768px) {
  .spots__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 140px;
    gap: 32px;
    height: 542px;
  }
}
@media screen and (min-width: 1024px) {
  .spots__main {
    padding-left: 245px;
  }
}
.spots__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .spots__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    text-align: center;
    width: 56px;
  }
}
@media screen and (min-width: 768px) {
  .spots__title__icon {
    width: 56px;
  }
}
@media screen and (min-width: 768px) {
  .spots__title__icon img {
    width: 56px;
    height: 56px;
  }
}
.spots__title__text {
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .spots__title__text {
    font-size: 40px;
  }
}
.spots__bottom {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .spots__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-inline: 30px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 64px;
    max-width: 1084px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .spots__bottom__logo img {
    width: 280px;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .spots__bottom__logo {
    position: relative;
  }
  .spots__bottom__logo img {
    width: 495px;
    height: 107px;
  }
  .spots__bottom__logo::before {
    content: "";
    position: absolute;
    background-image: url(../img/spots_bg_pawpads.png);
    background-size: contain;
    bottom: 15px;
    left: -205px;
    width: 100px;
    height: 220px;
  }
}
.spots__bottom__right {
  text-align: right;
}
.spots__bottom__text {
  padding-top: 15px;
  color: #fff;
  font-size: 11.444px;
}
@media screen and (min-width: 768px) {
  .spots__bottom__text {
    font-size: 16px;
    padding-top: 0;
  }
}
.spots__button {
  padding-top: 22px;
  padding-bottom: 19.84px;
}
.spots__container {
  width: 100%;
  height: 402px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .spots__container {
    height: 542px;
  }
}
.spots__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: -702px;
}
@media screen and (min-width: 768px) {
  .spots__cards {
    left: 0;
  }
}

.spots-card {
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  width: 240px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .spots-card {
    width: 344px;
    border-radius: 24px;
  }
}
.spots-card__img {
  height: 180px;
}
@media screen and (min-width: 768px) {
  .spots-card__img {
    width: 100%;
    height: 240px;
  }
}
.spots-card__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 768px) {
  .spots-card__img img {
    border-radius: 24px 24px 0 0;
  }
}
.spots-card__title {
  margin-top: 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding-inline: 24px;
}
@media screen and (min-width: 768px) {
  .spots-card__title {
    font-size: 20px;
    margin-top: 24px;
  }
}
.spots-card__text {
  margin-top: 16px;
  padding-bottom: 31.16px;
  padding-inline: 24px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .spots-card__text {
    font-size: 16px;
    margin-top: 24px;
    padding-inline: 32px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  display: none;
}

.spots-button-next,
.spots-button-prev {
  position: absolute;
  width: 80px;
  height: 80px;
  top: auto;
  bottom: 165px;
  -webkit-transform: none;
          transform: none;
  z-index: 20;
}
.spots-button-next img,
.spots-button-prev img {
  width: 80px;
  height: auto;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .spots-button-next {
    right: calc(50% - 310px);
  }
}
@media screen and (min-width: 1024px) {
  .spots-button-next {
    right: 282px;
  }
}

@media screen and (min-width: 768px) {
  .spots-button-prev {
    left: 180px;
  }
}
@media screen and (min-width: 1024px) {
  .spots-button-prev {
    left: 282px;
  }
}

.qa {
  padding-top: 45px;
  padding-bottom: 30.67px;
}
@media screen and (min-width: 768px) {
  .qa {
    max-width: 816px;
    padding-inline: 24px;
    padding-top: 185px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px) {
  .qa {
    max-width: 1072px;
    padding-top: 185px;
  }
}
.qa__top {
  margin-top: 42px;
}
.qa__boxes {
  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;
  padding-top: 24px;
}
@media screen and (min-width: 1024px) {
  .qa__boxes {
    padding-top: 40px;
    gap: 24px;
  }
}

.qa-box {
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .qa-box {
    border-radius: 16px;
  }
}
.qa-box__faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 14px 10px 14px;
  gap: 12px;
  margin: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .qa-box__faq {
    padding: 22px;
    gap: 16px;
  }
}
.qa-box__faq__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  line-height: 1.25;
  color: #9ed0e0;
}
@media screen and (min-width: 1024px) {
  .qa-box__faq__title {
    font-size: 32px;
  }
}
.qa-box__faq__text {
  color: #4a3636;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .qa-box__faq__text {
    font-size: 20px;
    width: 871px;
  }
}
.qa-box__faq__icon {
  width: 24.046px;
  height: 24.046px;
}
@media screen and (min-width: 1024px) {
  .qa-box__faq__icon {
    width: 44px;
    height: 44px;
  }
}
.qa-box__ans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background: #f5f5f5;
  padding: 16px 14px 14px 14px;
  gap: 16px;
  border-radius: 0 0 12px 12px;
}
@media screen and (min-width: 1024px) {
  .qa-box__ans {
    padding: 24px 22px 22px;
    border-radius: 0 0 16px 16px;
  }
}
.qa-box__ans__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  line-height: 1.25;
  color: #9ed0e0;
  margin: auto 0;
}
@media screen and (min-width: 1024px) {
  .qa-box__ans__title {
    font-size: 32px;
    margin-inline: 0;
  }
}
.qa-box__ans__text {
  font-size: 14px;
  color: #4a3636;
}
@media screen and (min-width: 1024px) {
  .qa-box__ans__text {
    font-size: 16px;
    text-align: left;
  }
}

.minus-icon {
  background: url("../img/qa-minus.png") no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.plus-icon {
  background: url("../img/qa-plus.png") no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.qa-box.is-open__ans {
  display: block;
}

.info {
  padding-block: 17px;
  margin-inline: 20px;
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 768px) {
  .info {
    margin-top: 90px;
    padding-top: 33px;
    max-width: 1024px;
  }
}
@media screen and (min-width: 1024px) {
  .info {
    margin-inline: auto;
  }
}
.info__lists {
  padding-top: 24px;
  padding-inline: 15.5px;
  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;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .info__lists {
    width: 100%;
    padding-inline: 56px;
    padding-top: 40px;
  }
}
.info__bottom {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .info__bottom {
    margin-top: 120px;
  }
}
.info__bottom img {
  width: 100%;
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .info-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px solid #ccc;
  }
  .info-list:last-child {
    border-bottom: none;
  }
}
.info-list__title {
  font-size: 14px;
  font-weight: 700;
  position: relative;
  left: 16px;
}
@media screen and (min-width: 768px) {
  .info-list__title {
    font-size: 16px;
    width: 25.8%;
    left: 24px;
  }
}
.info-list__title::before {
  position: absolute;
  top: 50%;
  left: -15px;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #9ed0e0;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.info-list__text {
  padding-top: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .info-list__text {
    font-size: 16px;
    padding: 0;
    border-bottom: none;
    padding-bottom: 0;
    width: 74.2%;
  }
}
.info-list__wrap {
  padding-top: 8px;
  padding-bottom: 16px;
  margin: 0;
  padding-inline: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3px;
}
@media screen and (min-width: 768px) {
  .info-list__wrap {
    width: 74.2%;
    padding-top: 0;
  }
}
.info-list__wrap li {
  margin-left: 18px;
  padding-left: 0;
  list-style-type: disc;
  line-height: 1.58;
}
@media screen and (min-width: 768px) {
  .info-list__wrap li {
    font-size: 16px;
    margin-left: 24px;
    line-height: 1.61;
  }
}

.contact {
  background-color: #fff;
}
.contact__inner {
  padding-top: 40px;
  padding-inline: 20px;
  padding-bottom: 46px;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 816px;
    padding-top: 120px;
    padding-inline: 24px;
    padding-bottom: 120px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px) {
  .contact__inner {
    max-width: 1072px;
  }
}
.contact__top__text {
  padding-top: 18px;
}
@media screen and (min-width: 768px) {
  .contact__top__text {
    padding-top: 26px;
  }
}
.contact__fields {
  padding-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;
  max-width: 628px;
  margin: 0 auto;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .contact__fields {
    max-width: 848px;
    padding-top: 40px;
  }
}
.contact__privacy {
  padding-top: 24px;
  text-align: center;
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .contact__privacy {
    padding-top: 40px;
    font-size: 16px;
  }
}
.contact__button {
  text-align: center;
  margin-top: 25px;
}
@media screen and (min-width: 1024px) {
  .contact__button {
    margin-top: 38px;
  }
  .contact__button button {
    width: 240px;
    height: 40px;
    font-size: 16px;
    padding: 4px 22px 6px;
  }
}

.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: 1024px) {
  .form-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    width: 100%;
    height: 56px;
  }
  .form-field__message {
    height: 160px;
  }
}
@media screen and (min-width: 1024px) {
  .form-field__head {
    width: 220px;
    margin-block: auto;
  }
}
.form-field__head__message {
  margin-top: 0;
}
.form-field__label {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .form-field__label {
    font-size: 16px;
  }
}
.form-field__tag {
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  background: #ce2073;
  display: inline-block;
  padding: 4px 8px;
  margin-left: 9px;
}
@media screen and (min-width: 768px) {
  .form-field__item {
    width: 100%;
    max-width: 628px;
  }
}
.form-field__item [type=text],
.form-field__item [type=email] {
  padding: 16px;
  font-size: 14px;
  background-color: #f5f5f5;
  border-radius: 8px;
  border: none;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .form-field__item [type=text],
  .form-field__item [type=email] {
    font-size: 16px;
  }
}
.form-field__item [type=text]:hover, .form-field__item [type=text]:focus,
.form-field__item [type=email]:hover,
.form-field__item [type=email]:focus {
  background-color: #e9f6f8;
  border: 1px solid #9ed0e0;
}
.form-field__item [type=radio] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-field__item [type=radio]:checked + .form-field__radio-text::after {
  opacity: 1;
}
.form-field__item-select {
  position: relative;
}
.form-field__item-select::after {
  position: absolute;
  content: "";
  background-image: url(../img/select-icon.png);
  width: 52px;
  height: 55px;
  right: 0;
  top: 0;
  border-radius: 0 8px 8px 0;
  pointer-events: none;
}
.form-field__item select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  padding: 16px;
  font-size: 14px;
  background-color: #f5f5f5;
  border-radius: 8px;
  border: none;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .form-field__item select {
    font-size: 16px;
  }
}
.form-field__item textarea {
  font-size: 14px;
  width: 100%;
  height: 160px;
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 16px;
  border: none;
}
@media screen and (min-width: 1024px) {
  .form-field__item textarea {
    font-size: 16px;
  }
}
.form-field__item textarea:hover, .form-field__item textarea:focus {
  background-color: #e9f6f8;
  border: 1px solid #9ed0e0;
}
.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;
}
@media screen and (min-width: 1024px) {
  .form-field__radios {
    height: 56px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.form-field__radio-text {
  font-size: 14px;
  position: relative;
  padding-left: 32px;
}
@media screen and (min-width: 1024px) {
  .form-field__radio-text {
    font-size: 16px;
  }
}
.form-field__radio-text::before, .form-field__radio-text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.form-field__radio-text::before {
  width: 24px;
  height: 24px;
  background-color: #f5f5f5;
  left: 0;
}
.form-field__radio-text::after {
  width: 12px;
  height: 12px;
  background-color: #9ed0e0;
  left: 6px;
  opacity: 0;
}

.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 {
  position: relative;
  padding-left: 36px;
}
.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-color: #f5f5f5;
}
.form-checkbox__text::after {
  width: 23px;
  height: 17px;
  left: -1px;
  margin-top: -1px;
  background: url(../img/check-icon.png) no-repeat center center/contain;
  opacity: 0;
}

.js-input.is-error {
  border: 1px solid #900;
  background-color: #fdd;
}

.footer {
  position: relative;
}
.footer__inner {
  padding-top: 40px;
  padding-bottom: 42px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-top: 120px;
    padding-bottom: 240px;
    text-align: center;
  }
}
.footer__head {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  line-height: 1.25;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__head {
    font-size: 24px;
  }
}
.footer__links {
  padding-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__links {
    padding-top: 24px;
  }
}
.footer__link:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media screen and (min-width: 768px) {
  .footer__link img {
    width: 40px;
    height: 40px;
  }
}
.footer__logo {
  padding-top: 9px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    padding-top: 30px;
    position: relative;
  }
  .footer__logo::after {
    content: "";
    position: absolute;
    background-image: url(../img/spots_bg_pawpads.png);
    background-size: contain;
    bottom: 66px;
    right: 55px;
    width: 100px;
    height: 220px;
  }
}
.footer__logo img {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer__logo img {
    width: 755px;
    text-align: center;
  }
}
.footer__container {
  margin-top: -15px;
}
@media screen and (min-width: 768px) {
  .footer__container {
    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;
    max-width: 1024px;
    height: 400px;
    margin-top: -35px;
    margin-inline: auto;
  }
}
.footer__map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 80%;
}
@media screen and (min-width: 768px) {
  .footer__map {
    width: 50%;
    padding-top: 0;
  }
}
.footer__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px 16px 0 0;
}
@media screen and (min-width: 768px) {
  .footer__map iframe {
    height: 400px;
    border-radius: 0 16px 16px 0;
  }
}
.footer__company {
  background: #fff;
  border-radius: 0 0 16px 16px;
}
@media screen and (min-width: 768px) {
  .footer__company {
    width: 50%;
    border-radius: 16px 0 0 16px;
  }
}
.footer__company__wrap {
  margin-top: 1px;
  padding: 24px;
  max-width: 383px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__company__wrap {
    max-width: 429px;
    padding: 106px 20px;
    margin-inline: auto;
  }
}
.footer__company__logo {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__company__logo {
    text-align: left;
  }
  .footer__company__logo img {
    width: 183px;
    height: 24px;
  }
}
.footer__company__info {
  margin-top: 30px;
  margin-bottom: 6px;
  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;
}
@media screen and (min-width: 768px) {
  .footer__company__info {
    margin-top: 24px;
    gap: 12px;
  }
}
.footer__company__info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer__company__info-title {
  position: relative;
  font-weight: 700;
  padding-left: 19px;
  width: 29%;
}
@media screen and (min-width: 768px) {
  .footer__company__info-title {
    font-size: 16px;
    padding-left: 16px;
    text-align: left;
  }
}
.footer__company__info-title::before {
  position: absolute;
  top: 10px;
  left: 3px;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #9ed0e0;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .footer__company__info-title::before {
    top: 14px;
  }
}
.footer__company__info-text {
  width: 71%;
}
@media screen and (min-width: 768px) {
  .footer__company__info-text {
    font-size: 16px;
    text-align: left;
    padding-left: 7px;
  }
}
.footer__pagetop {
  padding-block: 24px;
  text-align: center;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .footer__pagetop {
    position: fixed;
    z-index: 100;
    bottom: 140px;
    right: 40px;
  }
  .footer__pagetop img {
    width: 70px;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .footer__pagetop {
    position: fixed;
    z-index: 100;
    bottom: 170px;
    right: 40px;
  }
  .footer__pagetop img {
    width: 100px;
    height: 104px;
  }
}
.footer__bottom {
  position: relative;
  padding-bottom: 24px;
  background-color: #67b0c7;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    padding-bottom: 32px;
  }
}
.footer__bottom::before {
  position: absolute;
  content: "";
  top: -43px;
  left: 0px;
  background-image: url(../img/bg_wave.png);
  width: 100%;
  height: 45.7px;
  background-repeat: repeat-x;
  z-index: 5;
  background-size: contain;
  background-position: left -3px center;
}
@media screen and (min-width: 768px) {
  .footer__bottom::before {
    height: 120px;
    top: -120px;
  }
}
.footer__copyright {
  color: #fff;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 14px;
  }
}