@charset "UTF-8";
.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .heading {
    gap: 8px;
  }
}

.heading-icon img {
  width: 37.333px;
}
@media screen and (min-width: 769px) {
  .heading-icon img {
    width: 48px;
  }
}

.heading-en {
  font-family: "Courgette", cursive;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .heading-en {
    font-size: 20px;
  }
}

.heading-ja {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  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: 769px) {
  .heading-ja {
    font-size: 32px;
    padding-bottom: 8px;
    border-bottom: 8px solid #ffee56;
  }
}

.button {
  display: inline-block;
  padding: 4px 22px 6px 22px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 40px;
  border: 2px solid var(--LP-Blown, #4a3636);
  background: var(--LP-White, #fff);
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.button:hover {
  background: #ffee56;
}

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

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

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

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: #fff;
}

.header__inner {
  padding: 16px 20px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .header__inner {
    padding-inline: 24px;
  }
}

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

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

.header__link {
  font-weight: 400;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__link:hover {
  text-decoration-line: underline;
  color: #67b0c7;
}

.header__button {
  margin-left: 4px;
  padding: 4px 22px 6px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.header__button:hover {
  background: #ffee56;
}

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

.drawer-icon {
  width: 32px;
  height: 24px;
  position: relative;
}
.drawer-icon.is-checked .header__icon-bar:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}
.drawer-icon.is-checked .header__icon-bar:nth-child(1)::before {
  display: none;
}
.drawer-icon.is-checked .header__icon-bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-checked .header__icon-bar:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
}

.header__icon-bar {
  position: absolute;
  width: 32px;
  height: 3px;
  background: #4a3636;
  top: 0;
  left: 0;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.header__icon-bar:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  background: #fff;
  width: 4.8px;
  height: 3px;
}
.header__icon-bar:nth-child(2) {
  top: 11px;
}
.header__icon-bar:nth-child(3) {
  top: 22px;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  z-index: 50;
  padding-top: 146px;
  padding-bottom: 82px;
  -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;
}
@media screen and (min-width: 769px) {
  .drawer-content {
    display: none;
  }
}
.drawer-content.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer-content__link {
  display: block;
  padding-bottom: 40px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}

.drawer-content__button {
  text-align: center;
}

.fv {
  background: url(../img/Onomichi_02\ 2-fv.png) no-repeat center center/cover;
  border-radius: 0px 0px 24px 24px;
  padding-top: 81px;
  padding-bottom: 377px;
}
@media screen and (min-width: 769px) {
  .fv {
    padding-top: 98px;
    padding-bottom: 463px;
    border-radius: 0px 0px 40px 40px;
  }
}

.fv__inner {
  padding-inline: 20px;
}

.fv__head {
  text-align: center;
}

.fv__head-sub-title {
  text-shadow: 0px 0px 30px #fff;
  font-family: "Kiwi Maru", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .fv__head-sub-title {
    font-size: 24px;
    font-weight: 500;
  }
}

.fv__head-title-image {
  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;
  gap: 12px;
}
@media screen and (min-width: 769px) {
  .fv__head-title-image {
    margin-top: 24px;
    gap: 16px;
  }
}

.title1 {
  width: 335px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .title1 {
    width: 520px;
  }
}

.title2 {
  width: 240px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .title2 {
    width: 356px;
  }
}

.fv__content {
  position: relative;
}

.content__bubble {
  position: absolute;
  top: 18.41px;
  right: calc(50% + 22.5px);
}
@media screen and (min-width: 769px) {
  .content__bubble {
    top: 0;
    right: calc(50% + 145.5px);
  }
}
.content__bubble img {
  width: 139.672px;
  height: 77.519px;
}
@media screen and (min-width: 769px) {
  .content__bubble img {
    width: 240px;
    height: 125.969px;
  }
}

.bubble__text {
  position: absolute;
  color: #ce2073;
  text-align: right;
  text-shadow: 0px 0px 2.295px #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 18.361px;
  font-weight: 400;
  line-height: 1;
  top: 5.58px;
  right: calc(50% - 29.5px);
}
@media screen and (min-width: 769px) {
  .bubble__text {
    text-shadow: 0px 0px 4px #fff;
    font-size: 32px;
    right: calc(50% - 57.5px);
    top: 10px;
  }
}

.content__circle {
  position: absolute;
  top: 10px;
  left: calc(50% + 32.5px);
}
@media screen and (min-width: 769px) {
  .content__circle {
    top: 17px;
    left: calc(50% + 117px);
  }
}
.content__circle img {
  width: 110px;
  height: 110px;
}
@media screen and (min-width: 769px) {
  .content__circle img {
    width: 180px;
    height: 180px;
  }
}

.circle__body {
  position: absolute;
  top: 22px;
  left: calc(50% - 40.5px);
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .circle__body {
    top: 36px;
    left: calc(50% - 66.5px);
  }
}

.circle__body-text {
  color: #fff;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 10px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .circle__body-text {
    font-size: 16px;
  }
}

.circle__body-text2 {
  color: #ffee56;
  font-size: 30.458px;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (min-width: 769px) {
  .circle__body-text2 {
    font-size: 49.84px;
  }
}

.small-text {
  font-size: 9.778px;
}
@media screen and (min-width: 769px) {
  .small-text {
    font-size: 16px;
  }
}

.is-white {
  color: #fff;
}

.circle__body-text3 {
  color: #fff;
  font-size: 14.667px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .circle__body-text3 {
    font-size: 24px;
  }
}

.iphone__image {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 113px;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .iphone__image {
    top: 33px;
  }
}
.iphone__image img {
  width: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .iphone__image img {
    width: 250px;
  }
}

.iphone__textarea {
  position: absolute;
  top: 235.6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  border-radius: 12.8px;
  background: #fff;
  padding-bottom: 15.2px;
  width: 160px;
}
@media screen and (min-width: 769px) {
  .iphone__textarea {
    width: 200px;
    top: 185.5px;
    border-radius: 16px;
    padding-bottom: 20px;
  }
}

.textarea__head {
  padding: 6.4px 9.6px;
  color: #fff;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 12.8px;
  border-radius: 12.8px 12.8px 0 0;
  font-weight: 700;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
}
@media screen and (min-width: 769px) {
  .textarea__head {
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 16px 16px 0 0;
  }
}

.textarea__body {
  margin-top: 12.8px;
}
@media screen and (min-width: 769px) {
  .textarea__body {
    margin-top: 16px;
  }
}

.body__head {
  font-size: 12px;
  font-weight: 400;
  border-bottom: 2.4px solid #ce2073;
  padding-bottom: 3.2px;
}
@media screen and (min-width: 769px) {
  .body__head {
    font-size: 14px;
    border-bottom: 3px solid #ce2073;
    padding-bottom: 4px;
  }
}

.body__days {
  margin-top: 6.2px;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .body__days {
    margin-top: 9px;
    font-size: 16px;
  }
}

.body__button {
  margin-top: 12.8px;
}
@media screen and (min-width: 769px) {
  .body__button {
    margin-top: 16px;
  }
}

.fv__button {
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  .fv__button {
    font-size: 16px;
  }
}

.content__food {
  position: absolute;
  top: 391px;
  right: calc(50% + 81.5px);
}
@media screen and (min-width: 769px) {
  .content__food {
    top: 240px;
    right: calc(50% + 217px);
  }
}
.content__food img {
  width: 86px;
}
@media screen and (min-width: 769px) {
  .content__food img {
    width: 202px;
  }
}

.cat__black {
  position: absolute;
  top: 405px;
  left: calc(50% + 105px);
}
@media screen and (min-width: 769px) {
  .cat__black {
    top: 309px;
    left: calc(50% + 191px);
  }
}
.cat__black img {
  width: 62px;
}
@media screen and (min-width: 769px) {
  .cat__black img {
    width: 170px;
  }
}

.cat__white {
  position: absolute;
  top: 460px;
  left: calc(50% + 60.5px);
}
@media screen and (min-width: 769px) {
  .cat__white {
    top: 429px;
    left: calc(50% + 191px);
  }
}
.cat__white img {
  width: 98px;
}
@media screen and (min-width: 769px) {
  .cat__white img {
    width: 233px;
  }
}

.about {
  padding-top: 188px;
  background: #e9f6f8;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .about {
    padding-top: 177px;
  }
}

.about__inner {
  position: relative;
}

.pawpads {
  position: absolute;
  width: 54px;
  top: -10px;
  left: calc(50% + 133.5px);
}
@media screen and (min-width: 769px) {
  .pawpads {
    width: 100px;
    top: -80px;
    left: calc(50% + 490px);
  }
}

.wave {
  display: none;
}
@media screen and (min-width: 769px) {
  .wave {
    width: 873.922px;
    top: 607.33px;
    left: calc(50% + 448px);
    display: block;
    position: absolute;
  }
}

.photo-right {
  position: absolute;
  width: 200px;
  top: 273px;
  left: calc(50% + 127px);
}
@media screen and (min-width: 769px) {
  .photo-right {
    width: 480px;
    top: 73.07px;
    left: calc(50% + 560px);
  }
}

.photo-left {
  position: absolute;
  width: 200px;
  top: 395px;
  right: calc(50% + 127px);
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .photo-left {
    width: 480px;
    top: 73.07px;
    right: calc(50% + 614px);
  }
}

.diagonal {
  display: none;
}
@media screen and (min-width: 769px) {
  .diagonal {
    top: -20px;
    right: calc(50% + 527px);
    display: block;
    position: absolute;
    width: 250px;
  }
}

.about__content {
  position: relative;
  max-width: 335px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  border-radius: 24px;
  background: #fff;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .about__content {
    max-width: 848px;
    border-radius: 40px;
  }
}
.about__content::after {
  content: "";
  position: absolute;
  top: 709px;
  width: 100px;
  height: 36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/about-arrow.png) no-repeat center center/contain;
}
@media screen and (min-width: 769px) {
  .about__content::after {
    width: 140px;
    height: 50px;
    top: 831px;
  }
}

.content__picture-left {
  position: absolute;
  width: 88px;
  top: 30px;
  right: calc(50% + 46.57px);
}
@media screen and (min-width: 769px) {
  .content__picture-left {
    width: 150px;
    top: 37px;
    right: calc(50% + 189.57px);
  }
}

.content__picture-right {
  position: absolute;
  width: 88px;
  top: 30px;
  left: calc(50% + 59.57px);
}
@media screen and (min-width: 769px) {
  .content__picture-right {
    width: 150px;
    top: 47px;
    left: calc(50% + 189.57px);
  }
}

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

.about__sub-title {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .about__sub-title {
    display: none;
  }
}

.about__sub-title-pc {
  display: none;
}
@media screen and (min-width: 769px) {
  .about__sub-title-pc {
    display: block;
    font-weight: 700;
    font-size: 16px;
  }
}

.about-text {
  margin-top: 24px;
  font-weight: 400;
}
.about-text:nth-of-type(4) {
  margin-top: 18px;
}
@media screen and (min-width: 769px) {
  .about-text:nth-of-type(4) {
    margin-top: 27px;
  }
}
.about-text:nth-of-type(5) {
  margin-top: 18px;
}
@media screen and (min-width: 769px) {
  .about-text:nth-of-type(5) {
    margin-top: 27px;
  }
}
.about-text:nth-of-type(6) {
  margin-top: 19px;
}
@media screen and (min-width: 769px) {
  .about-text:nth-of-type(6) {
    margin-top: 27px;
  }
}
@media screen and (min-width: 769px) {
  .about-text {
    margin-top: 35px;
    font-size: 16px;
  }
}

.about__link {
  text-decoration-line: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.about__link:hover {
  color: #67b0c7;
}

.about__bold {
  font-weight: 700;
}

.about__bottom-textbox {
  margin-top: 31px;
}
@media screen and (min-width: 769px) {
  .about__bottom-textbox {
    margin-top: 44px;
  }
}

.about__bottom-text {
  padding-bottom: 9px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px dashed #9ed0e0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .about__bottom-text {
    font-size: 20px;
  }
}

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

@media screen and (min-width: 769px) {
  .about__button-size {
    padding: 10px 40px 12px 40px;
    display: inline-block;
    border-radius: 40px;
    border: 3px solid var(--LP-Blown, #4a3636);
    background: var(--LP-White, #fff);
    -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
            box-shadow: 0px 4px 0px 0px #4a3636;
    font-size: 20px;
    font-weight: 700;
  }
}

.contents__bottom-image {
  position: relative;
}

.slope {
  position: absolute;
  width: 216px;
  top: -148px;
  left: 0;
}
@media screen and (min-width: 769px) {
  .slope {
    width: 427px;
    top: -510px;
    left: 0;
  }
}

.goods {
  position: absolute;
  width: 133px;
  top: 52.67px;
  left: calc(50% - 1.5px);
}
@media screen and (min-width: 769px) {
  .goods {
    z-index: 1;
    top: -74px;
    width: 308px;
    left: calc(50% + 374px);
  }
}

.goods2 {
  position: absolute;
  width: 48px;
  top: 11.67px;
  left: calc(50% + 118.5px);
}
@media screen and (min-width: 769px) {
  .goods2 {
    width: 101px;
    left: calc(50% + 505px);
    top: -230px;
  }
}

.onomichi-logo {
  position: absolute;
  width: 354px;
  top: 139.67px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 769px) {
  .onomichi-logo {
    top: 167px;
    width: 891px;
  }
}

.about__slide {
  margin-top: 176.8px;
}
@media screen and (min-width: 769px) {
  .about__slide {
    margin-top: 258px;
  }
}

.how-to-enter {
  padding-top: 61.8px;
  padding-bottom: 37.67px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .how-to-enter {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.how-to-enter__inner {
  position: relative;
  padding-inline: 20px;
}
@media screen and (min-width: 769px) {
  .how-to-enter__inner {
    padding-inline: 36px;
  }
}

.how-to-enter__content {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .how-to-enter__content {
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
}

.how-to-enter__box {
  padding-bottom: 16px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .how-to-enter__box {
    padding-bottom: 0;
    width: 200px;
  }
  .how-to-enter__box:nth-child(2) {
    padding-top: 69px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__box {
    padding-bottom: 0;
    width: 320px;
  }
  .how-to-enter__box:nth-child(2) {
    padding-top: 69px;
  }
}
.how-to-enter__box:nth-child(2)::before, .how-to-enter__box:nth-child(3)::before {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(../img/how-to-enter/device=SP.png) no-repeat center center/contain;
  top: -32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 7px;
  height: 34px;
}
@media screen and (min-width: 769px) {
  .how-to-enter__box:nth-child(2)::before, .how-to-enter__box:nth-child(3)::before {
    background: url(../img/how-to-enter/device=PC.png) no-repeat center center/contain;
    width: 80px;
    height: 24px;
    top: 143px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    left: -77px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__box:nth-child(2)::before, .how-to-enter__box:nth-child(3)::before {
    background: url(../img/how-to-enter/device=PC.png) no-repeat center center/contain;
    width: 113px;
    height: 24px;
    top: 205px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    left: -97px;
  }
}

.how-to-enter__box-image img {
  width: 196px;
}
@media screen and (min-width: 769px) {
  .how-to-enter__box-image img {
    width: 280px;
  }
}

.how-to-enter__box-body {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 769px) {
  .how-to-enter__box-body {
    margin-top: 24px;
  }
}

.how-to-enter__box-title {
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .how-to-enter__box-title {
    font-size: 15px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__box-title {
    font-size: 20px;
  }
}

.how-to-enter__box-text {
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .how-to-enter__box-text {
    font-size: 10px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__box-text {
    font-size: 16px;
  }
}

.how-to-enter-boder {
  text-decoration-line: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  cursor: pointer;
}
.how-to-enter-boder:hover {
  color: #67b0c7;
}

.how-to-enter__box-follow {
  padding: 8px 12px;
  background: #fff;
  width: 226px;
  margin: 0 auto;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.how-to-enter__box-follow:hover {
  background: #ffee56;
}
@media screen and (min-width: 769px) {
  .how-to-enter__box-follow {
    width: 200px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__box-follow {
    width: 254px;
  }
}

.follow__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.follow__link-icon {
  width: 20px;
}
@media screen and (min-width: 769px) {
  .follow__link-icon {
    width: 24px;
  }
}

.follow__link-text {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .follow__link-text {
    font-size: 10px;
  }
}
@media screen and (min-width: 900px) {
  .follow__link-text {
    font-size: 16px;
  }
}

.how-to-enter__bold {
  font-weight: 700;
}

.how-to-enter__button {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .how-to-enter__button {
    margin-top: 47px;
  }
}
.how-to-enter__button a {
  display: inline-block;
  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;
  font-weight: 700;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.how-to-enter__button a:hover {
  background: #ffee56;
}
@media screen and (max-width: 350px) {
  .how-to-enter__button a {
    font-size: 13px;
  }
}
@media screen and (min-width: 769px) {
  .how-to-enter__button a {
    padding: 10px 37px 12px 37px;
    border: 3px solid #4a3636;
    -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
            box-shadow: 0px 4px 0px 0px #4a3636;
    font-size: 20px;
  }
}

.how-to-enter__picture-map {
  position: absolute;
  top: 0;
  right: calc(50% + 38.5px);
  width: 149px;
}
@media screen and (min-width: 769px) {
  .how-to-enter__picture-map {
    top: -60px;
    right: calc(50% + 260px);
    width: 460px;
  }
}
.how-to-enter__picture-map img {
  width: 100%;
}
.how-to-enter__picture-white-cat {
  position: absolute;
  top: 0;
  left: calc(50% + 58.5px);
  width: 105px;
}
@media screen and (min-width: 769px) {
  .how-to-enter__picture-white-cat {
    left: calc(50% + 287px);
    top: -26px;
    width: 238px;
  }
}
.how-to-enter__picture-white-cat img {
  width: 100%;
}
.how-to-enter__picture-grey-cat {
  position: absolute;
  top: 5px;
  left: calc(50% + 124.5px);
  width: 94px;
}
@media screen and (min-width: 769px) {
  .how-to-enter__picture-grey-cat {
    top: -16.03px;
    left: calc(50% + 437px);
    width: 214px;
  }
}
.how-to-enter__picture-grey-cat img {
  width: 100%;
}
.how-to-enter__picture-right-pawpads {
  position: absolute;
  top: 74px;
  left: calc(50% + 112px);
  width: 55px;
}
@media screen and (min-width: 769px) {
  .how-to-enter__picture-right-pawpads {
    top: 148px;
    left: calc(50% + 620px);
    width: 100px;
  }
}
.how-to-enter__picture-right-pawpads img {
  width: 100%;
}
.how-to-enter__picture-left-pawpads {
  position: absolute;
  top: 549.55px;
  right: calc(50% + 112px);
  width: 55px;
}
@media screen and (min-width: 769px) {
  .how-to-enter__picture-left-pawpads {
    top: 580px;
    right: calc(50% + 620px);
    width: 100px;
  }
}
.how-to-enter__picture-left-pawpads img {
  width: 100%;
}
.how-to-enter__picture-right2-pawpads {
  position: absolute;
  top: 879.88px;
  left: calc(50% + 112px);
  width: 55px;
}
@media screen and (min-width: 769px) {
  .how-to-enter__picture-right2-pawpads {
    display: none;
  }
}
.how-to-enter__picture-right2-pawpads img {
  width: 100%;
}

.prizes {
  padding-top: 84px;
}
@media screen and (min-width: 769px) {
  .prizes {
    padding-top: 153px;
  }
}

.prizes__inner {
  padding-inline: 20px;
  border-radius: 24px;
  background: #fff;
  position: relative;
  padding-bottom: 34.67px;
}
@media screen and (min-width: 769px) {
  .prizes__inner {
    max-width: 1024px;
    margin: 0 auto;
    padding-bottom: 55px;
  }
}
.prizes__inner::after {
  content: "";
  position: absolute;
  top: -83px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .prizes__inner::after {
    width: 320px;
    height: 320px;
    top: -150px;
  }
}

.prizes__inner-icon-left {
  display: none;
}
@media screen and (min-width: 769px) {
  .prizes__inner-icon-left {
    display: block;
    position: absolute;
    top: -122px;
    right: calc(50% + 197px);
  }
}
@media screen and (min-width: 769px) {
  .prizes__inner-icon-left img {
    width: 315px;
  }
}

.prizes__inner-icon-right {
  display: none;
}
@media screen and (min-width: 769px) {
  .prizes__inner-icon-right {
    display: block;
    position: absolute;
    top: -122px;
    left: calc(50% + 197px);
  }
}
@media screen and (min-width: 769px) {
  .prizes__inner-icon-right img {
    width: 315px;
  }
}

.prizes-heading {
  position: relative;
}

.prizes-heading-icon {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -63px;
}
@media screen and (min-width: 769px) {
  .prizes-heading-icon {
    top: -122px;
  }
}

.prizes-heading-en {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -19.67px;
}
@media screen and (min-width: 769px) {
  .prizes-heading-en {
    top: -64.67px;
  }
}

.prizes-heading-ja {
  margin-top: 6px;
}
@media screen and (min-width: 769px) {
  .prizes-heading-ja {
    margin-top: -32px;
  }
}

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

.prizes__card-boxes {
  max-width: 335px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .prizes__card-boxes {
    max-width: 912px;
  }
}

.prizes__card-contents {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 15px;
  place-content: center;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .prizes__card-contents {
    margin-top: 82px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 450px 300px;
    gap: 30px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card-contents {
    margin-top: 82px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 510px 360px;
    gap: 30px;
  }
}

.card-box {
  padding-top: 24px;
  -webkit-transition: border 0.1s;
  transition: border 0.1s;
}
@media screen and (min-width: 769px) {
  .card-box {
    padding-top: 0px;
  }
}
@media screen and (min-width: 900px) {
  .card-box {
    padding-top: 0px;
  }
  .card-box:hover {
    border: 3px solid #9ed0e0;
    border-radius: 20px;
  }
}
.card-box:nth-child(5) {
  grid-row: 3;
  grid-column: 1/3;
}
@media screen and (min-width: 769px) {
  .card-box:nth-child(5) {
    margin-bottom: 33px;
    padding-top: 0px;
    grid-row: 2;
    grid-column: 5/7;
  }
}
@media screen and (min-width: 769px) {
  .card-box:nth-child(1) {
    padding-top: 0px;
    grid-column: 1/4;
    margin-bottom: 43px;
  }
}
@media screen and (min-width: 769px) {
  .card-box:nth-child(2) {
    padding-top: 0px;
    grid-column: 4/7;
    margin-bottom: 43px;
  }
}
@media screen and (min-width: 769px) {
  .card-box:nth-child(4) {
    padding-top: 0px;
    grid-row: 2;
    grid-column: 3/5;
    margin-bottom: 33px;
  }
}
@media screen and (min-width: 769px) {
  .card-box:nth-child(3) {
    padding-top: 0px;
    grid-row: 2;
    grid-column: 1/3;
    margin-bottom: 33px;
  }
}
@media screen and (min-width: 769px) {
  .card-box:nth-of-type(1) .card-box__image, .card-box:nth-of-type(2) .card-box__image {
    width: 300px;
    height: 250px;
  }
}
@media screen and (min-width: 900px) {
  .card-box:nth-of-type(1) .card-box__image, .card-box:nth-of-type(2) .card-box__image {
    width: 433px;
    height: 340px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .card-box:nth-of-type(1) .card-box__image:hover, .card-box:nth-of-type(2) .card-box__image:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media screen and (min-width: 769px) {
  .card-box:nth-of-type(3) .card-box__image, .card-box:nth-of-type(4) .card-box__image, .card-box:nth-of-type(5) .card-box__image {
    width: 200px;
    height: 160px;
  }
}
@media screen and (min-width: 900px) {
  .card-box:nth-of-type(3) .card-box__image, .card-box:nth-of-type(4) .card-box__image, .card-box:nth-of-type(5) .card-box__image {
    width: 276px;
    height: 240px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .card-box:nth-of-type(3) .card-box__image:hover, .card-box:nth-of-type(4) .card-box__image:hover, .card-box:nth-of-type(5) .card-box__image:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media screen and (min-width: 769px) {
  .card-box:nth-of-type(1) .card-box__body, .card-box:nth-of-type(2) .card-box__body {
    width: 300px;
    height: 120px;
  }
}
@media screen and (min-width: 900px) {
  .card-box:nth-of-type(1) .card-box__body, .card-box:nth-of-type(2) .card-box__body {
    width: 433px;
    height: 120px;
  }
}
@media screen and (min-width: 769px) {
  .card-box:nth-of-type(3) .card-box__body, .card-box:nth-of-type(4) .card-box__body, .card-box:nth-of-type(5) .card-box__body {
    width: 200px;
    height: 80px;
  }
}
@media screen and (min-width: 900px) {
  .card-box:nth-of-type(3) .card-box__body, .card-box:nth-of-type(4) .card-box__body, .card-box:nth-of-type(5) .card-box__body {
    width: 276px;
    height: 80px;
  }
}
@media screen and (min-width: 769px) {
  .card-box:nth-of-type(3) .card-box__icon-picture, .card-box:nth-of-type(4) .card-box__icon-picture, .card-box:nth-of-type(5) .card-box__icon-picture {
    width: 80px;
    top: -40px;
  }
}
@media screen and (min-width: 769px) {
  .card-box:nth-of-type(3) .card-box__icon-text, .card-box:nth-of-type(4) .card-box__icon-text, .card-box:nth-of-type(5) .card-box__icon-text {
    font-size: 12.8px;
    top: -30px;
  }
}
@media screen and (min-width: 769px) {
  .card-box:nth-of-type(3) .card-box__icon-num, .card-box:nth-of-type(4) .card-box__icon-num, .card-box:nth-of-type(5) .card-box__icon-num {
    font-size: 38.4px;
    top: -7px;
  }
}
@media screen and (min-width: 769px) {
  .card-box:nth-of-type(1) .card-box__body-text {
    font-size: 20px;
    padding-top: 28px;
  }
}
@media screen and (min-width: 769px) {
  .card-box:nth-of-type(2) .card-box__body-text {
    font-size: 20px;
    padding-top: 44px;
  }
}
.card-box:nth-of-type(3) .card-box__body-text {
  padding-top: 18.5px;
}
@media screen and (min-width: 769px) {
  .card-box:nth-of-type(3) .card-box__body-text {
    font-size: 16px;
    padding-top: 27px;
  }
}
@media screen and (min-width: 769px) {
  .card-box:nth-of-type(4) .card-box__body-text, .card-box:nth-of-type(5) .card-box__body-text {
    font-size: 16px;
    padding-top: 14px;
  }
}
@media screen and (min-width: 769px) {
  .card-box:nth-of-type(1) .card-box__body::before, .card-box:nth-of-type(2) .card-box__body::before {
    top: 20px;
    border-radius: 0 0 20px 0;
    border-right: 100px solid #67b0c7;
    border-top: 100px solid transparent;
    width: 0px;
    height: 0px;
  }
  .card-box:nth-of-type(1) .card-box__body:hover::before, .card-box:nth-of-type(2) .card-box__body:hover::before {
    top: 20px;
    border-radius: 0 0 20px 0;
    border-right: 100px solid #9ed0e0;
    border-top: 100px solid transparent;
    width: 0px;
    height: 0px;
  }
}
@media screen and (min-width: 769px) {
  .card-box:nth-of-type(3) .card-box__body::before, .card-box:nth-of-type(4) .card-box__body::before, .card-box:nth-of-type(5) .card-box__body::before {
    border-right: 64px solid #67b0c7;
    border-top: 64px solid transparent;
    width: 0px;
    height: 0px;
    top: 16px;
  }
  .card-box:nth-of-type(3) .card-box__body:hover::before, .card-box:nth-of-type(4) .card-box__body:hover::before, .card-box:nth-of-type(5) .card-box__body:hover::before {
    top: 20px;
    border-radius: 0 0 20px 0;
    border-right: 64px solid #9ed0e0;
    border-top: 64px solid transparent;
    width: 0px;
    height: 0px;
  }
}
@media screen and (min-width: 769px) {
  .card-box:nth-of-type(1) .card-box__body-icon, .card-box:nth-of-type(2) .card-box__body-icon {
    top: 72px;
    right: 13px;
  }
  .card-box:nth-of-type(1) .card-box__body-icon img, .card-box:nth-of-type(2) .card-box__body-icon img {
    width: 32px;
    height: 32px;
  }
}
@media screen and (min-width: 769px) {
  .card-box:nth-of-type(3) .card-box__body-icon, .card-box:nth-of-type(4) .card-box__body-icon, .card-box:nth-of-type(5) .card-box__body-icon {
    top: 48px;
    right: 8px;
  }
  .card-box:nth-of-type(3) .card-box__body-icon img, .card-box:nth-of-type(4) .card-box__body-icon img, .card-box:nth-of-type(5) .card-box__body-icon img {
    width: 20.48px;
    height: 20.48px;
  }
}

.card-box__icon {
  position: relative;
}

.card-box__icon-text {
  position: absolute;
  color: #fff;
  text-align: center;
  font-size: 7.68px;
  font-weight: 700;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  top: -18px;
}
@media screen and (min-width: 769px) {
  .card-box__icon-text {
    font-size: 16px;
    top: -35px;
  }
}

.card-box__icon-num {
  position: absolute;
  color: #fff;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: 23.04px;
  font-weight: 700;
  line-height: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  top: -5px;
}
@media screen and (min-width: 769px) {
  .card-box__icon-num {
    font-size: 48px;
    top: -10px;
  }
}

.card-box__icon-picture {
  position: absolute;
  width: 48px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  top: -24px;
}
@media screen and (min-width: 769px) {
  .card-box__icon-picture {
    width: 100px;
    top: -50px;
  }
}

.card-box-zoom {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
@media screen and (min-width: 769px) {
  .card-box-zoom {
    border-radius: 20px 20px 0 0;
  }
}

.card-box__image {
  width: 160px;
  margin: 0 auto;
}
@media screen and (max-width: 350px) {
  .card-box__image {
    width: 140px;
  }
}
.card-box__image img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}
@media screen and (min-width: 769px) {
  .card-box__image img {
    border-radius: 20px 20px 0 0;
  }
}
.card-box__body {
  width: 160px;
  height: 56px;
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
  background: #f5f5f5;
  position: relative;
}
@media screen and (max-width: 350px) {
  .card-box__body {
    width: 140px;
  }
}
@media screen and (min-width: 769px) {
  .card-box__body {
    border-radius: 0 0 15px 15px;
  }
}
.card-box__body::before {
  content: "";
  position: absolute;
  border-right: 36px solid #67b0c7;
  border-top: 36px solid transparent;
  width: 0px;
  height: 0px;
  top: 19px;
  right: 0;
  border-radius: 0 0 8px 0;
}

.card-box__body-text {
  padding-top: 9px;
  font-weight: 700;
}

.card-box__body-icon {
  position: absolute;
  top: 30.36px;
  right: 5px;
}
.card-box__body-icon img {
  width: 11.52px;
  height: 11.52px;
}

.prizes__button {
  margin-top: 18px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .prizes__button {
    margin-top: 0px;
  }
}
.prizes__button a {
  display: inline-block;
  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;
  font-weight: 700;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.prizes__button a:hover {
  background: #ffee56;
}
@media screen and (max-width: 350px) {
  .prizes__button a {
    font-size: 13px;
  }
}
@media screen and (min-width: 769px) {
  .prizes__button a {
    border: 3px solid var(--LP-Blown, #4a3636);
    padding: 7px 37px 9px 37px;
    font-size: 20px;
  }
}

.prizes__bg {
  margin-top: -46.67px;
  padding-bottom: 216px;
  background: url(../img/prizes/img_prizes_bg.jpg) no-repeat top center/cover;
  height: 260px;
}
@media screen and (min-width: 769px) {
  .prizes__bg {
    height: 640px;
    padding-bottom: 520px;
    margin-top: 0;
  }
}

.spot {
  background: #67b0c7;
  padding-bottom: 19.84px;
}

.spot__inner {
  position: relative;
}
.spot__inner::after {
  content: "";
  position: absolute;
  background: url(../img/prizes/wave-top.png) repeat-x center center/contain;
  top: -42px;
  width: 100%;
  height: 45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1200px) {
  .spot__inner::after {
    top: -120px;
    width: 100%;
    height: 120px;
  }
}

.spot__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1200px) {
  .spot__head {
    position: absolute;
    content: "";
    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;
    left: 245px;
  }
}

.spot__icon img {
  width: 28px;
}
@media screen and (min-width: 1200px) {
  .spot__icon img {
    width: 56px;
  }
}

.spot__title {
  color: #fff;
  -webkit-font-feature-settings: "pwid" on;
          font-feature-settings: "pwid" on;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 125%;
}
@media screen and (min-width: 1200px) {
  .spot__title {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 40px;
    letter-spacing: 10px;
  }
}

.spot__slide {
  margin-top: 24px;
}
@media screen and (min-width: 1200px) {
  .spot__slide {
    margin-top: 0;
  }
}

@media screen and (min-width: 1200px) {
  .swiper {
    max-width: 2200px !important;
    margin-left: 322px;
  }
}

@media screen and (min-width: 1200px) {
  .swiper-wrapper {
    width: calc(100% + (100vw + 2200px) / 2);
    overflow: hidden;
    z-index: 2;
    margin-left: 322px;
  }
}

.slide__image {
  width: 100%;
}
.slide__image img {
  background: #fff;
  border-radius: 12px 12px 0 0;
  width: 240px;
}
@media screen and (min-width: 1200px) {
  .slide__image img {
    border-radius: 24px 24px 0 0;
    width: 344px;
    height: 240px;
  }
}

.slide__body {
  padding-top: 16px;
  text-align: center;
  border-radius: 0 0 12px 12px;
  height: 222px;
  width: 240px;
  padding-inline: 24px;
  background: #fff;
}
@media screen and (min-width: 1200px) {
  .slide__body {
    padding-top: 24px;
    border-radius: 0 0 24px 24px;
    width: 344px;
    height: 302px;
    padding-inline: 32px;
  }
}

.slide__body-title {
  color: #4a3636;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .slide__body-title {
    font-size: 20px;
  }
}

.slide__body-text {
  margin-top: 16px;
  color: #4a3636;
  font-weight: 400;
}
@media screen and (min-width: 1200px) {
  .slide__body-text {
    margin-top: 24px;
    font-size: 16px;
  }
}

.swiper-button-prev {
  display: none;
}
@media screen and (min-width: 1200px) {
  .swiper-button-prev {
    display: block;
    background: url(../img/prizes/step-prev.png) no-repeat center center/contain;
    width: 80px;
    height: 80px;
    top: 510px;
    left: calc(50% - 472px);
  }
  .swiper-button-prev::after {
    display: none;
  }
}

.swiper-button-next {
  display: none;
}
@media screen and (min-width: 1200px) {
  .swiper-button-next {
    display: block;
    background: url(../img/prizes/step-next.png) no-repeat center center/contain;
    width: 80px;
    height: 80px;
    top: 510px;
    right: calc(50% - 472px);
  }
  .swiper-button-next::after {
    display: none;
  }
}

.spot__bottom-content {
  text-align: center;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .spot__bottom-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 81px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 61px;
  }
}
.spot__bottom-content::before {
  content: "";
  position: absolute;
  background: url(../img/prizes/spot-wave-bottom.png) repeat-x center center/contain;
  top: 165px;
  width: 100%;
  height: 45.714px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1200px) {
  .spot__bottom-content::before {
    height: 120px;
    top: 114px;
  }
}

.spot__pawpads {
  display: none;
}
@media screen and (min-width: 1200px) {
  .spot__pawpads {
    position: absolute;
    width: 100px;
    display: block;
    top: -108px;
    right: calc(50% + 620px);
  }
}

.spot__logo img {
  width: 255px;
}
@media screen and (min-width: 1200px) {
  .spot__logo img {
    width: 495px;
  }
}

.spot__text {
  margin-top: 16px;
  color: #fff;
  font-size: 11.444px;
  font-weight: 400;
}
@media screen and (min-width: 1200px) {
  .spot__text {
    font-size: 16px;
    margin-top: 0;
  }
}

.spot__button {
  margin-top: 24px;
}
.spot__button a {
  display: inline-block;
  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;
  font-weight: 700;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.spot__button a:hover {
  background: #ffee56;
}
@media screen and (max-width: 350px) {
  .spot__button a {
    font-size: 13px;
  }
}
@media screen and (min-width: 1200px) {
  .spot__button a {
    border: 3px solid var(--LP-Blown, #4a3636);
    font-size: 20px;
    padding: 10px 37px 12px 37px;
  }
}

.qa {
  padding-top: 87px;
  padding-bottom: 30.67px;
  background: #e9f6f8;
}
@media screen and (min-width: 769px) {
  .qa {
    padding-top: 224px;
    padding-bottom: 120px;
  }
}

.qa__inner {
  padding-inline: 20px;
}
@media screen and (max-width: 350px) {
  .qa__inner {
    padding-inline: 5px;
  }
}
@media screen and (min-width: 769px) {
  .qa__inner {
    max-width: 1064px;
    margin: 0 auto;
  }
}

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

.qa__box {
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .qa__box {
    border-radius: 16px;
  }
}
.qa__box.is-open .qa-box__head::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.qa__box.is-open .qa-box__head::before {
  opacity: 0;
}
.qa__box:nth-of-type(1) .qa-box__body {
  display: block;
}

.qa-box {
  display: block;
}

.qa-box__head {
  display: block;
  width: 100%;
  padding: 10px 14px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .qa-box__head {
    padding: 24px;
  }
}
.qa-box__head::after, .qa-box__head::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 10.182px;
  height: 1px;
  background: #fff;
  z-index: 1;
  right: 22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media screen and (min-width: 769px) {
  .qa-box__head::after, .qa-box__head::before {
    width: 18.667px;
    height: 2.667px;
    right: 34px;
  }
}
.qa-box__head::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.qa-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  position: relative;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .qa-open {
    gap: 16px;
  }
}
.qa-open::after {
  content: "";
  position: absolute;
  width: 26.182px;
  height: 26.182px;
  background: #9ed0e0;
  border-radius: 50%;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
  .qa-open::after {
    width: 48px;
    height: 48px;
    right: -4px;
  }
}

.qa-box__icon {
  color: #9ed0e0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 125%;
}
@media screen and (min-width: 769px) {
  .qa-box__icon {
    font-size: 32px;
  }
}

.qa-box__text {
  color: #4a3636;
  font-size: 14px;
  font-weight: 700;
  width: 233px;
}
@media screen and (min-width: 769px) {
  .qa-box__text {
    font-size: 20px;
    width: 871px;
  }
}

.qa-box__body {
  background: #f5f5f5;
  border-radius: 0 0 16px 16px;
  padding-top: 16px;
  padding-bottom: 14px;
  padding-inline: 14px;
  display: none;
}
@media screen and (min-width: 769px) {
  .qa-box__body {
    padding: 24px;
  }
}

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

.qa-box__a-icon {
  color: #9ed0e0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 125%;
}
@media screen and (min-width: 769px) {
  .qa-box__a-icon {
    font-size: 32px;
  }
}

.qa-box__a-text {
  color: #4a3636;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .qa-box__a-text {
    font-size: 16px;
  }
}

.entry {
  background: #e9f6f8;
}

.entry__inner {
  padding-inline: 20px;
  padding-bottom: 32px;
}
@media screen and (min-width: 769px) {
  .entry__inner {
    padding-bottom: 117px;
  }
}

.entry__content {
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
  padding: 16px;
}
@media screen and (min-width: 769px) {
  .entry__content {
    padding-block: 32px;
    padding-inline: 48px;
    max-width: 1024px;
    margin: 0 auto;
  }
}

.entry__table {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.entry__table .entry__table-body:nth-child(5) {
  border: none;
}
@media screen and (min-width: 769px) {
  .entry__table {
    margin-top: 40px;
    gap: 14px;
  }
}

.entry__table-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
}
@media screen and (min-width: 769px) {
  .entry__table-body {
    -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;
    border-bottom: 1px solid #ccc;
    padding-bottom: 11px;
    gap: 0;
    padding-left: 16px;
  }
}

.entry__table-title {
  font-size: 14px;
  font-weight: 700;
  position: relative;
  padding-left: 16px;
}
@media screen and (min-width: 769px) {
  .entry__table-title {
    font-size: 16px;
    width: 224px;
  }
}
.entry__table-title::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #9ed0e0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.entry__table-text {
  font-weight: 400;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 769px) {
  .entry__table-text {
    border: none;
    padding-bottom: 0;
    font-size: 16px;
    width: 672px;
  }
}

.entry__table-text-box {
  padding-bottom: 10px;
}

.entry__table-text-set {
  font-weight: 400;
  padding-left: 16px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .entry__table-text-set {
    max-width: 672px;
    font-size: 16px;
    padding-left: 24px;
  }
}
.entry__table-text-set::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background: #333;
  top: 10px;
  left: 7px;
}

.under-line {
  text-decoration-line: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  cursor: pointer;
}
.under-line:hover {
  color: #67b0c7;
}

.entry__bg img {
  width: 100%;
}

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

.footer__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 769px) {
  .footer__inner {
    max-width: 1064px;
    margin: 0 auto;
  }
}

.footer__pawpads {
  display: none;
}
@media screen and (min-width: 769px) {
  .footer__pawpads {
    display: block;
    position: absolute;
    top: 80px;
    left: calc(50% + 576px);
    width: 100%;
  }
  .footer__pawpads img {
    width: 100px;
  }
}

.footer__head {
  display: block;
  text-align: center;
}

.footer__head-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
}
@media screen and (min-width: 769px) {
  .footer__head-title {
    font-size: 24px;
  }
}

.footer__head-sns {
  margin-top: 24px;
  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;
}

.sns-youtube img {
  width: 32px;
}
@media screen and (min-width: 769px) {
  .sns-youtube img {
    width: 40px;
  }
}

.sns-instagram img {
  width: 32px;
}
@media screen and (min-width: 769px) {
  .sns-instagram img {
    width: 40px;
  }
}

.sns-twitter img {
  width: 32px;
}
@media screen and (min-width: 769px) {
  .sns-twitter img {
    width: 40px;
  }
}

.footer__head-logo {
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #9ed0e0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 44px;
  color: #e9f6f8;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 12.32px;
  margin-top: 9px;
}
@media screen and (max-width: 350px) {
  .footer__head-logo {
    font-size: 34px;
  }
}
@media screen and (min-width: 769px) {
  .footer__head-logo {
    margin-top: 30px;
    -webkit-text-stroke-width: 2px;
    font-size: 100px;
    letter-spacing: 28px;
  }
}

.footer__map-contents {
  display: block;
}
@media screen and (min-width: 769px) {
  .footer__map-contents {
    max-width: 1024px;
    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;
    padding-bottom: 240px;
    margin-top: -36px;
    -ms-flex-pack: distribute;
        justify-content: space-around; /* 子要素間の間隔を均等に配置 */
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; /* 子要素の高さを親要素に合わせて伸縮させる */
  }
}

.map-contents__image,
.map-contents__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; /* 子要素の幅を均等に設定 */
}

.map-contents__image {
  margin-top: -13px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .map-contents__image {
    margin-top: 0;
  }
}
.map-contents__image img {
  border-radius: 16px 16px 0 0;
  width: 335px;
}
@media screen and (min-width: 769px) {
  .map-contents__image img {
    width: 512px;
    border-radius: 0 16px 16px 0;
  }
}
@media screen and (min-width: 769px) {
  .map-contents__image img {
    width: 512px;
    border-radius: 0 16px 16px 0;
  }
}

.map-contents__body {
  border-radius: 0 0 16px 16px;
  background: #fff;
  padding: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  max-width: 335px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .map-contents__body {
    max-width: 512px;
    border-radius: 16px 0 0 16px;
    padding-block: 106px;
    padding: 0;
  }
}

.map-contents__logo {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .map-contents__logo {
    -ms-flex-item-align: start;
        align-self: flex-start;
    width: 60%;
  }
}
.map-contents__logo img {
  width: 153px;
}
@media screen and (min-width: 769px) {
  .map-contents__logo img {
    width: 183px;
  }
}

.map-contents__text-boxes {
  margin-top: 30px;
  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: 769px) {
  .map-contents__text-boxes {
    margin-top: 25.5px;
    gap: 13.5px;
  }
}

.map-contents__text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.map-contents__text-box__title {
  font-weight: 700;
  position: relative;
  padding-left: 16px;
  width: 80px;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .map-contents__text-box__title {
    width: 120px;
    font-size: 16px;
  }
}
.map-contents__text-box__title::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ed0e0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.map-contents__text-box__text {
  font-weight: 400;
}
@media screen and (max-width: 350px) {
  .map-contents__text-box__text {
    font-size: 8px;
  }
}
@media screen and (min-width: 769px) {
  .map-contents__text-box__text {
    font-size: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .map-contents__text-box__text {
    font-size: 16px;
  }
}

.page-top {
  margin-top: 30px;
  text-align: center;
  padding-bottom: 69.71px;
}
@media screen and (min-width: 769px) {
  .page-top {
    display: none;
  }
}
.page-top img {
  width: 75px;
}

.footer__copy-right {
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  background: #67b0c7;
  text-align: center;
  padding-bottom: 24px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .footer__copy-right {
    padding-bottom: 32px;
    font-size: 14px;
  }
}
.footer__copy-right::after {
  content: "";
  position: absolute;
  background: url(../img/footer/foooter-wave.png) repeat-x center center/contain;
  width: 130%;
  top: -41px;
  height: 45.714px;
  left: 0;
}
@media screen and (min-width: 769px) {
  .footer__copy-right::after {
    width: 150%;
    height: 120px;
    top: -119px;
  }
}

.contact {
  padding-top: 40px;
  padding-bottom: 44px;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .contact {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.contact__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 769px) {
  .contact__inner {
    max-width: 888px;
    margin: 0 auto;
  }
}

.contact__head-text {
  text-align: center;
  font-weight: 400;
  margin-top: 24px;
}
@media screen and (min-width: 769px) {
  .contact__head-text {
    margin-top: 32px;
    font-size: 16px;
  }
}

@media screen and (min-width: 769px) {
  .contact__fields {
    margin-top: 40px;
  }
  .contact__fields .contact__field:nth-child(5) .form-field {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.contact__field {
  margin-top: 23px;
}

@media screen and (min-width: 769px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

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

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

.form-field__tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  background: #ce2073;
  color: #fff;
  font-weight: 700;
}

.form-field__item {
  margin-top: 8px;
}
@media screen and (min-width: 769px) {
  .form-field__item {
    margin-top: 0;
  }
}

.form-text {
  width: 100%;
  border-radius: 8px;
  background: #f5f5f5;
  padding: 16px;
  border: none;
  font-size: 16px;
  font-weight: 400;
}
.form-text:hover, .form-text:focus {
  outline: 1px solid #9ed0e0;
  background: #e9f6f8;
}
.form-text.is-error {
  outline: 1px solid #ce2073;
  background: #fff0f7;
}
@media screen and (min-width: 769px) {
  .form-text {
    width: 450px;
  }
}
@media screen and (min-width: 900px) {
  .form-text {
    width: 628px;
  }
}
.form-text::-webkit-input-placeholder {
  color: #ccc;
  font-size: 14px;
  font-weight: 400;
}
.form-text::-moz-placeholder {
  color: #ccc;
  font-size: 14px;
  font-weight: 400;
}
.form-text:-ms-input-placeholder {
  color: #ccc;
  font-size: 14px;
  font-weight: 400;
}
.form-text::-ms-input-placeholder {
  color: #ccc;
  font-size: 14px;
  font-weight: 400;
}
.form-text::placeholder {
  color: #ccc;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .form-text::-webkit-input-placeholder {
    font-size: 16px;
  }
  .form-text::-moz-placeholder {
    font-size: 16px;
  }
  .form-text:-ms-input-placeholder {
    font-size: 16px;
  }
  .form-text::-ms-input-placeholder {
    font-size: 16px;
  }
  .form-text::placeholder {
    font-size: 16px;
  }
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  width: 100%;
  border-radius: 8px;
  font-size: 14px;
  padding: 16px;
  font-weight: 400;
  background: #f5f5f5 url(../img/contact/control.png) no-repeat center right/52px 55px;
}
.form-select:hover, .form-select:focus {
  outline: 1px solid #9ed0e0;
}
.form-select.is-error {
  outline: 1px solid #ce2073;
  background: #fff0f7 url(../img/contact/redcontrol.png) no-repeat center right/52px 55px;
}
@media screen and (min-width: 769px) {
  .form-select.is-error {
    background: #fff0f7 url(../img/contact/redcontrol.png) no-repeat center right/52px 60px;
  }
}
@media screen and (min-width: 769px) {
  .form-select {
    width: 450px;
    font-size: 16px;
    background: #f5f5f5 url(../img/contact/control.png) no-repeat center right/52px 60px;
  }
}
@media screen and (min-width: 900px) {
  .form-select {
    width: 628px;
    font-size: 16px;
    background: #f5f5f5 url(../img/contact/control.png) no-repeat center right/52px 60px;
  }
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (min-width: 769px) {
  .form-field__radios {
    width: 450px;
    height: 56px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 900px) {
  .form-field__radios {
    width: 628px;
    height: 56px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

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

.form-radio__text {
  font-size: 14px;
  font-weight: 400;
  padding-left: 32px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .form-radio__text {
    font-size: 16px;
  }
}
.form-radio__text::before, .form-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.form-radio__text::before {
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  left: 0;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-radio__text::after {
  width: 12px;
  height: 12px;
  left: 7px;
  background: #9ed0e0;
  opacity: 0;
}

.form-textarea {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  background: #f5f5f5;
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 400;
}
.form-textarea:hover, .form-textarea:focus {
  outline: 1px solid #9ed0e0;
  background: #e9f6f8;
}
.form-textarea.is-error {
  outline: 1px solid #ce2073;
  background: #fff0f7;
}
@media screen and (min-width: 769px) {
  .form-textarea {
    width: 450px;
  }
}
@media screen and (min-width: 900px) {
  .form-textarea {
    width: 628px;
  }
}
.form-textarea::-webkit-input-placeholder {
  color: #ccc;
  font-size: 14px;
  font-weight: 400;
}
.form-textarea::-moz-placeholder {
  color: #ccc;
  font-size: 14px;
  font-weight: 400;
}
.form-textarea:-ms-input-placeholder {
  color: #ccc;
  font-size: 14px;
  font-weight: 400;
}
.form-textarea::-ms-input-placeholder {
  color: #ccc;
  font-size: 14px;
  font-weight: 400;
}
.form-textarea::placeholder {
  color: #ccc;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .form-textarea::-webkit-input-placeholder {
    font-size: 16px;
  }
  .form-textarea::-moz-placeholder {
    font-size: 16px;
  }
  .form-textarea:-ms-input-placeholder {
    font-size: 16px;
  }
  .form-textarea::-ms-input-placeholder {
    font-size: 16px;
  }
  .form-textarea::placeholder {
    font-size: 16px;
  }
}

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

.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 {
  color: #4a3636;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  padding-left: 36px;
}
@media screen and (min-width: 769px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  border-radius: 4px;
  background: #f5f5f5;
  width: 24px;
  height: 24px;
}
.form-checkbox__text::after {
  opacity: 0;
  width: 14px;
  height: 9px;
  left: 5px;
  background: url(../img/contact/form-check.png) no-repeat center center/contain;
}
.form-checkbox__text a {
  text-decoration-line: underline;
  -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: 769px) {
  .contact__button {
    margin-top: 40px;
  }
}

.form-button {
  display: inline-block;
  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;
  font-weight: 700;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  cursor: pointer;
}
.form-button:hover {
  background: #ffee56;
}
@media screen and (min-width: 769px) {
  .form-button {
    padding: 4px 36px 6px 36px;
  }
}

.pagetop {
  display: none;
}
@media screen and (min-width: 769px) {
  .pagetop {
    display: block;
    position: fixed;
    right: 39px;
    bottom: 219px;
    width: 100px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 100;
  }
  .pagetop.is-show {
    opacity: 1;
    visibility: visible;
  }
  .pagetop img {
    max-width: 100%;
  }
}

.prizes__modal {
  border: none;
  background: none;
  overflow: hidden;
  padding: 0;
}

.prizes__modal-box {
  max-width: 336px;
  max-height: 480px;
}
@media screen and (min-width: 769px) {
  .prizes__modal-box {
    max-width: 480px;
    max-height: 650px;
  }
}

.prizes__modal-image img {
  width: 100%;
  border-radius: 24px 24px 0 0;
}

.prizes__modal-body {
  border-radius: 0 0 24px 24px;
  background: #fff;
  padding-top: 39px;
  padding-inline: 20px;
  text-align: center;
  height: 270px;
}
@media screen and (max-width: 350px) {
  .prizes__modal-body {
    padding-inline: 5px;
  }
}
@media screen and (min-width: 769px) {
  .prizes__modal-body {
    padding-top: 32px;
    height: 350px;
  }
}

.prizes__modal-title {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .prizes__modal-title {
    font-size: 20px;
  }
}

.prizes__modal-text {
  margin-top: 12px;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .prizes__modal-text {
    font-size: 16px;
  }
}

.modal-close {
  margin-top: 16px;
}
@media screen and (min-width: 769px) {
  .modal-close {
    margin-top: 24px;
  }
}