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

body {
  font-family: "Noto Sans JP", "Kiwi Maru";
  color: #4a3636;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  background-color: #e9f6f8;
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

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

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .hidden-tb {
    display: none;
  }
}

.only-tb {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .only-tb {
    display: inline;
  }
}

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

.inner {
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-inline: 244px;
    max-width: 1512px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .inner {
    padding-inline: 80px;
    max-width: 1184px;
  }
}

.button {
  display: inline-block;
  text-align: center;
  padding-top: 4px;
  padding-right: 22px;
  padding-left: 22px;
  padding-bottom: 6px;
  border: 2px solid #4a3636;
  background: #ffffff;
  color: #4a3636;
  font-size: 16px;
  font-weight: 700;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  border-radius: 40px;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.button:hover {
  background-color: #ffee56;
}

.button--small {
  font-size: 14px;
  padding-top: 4px;
  padding-right: 22px;
  padding-left: 22px;
  padding-bottom: 6px;
  border: 2px solid #4a3636;
}
.button--small:hover {
  background-color: #ffee56;
}

.button--large {
  font-size: 20px;
  padding-top: 7px;
  padding-right: 37px;
  padding-left: 37px;
  padding-bottom: 9px;
  border: 3px solid #4a3636;
}
.button--large:hover {
  background-color: #ffee56;
}

.section__heading {
  text-align: center;
  z-index: 20;
}
.section__heading svg {
  width: 37.333px;
  height: 37.333px;
}
@media screen and (min-width: 768px) {
  .section__heading svg {
    width: 48px;
    height: 48px;
  }
}

.section__heading-en {
  margin-top: 4px;
  color: #4a3636;
  text-align: center;
  /* En/Courgette 16px Regular */
  font-family: "Courgette", "Josefin Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .section__heading-en {
    font-size: 20px;
    margin-top: 3px;
  }
}

.section__heading-ja {
  margin-top: 4px;
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  padding-bottom: 6px;
  border-bottom: 6px solid #ffee56;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .section__heading-ja {
    font-size: 32px;
    margin-top: 4px;
    padding-bottom: 12px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff;
  padding-block: 16px;
  width: 100%;
  min-height: 64px;
  z-index: 105;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header {
    padding-block: 14px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 20px;
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-inline: 24px;
    margin-inline: auto;
    margin-top: 0;
  }
}

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

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

.header__link {
  font-size: 12px;
  color: #4a3636;
}

.header__button {
  margin-left: 5px;
}

@media screen and (min-width: 768px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 35px;
  height: 27px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 50%;
  width: 32px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 32px;
  height: 3px;
  background: #4a3636;
  border-radius: 2px;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.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) {
  bottom: 0;
}

.drawer-icon__dot {
  position: absolute;
  top: 0;
  right: 0;
  left: 28px;
  width: 4px;
  height: 3px;
  border-radius: 6px;
  background: #4a3636;
}

.drawer-content {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: calc(100dvh - 64px);
  padding-top: 59px;
  padding-bottom: 60px;
  overflow-y: auto;
  background: #ffffff;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
  margin-top: 41px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer-content__menu {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.drawer-content__link {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

.drawer-content__button {
  margin-top: 20px;
  text-align: center;
}

.fv {
  background-color: #e9f6f8;
  margin-top: 64px;
  padding-top: 17px;
}
@media screen and (min-width: 768px) {
  .fv {
    padding-top: 34px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fv {
    padding-top: 18px;
  }
}

.fv__picture {
  -o-object-position: center bottom;
     object-position: center bottom;
}
.fv__picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.fv__bg-image {
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100% - 156px);
  overflow: hidden;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
}
.fv__bg-image img {
  width: 100%;
  height: 700px;
  vertical-align: middle;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (min-width: 768px) {
  .fv__bg-image {
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fv__bg-image {
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}

.fv__inner {
  padding-inline: 20px;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    padding-inline: 240px;
    max-width: 1504px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fv__inner {
    padding-inline: 80px;
    max-width: 1184px;
  }
}

.fv__description {
  text-align: center;
  text-shadow: 0px 0px 30px #ffffff;
  font-family: "Kiwi Maru";
  font-size: 14px;
  line-height: 1.25;
  white-space: nowrap;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .fv__description {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fv__description {
    font-size: 14px;
  }
}

.fv__lead {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .fv__lead {
    margin-top: 24px;
    width: 520px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fv__lead {
    margin-top: 20px;
    width: 340px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.fv__decoration-wrap {
  position: relative;
  height: 522px;
  margin-top: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fv__decoration-wrap {
    height: 540px;
    margin-top: 80px;
  }
}
@media screen and (min-width: 768px) {
  .fv__decoration-wrap {
    height: 558px;
    margin-top: 206px;
  }
}

.fv__decoration-smartphone {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 4;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fv__decoration-smartphone {
    bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .fv__decoration-smartphone {
    top: 31px;
    bottom: 17px;
  }
}

.decoration-smartphone {
  width: 200px;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .decoration-smartphone {
    width: 250px;
    position: relative;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .decoration-smartphone {
    width: 200px;
  }
}

.decoration-smartphone__image {
  position: relative;
  z-index: 5;
}
.decoration-smartphone__image img {
  width: 100%;
  display: block;
  text-align: center;
  height: auto;
}

.decoration-smartphone__content {
  margin-top: -2px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  width: 160px;
  overflow: hidden;
  text-align: center;
  background: #ffffff;
  border-radius: 12.8px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .decoration-smartphone__content {
    width: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .decoration-smartphone__content {
    top: 40%;
    width: 160px;
  }
}

.decoration-smartphone__heading {
  background: -webkit-linear-gradient(185deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  width: 160px;
  padding: 6.4px 9.6px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  text-align: center;
  font-size: 12.8px;
  font-weight: 700;
  border-top-right-radius: 12.8px;
  border-top-left-radius: 12.8px;
}
@media screen and (min-width: 768px) {
  .decoration-smartphone__heading {
    width: 200px;
    padding: 8px 12px;
    font-size: 16px;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .decoration-smartphone__heading {
    width: 160px;
    font-size: 14px;
    padding: 6px 10px;
  }
}

.decoration-smartphone__body {
  width: 160px;
  padding-bottom: 19.2px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom-right-radius: 12.8px;
  border-bottom-left-radius: 12.8px;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .decoration-smartphone__body {
    width: 200px;
    padding-bottom: 24px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .decoration-smartphone__body {
    width: 160px;
    padding-bottom: 18px;
  }
}

.decoration-smartphone__sub-heading {
  margin-top: 12.8px;
  font-size: 12px;
  border-bottom: 2.4px solid #ce2073;
}
@media screen and (min-width: 768px) {
  .decoration-smartphone__sub-heading {
    margin-top: 16px;
    font-size: 14px;
    border-bottom: 3px solid #ce2073;
    padding-bottom: 4px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .decoration-smartphone__sub-heading {
    margin-top: 10px;
    font-size: 13px;
    border-bottom: 2px solid #ce2073;
  }
}

.decoration-smartphone__sub-text {
  margin-top: 3.2px;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .decoration-smartphone__sub-text {
    margin-top: 4px;
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .decoration-smartphone__sub-text {
    font-size: 12px;
  }
}

.decoration-smartphone__button {
  margin-top: 12.8px;
  font-size: 14px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .decoration-smartphone__button {
    font-size: 15px;
    margin-top: 14px;
  }
}
@media screen and (min-width: 768px) {
  .decoration-smartphone__button {
    margin-top: 8px;
    font-size: 16px;
  }
}

.decoration-smartphone__english-message {
  position: absolute;
  top: 7px;
  left: 0;
  width: 142px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .decoration-smartphone__english-message {
    top: 0;
    right: calc(50% + 143px);
    left: auto;
    width: 244px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .decoration-smartphone__english-message {
    top: -60px;
    right: calc(50% + 22px);
    left: auto;
    width: 150px;
  }
}

.fv__decoration-redcircle-text {
  position: absolute;
  top: 0px;
  right: 25px;
  width: 110px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .fv__decoration-redcircle-text {
    top: 17px;
    right: auto;
    left: calc(50% + 117px);
    width: 180px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fv__decoration-redcircle-text {
    top: -70px;
    left: calc(50% + 33px);
    width: 110px;
  }
}
.fv__decoration-redcircle-text img {
  width: 100%;
}

.fv__decoration-food {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 6;
  width: 90px;
}
@media screen and (min-width: 768px) {
  .fv__decoration-food {
    bottom: 0px;
    left: calc(50% - 424px);
    width: 212px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fv__decoration-food {
    bottom: 105px;
    left: calc(50% - 170px);
    width: 100px;
  }
}
.fv__decoration-food img {
  width: 100%;
}

.fv__decoration-cats {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 6;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fv__decoration-cats {
    right: 30px;
    bottom: -30px;
  }
}
@media screen and (min-width: 768px) {
  .fv__decoration-cats {
    right: calc(50% - 424px);
    bottom: -44px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fv__decoration-cats {
    right: calc(50% - 380px);
    bottom: -44px;
  }
}
.fv__decoration-cats img {
  width: 100%;
}

.decoration-cats1 {
  position: relative;
  width: 107px;
  height: 127px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .decoration-cats1 {
    width: 180px;
    height: 220px;
  }
}
@media screen and (min-width: 768px) {
  .decoration-cats1 {
    width: 233px;
    height: 294px;
  }
}
.decoration-cats1 img {
  width: 100%;
}

.decoration-cat1__1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 62px;
}
@media screen and (min-width: 768px) {
  .decoration-cat1__1 {
    top: 0;
    left: 0;
    right: 0;
    width: 170px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .decoration-cat1__1 {
    top: 14px;
    left: -40px;
    right: 0;
    width: 70px;
  }
}
.decoration-cat1__1 img {
  width: 100%;
}

.decoration-cat1__2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 98px;
}
@media screen and (min-width: 768px) {
  .decoration-cat1__2 {
    right: 0;
    bottom: 0;
    left: 0;
    width: 233px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .decoration-cat1__2 {
    right: 0;
    bottom: 150px;
    left: -93px;
    width: 104px;
  }
}
.decoration-cat1__2 img {
  width: 100%;
}

.about {
  padding-top: 32px;
  padding-bottom: 40px;
  padding-inline: 20px;
  background-color: #e9f6f8;
  position: relative;
  overflow: hidden;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 84px;
    padding-bottom: 95px;
  }
}

.about__inner {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .about__inner {
    border-radius: 40px;
    max-width: 1688px;
    padding-left: 60px;
    padding-right: 60px;
  }
}

.about__top {
  background-color: #ffffff;
  padding-top: 40px;
  padding-right: 20px;
  padding-bottom: 40px;
  padding-left: 20px;
  text-align: center;
  border-radius: 24px;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .about__top {
    border-radius: 40px;
    max-width: 848px;
    margin-inline: auto;
  }
}

.about__top-image-left {
  position: absolute;
  top: 31.87px;
  right: calc(50% + 46.5px);
  width: 88px;
}
@media screen and (min-width: 768px) {
  .about__top-image-left {
    top: 37px;
    right: calc(50% + 192px);
    width: 146px;
  }
}

.about__top-image-right {
  position: absolute;
  top: 30px;
  left: calc(50% + 60.15px);
  width: 88px;
}
@media screen and (min-width: 768px) {
  .about__top-image-right {
    top: 45px;
    left: calc(50% + 192px);
    width: 146px;
  }
}

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

.about__content-title {
  font-family: "Noto Sans JP", "Kiwi Maru";
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .about__content-title {
    font-size: 16px;
  }
}

.about__texts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .about__texts {
    gap: 27px;
    margin-top: 32px;
  }
}

.about__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 16px;
  }
}
.about__text a {
  display: inline-block;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.about__text a:hover {
  color: #67b0c7;
}

.about__pop {
  font-weight: 700;
  padding-block: 6px;
  border-bottom: 2px dashed #9ed0e0;
  display: inline-block;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .about__pop {
    font-size: 20px;
    padding-block: 12px;
    margin-top: 32px;
  }
}

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

.about_arrow {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .about_arrow {
    width: 140px;
  }
}

@media screen and (min-width: 768px) {
  .about_stripe {
    width: 250px;
    position: absolute;
    top: 62px;
    left: -20px;
    border-radius: 24px;
  }
}

.about_photo_left {
  width: 200px;
  position: absolute;
  top: 427px;
  left: -160px;
  border-radius: 24px;
}
@media screen and (min-width: 768px) {
  .about_photo_left {
    width: 480px;
    top: 157px;
    left: -338px;
    border-radius: 40px;
  }
}

.about__bg-pawpads {
  width: 52px;
  position: absolute;
  top: 24px;
  right: 0;
}
@media screen and (min-width: 768px) {
  .about__bg-pawpads {
    width: 100px;
    top: 0px;
    right: 166px;
  }
}

.about_photo_right {
  width: 200px;
  position: absolute;
  top: 305px;
  right: -160px;
  border-radius: 24px;
}
@media screen and (min-width: 768px) {
  .about_photo_right {
    width: 480px;
    top: 155px;
    right: -285px;
    border-radius: 40px;
  }
}

.about_img_road {
  width: 216px;
  position: absolute;
  top: 593px;
  left: -55px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .about_img_road {
    width: 427px;
    top: 403px;
    left: -105px;
  }
}

.about_chief {
  width: 133px;
  position: absolute;
  top: 795px;
  right: 57px;
}
@media screen and (min-width: 768px) {
  .about_chief {
    width: 308px;
    top: 840px;
    right: 74px;
  }
}

.about_path1 {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .about_path1 {
    width: 806.851px;
    top: 688px;
    right: -565px;
  }
}

.about_path2 {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .about_path2 {
    width: 806.851px;
    top: 720px;
    right: -500px;
  }
}

.about_good1 {
  width: 29.236px;
  position: absolute;
  top: 753px;
  right: 40px;
}
@media screen and (min-width: 768px) {
  .about_good1 {
    width: 61.518px;
    top: 682px;
    right: 190px;
  }
}

.about_good2 {
  width: 18.873px;
  position: absolute;
  top: 783px;
  right: 20px;
}
@media screen and (min-width: 768px) {
  .about_good2 {
    width: 39.711px;
    top: 745px;
    right: 150px;
  }
}

.about__img_onomichi {
  margin-top: 103px;
  display: block;
  z-index: 20;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__img_onomichi {
    margin-top: 117px;
  }
}
.about__img_onomichi img {
  max-width: 355px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .about__img_onomichi img {
    max-width: 890px;
  }
}

.about__slider {
  margin-top: -2px;
  background-color: #e9f6f8;
}
.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.swiper-slide {
  -webkit-transition: -webkit-transform 0.3s ease !important;
  transition: -webkit-transform 0.3s ease !important;
  transition: transform 0.3s ease !important;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease !important;
  -webkit-flex-shrink: 0 !important;
      -ms-flex-negative: 0 !important;
          flex-shrink: 0 !important;
}

.about__slide {
  width: 100px !important;
}
@media screen and (min-width: 768px) {
  .about__slide {
    width: 200px !important;
  }
}
.about__slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.how-to-enter {
  background-color: #e9f6f8;
  padding-top: 64px;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .how-to-enter {
    padding-top: 120px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .how-to-enter {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.how-to-enter__map {
  width: 135px;
  position: absolute;
  top: 65px;
  left: 0;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .how-to-enter__map {
    width: 420px;
    top: 60px;
    left: 36px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .how-to-enter__map {
    width: 300px;
    top: 50px;
    left: -80px;
  }
}

.how-to-enter__cat1 {
  width: 105px;
  position: absolute;
  top: 65px;
  right: 24px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__cat1 {
    width: 238px;
    top: 91px;
    right: 231px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .how-to-enter__cat1 {
    width: 238px;
    top: 91px;
    right: 31px;
  }
}

.how-to-enter__cat2 {
  width: 94px;
  position: absolute;
  top: 70px;
  right: -31px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__cat2 {
    width: 214px;
    top: 101px;
    right: 105px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .how-to-enter__cat2 {
    width: 214px;
    top: 101px;
    right: -88px;
  }
}

.step__bg-pawpads2 {
  width: 55px;
  position: absolute;
  top: 138px;
  right: 20px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (min-width: 768px) {
  .step__bg-pawpads2 {
    width: 100px;
    top: 263px;
    right: 36px;
  }
}

.step__bg-pawpads3 {
  width: 55px;
  position: absolute;
  top: 613px;
  left: 20px;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
@media screen and (min-width: 768px) {
  .step__bg-pawpads3 {
    width: 100px;
    top: 695px;
    left: 36px;
  }
}

.step__bg-pawpads4 {
  width: 55px;
  position: absolute;
  top: 944px;
  right: 20px;
  -webkit-transform: scale(-1);
          transform: scale(-1);
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .step__bg-pawpads4 {
    top: 800px;
  }
}
@media screen and (min-width: 768px) {
  .step__bg-pawpads4 {
    display: none;
  }
}

.how-to-enter__inner {
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .how-to-enter__inner {
    padding-inline: 244px;
    max-width: 1512px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .how-to-enter__inner {
    padding-inline: 80px;
    max-width: 1184px;
  }
}

.how-to-enter__steps {
  margin-top: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 49px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__steps {
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 1024px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .how-to-enter__steps {
    gap: 24px;
  }
}

.how-to-enter__step {
  position: relative;
}
.how-to-enter__step:not(:nth-of-type(3))::after {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 3;
  width: 7px;
  height: 34px;
  content: "";
  background-image: url(../img/sp/sp_step_device.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.how-to-enter__step {
  position: relative;
}
@media screen and (min-width: 768px) {
  .how-to-enter__step:nth-of-type(1)::after {
    position: absolute;
    top: 37%;
    left: calc(100% - 9px);
    width: 113px;
    height: 24px;
    content: "";
    background-image: url(../img/step_device.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .how-to-enter__step:nth-of-type(2)::after {
    position: absolute;
    top: 28%;
    left: calc(100% + 1px);
    width: 113px;
    height: 24px;
    content: "";
    background-image: url(../img/step_device.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media screen and (min-width: 768px) {
  .step-box {
    width: 320px;
    margin: 0 auto;
  }
}

.step-box__image {
  width: 196px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .step-box__image {
    width: 280px;
  }
  .step-box__image img {
    width: 280px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .step-box__image {
    width: 240px;
  }
  .step-box__image img {
    width: 240px;
  }
}

.step-box__head {
  color: #ffffff;
  font-family: "Josefin Sans";
  text-align: center;
  position: absolute;
  top: 32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
@media screen and (min-width: 768px) {
  .step-box__head {
    top: 44px;
  }
}

.step-box__head-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 1.12px;
}
@media screen and (min-width: 768px) {
  .step-box__head-text {
    font-size: 20px;
    letter-spacing: 1.6px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .step-box__head-text {
    font-size: 18px;
  }
}

.step-box__head-number {
  font-family: "Josefin Sans";
  font-size: 40px;
  font-style: italic;
  font-weight: 600;
  line-height: 0.9;
}
@media screen and (min-width: 768px) {
  .step-box__head-number {
    font-size: 56px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .step-box__head-number {
    font-size: 48px;
  }
}

.step-box__1_icon {
  width: 112px;
  position: absolute;
  bottom: 124px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: relative;
}
@media screen and (min-width: 768px) {
  .step-box__1_icon {
    width: 160px;
    bottom: 175px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .step-box__1_icon {
    width: 140px;
    bottom: 155px;
  }
}

.step-box__icon-heart {
  width: 15.188px;
  -webkit-transform: rotate(-1.231deg);
          transform: rotate(-1.231deg);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: absolute;
  top: 26px;
  left: 9px;
  z-index: 7;
}
@media screen and (min-width: 768px) {
  .step-box__icon-heart {
    width: 21.697px;
    top: 40px;
    left: 11.5px;
  }
}

.step-box__icon-user {
  position: absolute;
  top: 20px;
  right: 5px;
  z-index: 7;
}
@media screen and (min-width: 768px) {
  .step-box__icon-user {
    width: 66px;
    height: 66px;
    top: 26px;
    right: 8px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .step-box__icon-user {
    width: 60px;
    height: 60px;
    top: 30px;
    right: 0px;
  }
}

.step-box__icon-SP {
  width: 38.5px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: absolute;
  top: -7px;
  left: 30px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .step-box__icon-SP {
    width: 55px;
    top: 8px;
    left: 44px;
  }
}

.step-box__image-text {
  font-family: "Josefin Sans";
  font-size: 11px;
  font-weight: 700;
  background-color: #ffffff;
  border: 1.4px solid #4a3636;
  border-radius: 5.6px;
  padding-top: 4.2px;
  padding-right: 15.4px;
  padding-left: 15.4px;
  padding-bottom: 1.4px;
  position: absolute;
  top: 86px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  line-height: normal;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .step-box__image-text {
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid #4a3636;
    border-radius: 8px;
    padding-top: 6px;
    padding-right: 22px;
    padding-left: 22px;
    padding-bottom: 2px;
    top: 117px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .step-box__image-text {
    font-size: 14px;
    border-radius: 8px;
    border: 2px solid #4a3636;
    border-radius: 8px;
    padding-top: 6px;
    padding-right: 22px;
    padding-left: 22px;
    padding-bottom: 2px;
    top: 117px;
  }
}

.step-box__2_icon,
.step-box__3_icon {
  width: 112px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .step-box__2_icon,
  .step-box__3_icon {
    width: 160px;
    bottom: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .step-box__2_icon,
  .step-box__3_icon {
    width: 140px;
    bottom: 20px;
  }
}

.step__device1,
.step__device2 {
  width: 8px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .step__device1,
  .step__device2 {
    width: 113px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .step__device1,
  .step__device2 {
    width: 100px;
  }
}

.step__device1 {
  position: absolute;
  top: 599px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .step__device1 {
    position: absolute;
    top: 505px;
    left: 555px;
  }
}

.step__device2 {
  position: absolute;
  top: 993px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .step__device2 {
    position: absolute;
    top: 505px;
    right: 325px;
  }
}

@media screen and (min-width: 768px) {
  .step-box__center {
    margin-top: 69px;
  }
}

.step-box__body-title {
  margin-top: 16px;
  color: #4a3636;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .step-box__body-title {
    margin-top: 24px;
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .step-box__body-title {
    margin-top: 20px;
    font-size: 16px;
  }
}

.step-box__text {
  font-size: 12px;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .step-box__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .step-box__text {
    font-size: 14px;
  }
}
.step-box__text a {
  display: inline-block;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.step-box__text a:hover {
  color: #67b0c7;
}

.step-box__instagram {
  margin-top: 14px;
  background-color: #ffffff;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: inline-block;
  padding: 8px 12px;
}
@media screen and (min-width: 768px) {
  .step-box__instagram {
    margin-top: 16px;
  }
}

.step-box__link {
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .step-box__link {
    font-size: 16px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .step-box__link {
    font-size: 14px;
    line-height: 1.6;
  }
}

.step__button {
  margin-top: 17px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .step__button {
    margin-top: 48px;
  }
}

.prizes {
  background-color: #e9f6f8;
  text-align: center;
  position: relative;
  margin-inline: auto;
  padding-top: 14px;
}
@media screen and (min-width: 768px) {
  .prizes {
    margin-top: 105px;
    padding: 0;
  }
}

.prizes__inner {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .prizes__inner {
    max-width: 1512px;
    padding-bottom: 53px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    padding-right: 40px;
    padding-left: 40px;
  }
}

.prizes__contents {
  background-color: #e9f6f8;
  position: relative;
  z-index: 2;
  padding-top: 21px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
}
.prizes__contents::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: 238px;
  height: 83px;
  background-image: url(../img/sp/sp_prizes_title.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.prizes__contents::after {
  position: absolute;
  background-color: #ffffff;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 83px);
  border-radius: 24px;
  z-index: -1;
}

.prizes__contents {
  background-color: #e9f6f8;
}
@media screen and (min-width: 768px) {
  .prizes__contents {
    position: relative;
    z-index: 2;
    padding-right: 56px;
    padding-left: 56px;
    padding-top: 32px;
    max-width: 1024px;
    margin-inline: auto;
  }
  .prizes__contents::before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 372px;
    height: 148px;
    background-image: url(../img/prizes_title.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .prizes__contents::after {
    position: absolute;
    background-color: #ffffff;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 148px);
    border-radius: 24px;
    z-index: -1;
  }
}

@media screen and (min-width: 768px) {
  .prizes__decoration-triangle-left {
    position: absolute;
    top: 30px;
    left: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc((100% - 390px) / 2);
    min-height: 148px;
  }
}

@media screen and (min-width: 768px) {
  .prizes__decoration-triangle-right {
    position: absolute;
    top: 30px;
    right: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc((100% - 390px) / 2);
    min-height: 148px;
  }
}

.prizes__heading {
  position: relative;
  text-align: center;
}
.prizes__text {
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  margin-top: 17px;
}
@media screen and (min-width: 768px) {
  .prizes__text {
    font-size: 16px;
    margin-top: 40px;
  }
}

.prizes__cards {
  margin-top: 47px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 39px 15px;
}
@media screen and (min-width: 768px) {
  .prizes__cards {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 82px;
    gap: 80px 32px;
  }
}

.prizes__card {
  width: calc(50% - 7.5px);
}
.prizes__card :hover .prizes-card__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.prizes__card :hover .prizes-card__icon .background {
  fill: #9ed0e0;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}

@media screen and (min-width: 768px) {
  .prizes__card:nth-of-type(1), .prizes__card:nth-of-type(2) {
    width: calc(50% - 16px);
  }
}

@media screen and (min-width: 768px) {
  .prizes__card:nth-of-type(3), .prizes__card:nth-of-type(4), .prizes__card:nth-of-type(5) {
    width: calc(33.3% - 24px);
  }
}

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

.prizes-card__inner {
  position: relative;
  background-color: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
}
.prizes-card__inner img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.prizes-card__inner figure {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.prizes-card__image {
  display: block;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.prizes-card__heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 56px;
  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .prizes-card__heading {
    font-size: 18px;
  }
}

.prizes-card__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
}

.prizes-card__icon svg {
  position: absolute;
  right: -2px;
  bottom: -2px;
  display: block;
  width: 36px;
  height: 36px;
  border-bottom-right-radius: 8px;
}

.prizes-card {
  position: relative;
  border-radius: 8px;
}
.prizes-card::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border: 2px solid #9ed0e0;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.prizes-card:hover::after {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .prizes-card .prizes-card__number {
    top: -40px;
    width: 80px;
  }
  .prizes-card .prizes-card__inner {
    position: relative;
    background-color: #f5f5f5;
    border-radius: 16px;
    overflow: hidden;
  }
  .prizes-card .prizes-card__inner img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .prizes-card .prizes-card__inner figure {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
  }
  .prizes-card .prizes-card__heading {
    min-height: 80px;
    padding-top: 7px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    font-size: 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 700;
  }
  .prizes-card .prizes-card__button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 8px;
    outline: none;
  }
  .prizes-card .prizes-card__icon svg {
    position: absolute;
    right: -2px;
    bottom: -2px;
    display: block;
    width: 64px;
    height: 64px;
    border-bottom-right-radius: 8px;
  }
}

.prizes-card--large {
  position: relative;
  border-radius: 24px;
}
@media screen and (min-width: 768px) {
  .prizes-card--large .prizes-card__number {
    top: -50px;
    width: 100px;
  }
  .prizes-card--large .prizes-card__inner {
    position: relative;
    background-color: #f5f5f5;
    border-radius: 24px;
    overflow: hidden;
  }
  .prizes-card--large .prizes-card__inner img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .prizes-card--large .prizes-card__inner figure {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
  }
  .prizes-card--large .prizes-card__heading {
    min-height: 120px;
    font-size: 20px;
    padding-block: 28px;
    padding-right: 5px;
    padding-left: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1023px) {
  .prizes-card--large .prizes-card__heading {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .prizes-card--large .prizes-card__button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 8px;
    outline: none;
    border-width: 4px;
    border-radius: 24px;
  }
  .prizes-card--large .prizes-card__icon svg {
    position: absolute;
    right: -4px;
    bottom: -4px;
    display: block;
    width: 100px;
    height: 100px;
    border-bottom-right-radius: 24px;
  }
  .prizes-card--large::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border: 4px solid #9ed0e0;
    border-radius: 24px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  .prizes-card--large:hover::after {
    opacity: 1;
  }
}

.prizes-card--small {
  position: relative;
  border-radius: 24px;
}
@media screen and (min-width: 768px) {
  .prizes-card--small .prizes-card__number {
    top: -50px;
    width: 100px;
  }
  .prizes-card--small .prizes-card__inner {
    position: relative;
    background-color: #f5f5f5;
    border-radius: 24px;
    overflow: hidden;
  }
  .prizes-card--small .prizes-card__inner img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .prizes-card--small .prizes-card__inner figure {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
  }
  .prizes-card--small .prizes-card__heading {
    min-height: 120px;
    font-size: 20px;
    padding-block: 28px;
    padding-right: 5px;
    padding-left: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1023px) {
  .prizes-card--small .prizes-card__heading {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .prizes-card--small .prizes-card__button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 8px;
    outline: none;
    border-width: 4px;
    border-radius: 24px;
  }
  .prizes-card--small .prizes-card__icon svg {
    position: absolute;
    right: -4px;
    bottom: -4px;
    display: block;
    width: 100px;
    height: 100px;
    border-bottom-right-radius: 24px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1023px) {
  .prizes-card--small .prizes-card__icon svg {
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 768px) {
  .prizes-card--small::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border: 4px solid #9ed0e0;
    border-radius: 24px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  .prizes-card--small:hover::after {
    opacity: 1;
  }
}

.prizes__button {
  margin-top: 18px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .prizes__button {
    margin-top: 40px;
    margin-bottom: 38px;
  }
}

.prizes__bg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 10;
  overflow: hidden;
  margin-top: -40px;
}
.prizes__bg img {
  max-width: 150%;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center bottom;
}
@media screen and (min-width: 768px) {
  .prizes__bg {
    margin-top: -55px;
  }
  .prizes__bg img {
    width: 100%;
    height: auto;
  }
}

.spots {
  position: relative;
  height: auto;
}
.spots::before {
  position: absolute;
  top: -43px;
  background-image: url(../img/sp/sp_spots_top.png);
  width: 100%;
  height: 45.7px;
  content: "";
  background-repeat: repeat-x;
  background-position: left -3px center;
  background-size: contain;
}
.spots::after {
  position: absolute;
  bottom: -44px;
  left: 0;
  background-image: url(../img/sp/sp_spots_bottom.png);
  width: 100%;
  height: 45.7px;
  content: "";
  background-repeat: repeat-x;
  background-position: left -6px center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .spots::before {
    position: absolute;
    top: -120px;
    background-image: url(../img/spots_top.png);
    width: 100%;
    height: 120px;
    content: "";
    background-repeat: repeat-x;
    background-size: contain;
  }
  .spots::after {
    position: absolute;
    bottom: -118px;
    left: 0;
    background-image: url(../img/spots_bottom.png);
    width: 100%;
    height: 120px;
    content: "";
    background-repeat: repeat-x;
    background-position: left -6px center;
    background-size: contain;
  }
}

@media screen and (min-width: 768px) {
  .spots__bg-pawpads {
    position: absolute;
    bottom: -4px;
    left: calc(50% - 720px);
    width: 100px;
  }
}

.spots__outer {
  padding-top: 5px;
  padding-bottom: 19.86px;
  background-color: #67b0c7;
}
@media screen and (min-width: 768px) {
  .spots__outer {
    padding-top: 0;
    padding-bottom: 0;
  }
}

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

.spots__heading-wrap {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .spots__heading-wrap {
    width: 56px;
  }
}

.spots__heading {
  position: relative;
  display: inline-block;
  padding-left: 36px;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
}
.spots__heading::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 28px;
  content: "";
  background-color: transparent;
  background-image: url(../img/spots_staricon.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .spots__heading {
    padding-top: 72px;
    padding-right: 3px;
    padding-left: 3px;
    font-size: 40px;
    letter-spacing: 0.25em;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
  }
  .spots__heading::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 56px;
    height: 56px;
    content: "";
    background-color: transparent;
    background-image: url(../img/spots_staricon.png);
    background-repeat: no-repeat;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-position: center center;
    background-size: contain;
  }
}

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

@media screen and (min-width: 768px) {
  .swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
  }
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

.spots-cards {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .spots-cards {
    margin-top: 0;
  }
}

.swiper-slide {
  -webkit-transition: -webkit-transform 0.3s ease !important;
  transition: -webkit-transform 0.3s ease !important;
  transition: transform 0.3s ease !important;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease !important;
}

.spots-card {
  width: 240px !important;
}
@media screen and (min-width: 768px) {
  .spots-card {
    width: 344px !important;
  }
}
.spots-card img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.spots-card__img img {
  height: 180px !important;
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 768px) {
  .spots-card__img img {
    height: 240px !important;
    border-radius: 24px 24px 0 0;
  }
}

.spots-card__body {
  background-color: #ffffff;
  padding: 16px 24px;
  border-radius: 0 0 12px 12px;
  height: 220px !important;
}
@media screen and (min-width: 768px) {
  .spots-card__body {
    height: 262px !important;
    border-radius: 0 0 24px 24px;
    padding: 24px 32px 40px;
    height: 302px !important;
  }
}

.spots-card__title {
  color: #4a3636;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .spots-card__title {
    font-size: 20px;
  }
}

.spots-card__text {
  margin-top: 16px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .spots-card__text {
    text-align: left;
    font-size: 16px;
    margin-top: 24px;
  }
}

@media screen and (min-width: 768px) {
  .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
  }
}

@media screen and (min-width: 768px) {
  .spots__inner {
    max-width: 1084px;
    padding-right: 30px;
    padding-left: 30px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .spots__arrows {
    max-width: 944px;
    margin-top: -32px;
    position: relative;
    z-index: 2;
  }
}

@media screen and (min-width: 768px) {
  .spots-swiper-arrows {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .swiper-button-prev {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .swiper-button-prev::after {
    content: "" !important;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  .spots-cards__prev {
    background-image: url(../img/spots_prev_icon.png);
    position: static;
    width: 80px !important;
    height: 80px !important;
    background-color: #ffee56;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: background-position 0.3s !important;
    transition: background-position 0.3s !important;
    left: 40px !important;
  }
}

@media screen and (min-width: 768px) {
  .swiper-button-next {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .swiper-button-next::after {
    content: "" !important;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  .spots-cards__next {
    background-image: url(../img/spots_next_icon.png);
    position: static;
    width: 80px !important;
    height: 80px !important;
    background-color: #ffee56;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: background-position 0.3s !important;
    transition: background-position 0.3s !important;
    right: -40px !important;
  }
}

.spots__bottom {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .spots__bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 45px;
    padding-top: 53px;
    gap: 30px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.spots__decoration-en {
  display: block;
  width: 254px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .spots__decoration-en {
    width: 494px;
    margin: 0;
  }
}

.spots__text-wrap {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .spots__text-wrap {
    margin-top: 0;
  }
}

.spots__text {
  font-size: 11.444px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .spots__text {
    font-size: 16px;
    text-align: right;
  }
}

.spots__button {
  padding-bottom: 4px;
  margin-top: 24px;
  text-align: center;
}
.qa {
  margin-top: -37px;
  background-color: #e9f6f8;
  padding-top: 120px;
}
@media screen and (min-width: 768px) {
  .qa {
    padding-top: 280px;
  }
}

.qa__inner {
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .qa__inner {
    padding-inline: 44px;
    max-width: 1112px;
  }
}

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

.qa-box {
  border: 2px solid #111;
  border-radius: 12px;
  overflow: hidden;
}
.qa-box.is-open .qa-box__head-toggle::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .qa-box.is-open {
    border-radius: 16px;
  }
  .qa-box.is-open.is-open .qa-box__head-toggle::before {
    display: none;
  }
}

.qa-box__head {
  background-color: #ffffff;
  padding: 10px 48px 10px 14px;
  border-radius: 12px 12px 0 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  overflow: visible;
  padding-right: 12px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .qa-box__head {
    padding: 21px 22px 20px 22px;
    gap: 16px;
    border-radius: 16px 16px 0 0;
  }
}

.qa-box__head-icon {
  color: #9ed0e0;
  font-family: "Josefin Sans";
  font-size: 24px;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .qa-box__head-icon {
    font-size: 32px;
  }
}

.qa-box__head-text {
  display: block;
  color: #4a3636;
  font-size: 14px;
  font-weight: 700;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  line-height: 1.59;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .qa-box__head-text {
    font-size: 20px;
  }
}

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

.qa-box__body {
  background-color: #f5f5f5;
  border-radius: 0 0 12px 12px;
  padding: 16px 13px 14px 14px;
  position: relative;
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .qa-box__body {
    border-radius: 0 0 16px 16px;
    padding: 24px 22px 22px 22px;
  }
}

.qa-box__answer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.qa-box__answer-icon {
  color: #9ed0e0;
  font-family: "Josefin Sans";
  font-size: 24px;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .qa-box__answer-icon {
    font-size: 32px;
  }
}

.qa-box__answer-text {
  color: #4a3636;
  font-size: 14px;
  display: block;
}
@media screen and (min-width: 768px) {
  .qa-box__answer-text {
    font-size: 16px;
  }
}

.entry {
  background-color: #e9f6f8;
  padding-top: 30px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .entry {
    padding-inline: 44px;
    max-width: 1112px;
    margin-top: 120px;
    padding-top: 0;
  }
}

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

.entry__contents {
  background: rgba(255, 255, 255, 0.5);
  border: 8px solid #ffffff;
  padding-top: 16px;
  padding-right: 15.5px;
  padding-bottom: 17.5px;
  padding-left: 15.5px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .entry__contents {
    padding-top: 35px;
    padding-right: 48px;
    padding-bottom: 33px;
    padding-left: 48px;
  }
}

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

.entry-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.entry-table__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 14px;
  text-align: left;
  border-bottom: 1px solid #cccccc;
}
.entry-table__row:first-child {
  padding-top: 0;
}
.entry-table__row:last-child {
  border: none;
}
@media screen and (min-width: 768px) {
  .entry-table__row {
    padding-top: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    gap: 11px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 16px;
  }
}

.entry-table__head {
  position: relative;
  height: 100%;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  vertical-align: middle;
}
.entry-table__head::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #9ed0e0;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .entry-table__head {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    width: 213px;
    font-size: 16px;
  }
}

.entry-table__data {
  text-align: left;
  vertical-align: middle;
  font-size: 12px;
}
.entry-table__data ul li {
  padding-left: 1.5em;
  line-height: 19px;
  position: relative;
}
.entry-table__data ul li:before {
  position: absolute;
  top: 0.1em;
  left: 0.2em;
  content: "・";
}
.entry-table__data a {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media screen and (min-width: 768px) {
  .entry-table__data {
    text-align: left;
    vertical-align: middle;
    font-size: 16px;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .entry-table__data ul li {
    line-height: 26px;
  }
}

.entry_bg_img {
  background-color: #e9f6f8;
  padding-top: 32px;
}
@media screen and (min-width: 768px) {
  .entry_bg_img {
    padding-top: 117px;
  }
}
.entry_bg_img img {
  width: 100%;
}

.contact {
  padding-top: 40px;
  padding-bottom: 43px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-block: 120px;
  }
}

.contact__inner {
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 1688px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

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

.contact__form {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-top: 40px;
    max-width: 848px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .contact__form {
    max-width: 880px;
  }
}

.contact__fields {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .contact__fields {
    gap: 22px;
  }
}

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

.form-field__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .form-field__head {
    width: 25.9433962264%;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .form-field__head {
    width: 29.5454545455%;
  }
}

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

.form-field__tag {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  background-color: #ce2073;
  border-radius: 4px;
  padding: 4px 8px;
}

.form-field__item {
  margin-top: 8px;
  border-radius: 8px;
  background: #f5f5f5;
  padding: 0;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .form-field__item {
    width: 91.7874396135%;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .form-field__item {
    width: 70.4545454545%;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-top: 0;
  }
}

.select-arrow-button {
  position: absolute;
  width: 52px;
  height: 100%;
  right: 0;
  top: 0;
  background-color: #9ed0e0;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}

.select-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 16px;
  padding-right: 52px;
  border: none;
  border-radius: 8px;
  background-color: #f5f5f5;
  color: #4a3636;
  font-size: 14px;
  cursor: pointer;
}
.form-select:focus {
  outline: none;
  border: 1px solid #9ed0e0;
  background-color: #e9f6f8;
}
@media screen and (min-width: 768px) {
  .form-select {
    font-size: 16px;
  }
}

.form-text {
  display: block;
  width: 100%;
  border: none;
  background: #f5f5f5;
  font-size: 14px;
  padding: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.form-text::-webkit-input-placeholder {
  color: #cccccc;
}
.form-text::-moz-placeholder {
  color: #cccccc;
}
.form-text:-ms-input-placeholder {
  color: #cccccc;
}
.form-text::-ms-input-placeholder {
  color: #cccccc;
}
.form-text::placeholder {
  color: #cccccc;
}
.form-text:focus {
  outline: none;
  border-radius: 7px;
  border: 1px solid #9ed0e0;
  background: #e9f6f8;
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .form-text {
    font-size: 16px;
  }
}

.form-field__item:focus {
  padding: 0;
  background: #e9f6f8;
  border: 2px solid #9ed0e0;
}

.form-select {
  color: #4a3636;
  border: none;
  background: #f5f5f5;
}

.contact__field-mailmagazine {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .contact__field-mailmagazine {
    margin-top: 16px;
  }
}

.form-field__item-mail {
  margin-top: 8px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .form-field__item-mail {
    margin-top: 0;
  }
}

.form-field__radio {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-radio {
  margin-right: 21px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.form-radio__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 24px;
  height: 24px;
  margin: 0;
  border-radius: 50%;
  outline: none;
  margin-right: 8px;
  background-color: #f5f5f5;
}
.form-radio__input:focus::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 1px solid #9ed0e0;
  border-radius: 50%;
  pointer-events: none;
  outline: none;
}
.form-radio__input:checked {
  background-color: #9ed0e0;
  -webkit-box-shadow: inset 0 0 0 6px #f5f5f5;
          box-shadow: inset 0 0 0 6px #f5f5f5;
}

@media screen and (min-width: 768px) {
  .form-radio__text {
    font-size: 16px;
  }
}

.contact__field-message {
  margin-top: -6px;
}
@media screen and (min-width: 768px) {
  .contact__field-message {
    margin-top: 10px;
  }
}

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

.form-textarea {
  width: 100%;
  background: #f5f5f5;
  border: none;
  font-size: 14px;
  padding: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 160px;
  border-radius: 8px;
}
.form-textarea::-webkit-input-placeholder {
  color: #cccccc;
}
.form-textarea::-moz-placeholder {
  color: #cccccc;
}
.form-textarea:-ms-input-placeholder {
  color: #cccccc;
}
.form-textarea::-ms-input-placeholder {
  color: #cccccc;
}
.form-textarea::placeholder {
  color: #cccccc;
}
.form-textarea:focus {
  outline: none;
  border-radius: 7px;
  background: #e9f6f8;
  border: 1px solid #9ed0e0;
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .form-textarea {
    font-size: 16px;
  }
}

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

.form-checkbox {
  display: inline-block;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
}

.form-checkbox__input {
  border-radius: 4%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 24px;
  height: 24px;
  margin: 0;
  margin-right: 9px;
  background-color: #f5f5f5;
  position: relative;
  cursor: pointer;
}
.form-checkbox__input:checked {
  background-color: #cccccc;
}
.form-checkbox__input:checked + .checkbox-svg {
  opacity: 1;
}
.form-checkbox__input.error {
  border: 1px solid #ce2073;
  background: #fff0f0;
}

.form-field__item.error textarea,
.form-field__item.error input,
.form-field__item.error select {
  border: 2px solid #ce2073 !important;
  background-color: #fff0f0 !important;
}

.select-arrow-button.error {
  background-color: #ce2073;
}

input,
textarea,
select {
  -webkit-transition: border 0.2s;
  transition: border 0.2s;
}

.checkbox-svg {
  position: absolute;
  left: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text a {
  display: inline-block;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
          text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.form-checkbox__text a:hover {
  color: #67b0c7;
}

.contact__button {
  margin-top: 26px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 40px;
    padding-inline: 40px;
  }
}

@media screen and (min-width: 768px) {
  .button-ct {
    padding-inline: 40px;
  }
}

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

@media screen and (min-width: 768px) {
  .footer__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 40px;
    padding-right: 40px;
  }
}

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

.sns-links__title {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  line-height: 1.25;
  text-align: center;
}
.sns-links__title::before {
  content: "\\ ";
}
.sns-links__title::after {
  content: " /";
}
@media screen and (min-width: 768px) {
  .sns-links__title {
    font-size: 24px;
  }
}

.sns-links__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
}
.sns-button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
}
.sns-button img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sns-button {
    font-size: 24px;
    position: relative;
    width: 40px;
    height: 40px;
    -webkit-transition: -webkit-filter 0.3s;
    transition: -webkit-filter 0.3s;
    transition: filter 0.3s;
    transition: filter 0.3s, -webkit-filter 0.3s;
  }
}

.footer__img_onomichi {
  display: block;
  max-width: 328px;
  margin-top: 13px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .footer__img_onomichi {
    max-width: 755px;
    margin-top: 40px;
  }
}

.footer__address-wrap {
  margin-top: -3px;
}
.address-wrap {
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 16px;
}
@media screen and (min-width: 768px) {
  .address-wrap {
    margin-top: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1024px;
    margin-inline: auto;
  }
}

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

.address-wrap__body {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 22px;
  padding-right: 26px;
  padding-bottom: 30px;
  padding-left: 27px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .address-wrap__body {
    padding: 10px;
    margin-top: 0;
  }
}

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

.address-wrap__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .address-wrap__info {
    gap: 12px;
    margin-top: 26px;
  }
}

.address-wrap__info-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .address-wrap__info-row {
    gap: 40px;
  }
}

.address-wrap__info-term {
  position: relative;
  min-width: 64px;
  padding-left: 16px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}
.address-wrap__info-term::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #9ed0e0;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .address-wrap__info-term {
    font-size: 16px;
    width: 80px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .address-wrap__info-term {
    font-size: 14px;
    width: 80px;
  }
}

.address-wrap__info-description {
  font-size: 12px;
  font-style: normal;
}
.address-wrap__info-description a {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .address-wrap__info-description {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .address-wrap__info-description {
    font-size: 13px;
  }
}

.footer__pagetop {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__pagetop {
    z-index: 10;
    margin-top: 0;
    right: 40px;
    bottom: 40px;
  }
}

.pagetop-sp {
  display: inline-block;
  width: 75px;
  cursor: pointer;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

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

.footer__copyright {
  display: block;
  padding-bottom: 25px;
  font-size: 10px;
  color: #ffffff;
  text-align: center;
  background-color: #67b0c7;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    padding-bottom: 32px;
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  .pagetop {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 50;
    right: 40px;
    bottom: 40px;
    width: min(20%, 75px);
    width: 100px;
  }
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.prizes-modal {
  width: 336px;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 100;
  max-width: calc(100% - 20px);
  max-height: calc(100% - 20px);
  padding-top: 0;
  padding-bottom: 80px;
  text-align: center;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
}
.prizes-modal figure {
  margin: 0;
}
.prizes-modal figure .prizes-modal__image img {
  max-width: 100%;
}
.prizes-modal figure figcaption {
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .prizes-modal {
    max-width: calc(100% - 20px);
    max-height: calc(100% - 20px);
    width: 480px;
    padding: 0;
    padding-right: 20px;
    padding-bottom: 80px;
    padding-left: 20px;
  }
  .prizes-modal figure {
    margin: 0;
  }
  .prizes-modal figure img {
    max-width: 100%;
  }
  .prizes-modal figure figcaption {
    padding-right: 40px;
    padding-left: 40px;
  }
}

.modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99;
}

.prizes-modal__image {
  width: calc(100% + 40px);
  margin-left: -20px;
}
.prizes-modal__image img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .prizes-modal__image {
    width: calc(100% + 80px);
    margin-left: -40px;
  }
}

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

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

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