@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  font-size: 12px;
  color: #4a3a36;
}
@media screen and (min-width: 900px) {
  body {
    font-size: 16px;
  }
}

.button {
  display: inline-block;
  padding: 4px 22px 6px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 40px;
  border: 2px solid #4a3a36;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3a36;
          box-shadow: 0px 4px 0px 0px #4a3a36;
  white-space: nowrap;
  cursor: pointer;
  max-width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .button:hover {
    background: #ffee56;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
  }
}

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

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

.wrapper {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

.header {
  height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
}
.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .header__inner {
    padding-inline: 24px;
  }
}

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

.header__nav {
  background: #ffffff;
  width: 100%;
  max-height: 0;
  padding: 0 114px;
  position: absolute;
  top: 64px;
  left: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.4s ease-out, visibility 0s linear 0.4s;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.4s ease-out, visibility 0s linear 0.4s;
  z-index: 50;
}
.header__nav.is-checked {
  max-height: calc(100vh - 64px);
  padding: 74px 114px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.4s ease-out, visibility 0s linear 0s;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.4s ease-out, visibility 0s linear 0s;
  overflow-y: auto;
}
@media screen and (min-width: 900px) {
  .header__nav {
    background: #ffffff;
    width: auto;
    max-height: none;
    height: auto;
    position: static;
    -webkit-transform: none;
            transform: none;
    padding: 0;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    -webkit-transition: none;
    transition: none;
  }
}

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (min-width: 900px) {
  .header__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
  }
}

.header__link {
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  padding-block: 8px;
}
.header__link:hover {
  color: #67b0c7;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-decoration: underline;
}
@media screen and (min-width: 900px) {
  .header__link {
    font-size: 12px;
    font-weight: 400;
  }
}

.header__open {
  z-index: 110;
}
@media screen and (min-width: 900px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 120;
}
.drawer-icon.is-checked .drawer-icon__bar-group {
  opacity: 0;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar-group {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 32px;
}

.bar-left,
.bar-right {
  position: absolute;
  top: 0;
  height: 3px;
  background: #4a3a36;
  border-radius: 3px;
}

.bar-left {
  left: 0;
  width: 25.6px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.bar-right {
  left: 27.2px;
  width: 4.8px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.header__nav {
  background: #ffffff;
  width: 100%;
  max-height: 0;
  padding: 0 114px;
  position: absolute;
  top: 64px;
  left: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.4s ease-out, visibility 0s linear 0.4s;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.4s ease-out, visibility 0s linear 0.4s;
  z-index: 50;
}
.header__nav.is-checked {
  height: calc(100vh - 64px);
  padding: 74px 114px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.4s ease-out, visibility 0s linear 0s;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.4s ease-out, visibility 0s linear 0s;
  overflow-y: auto;
}
@media screen and (min-width: 900px) {
  .header__nav {
    background: #ffffff;
    width: auto;
    max-height: none;
    height: auto;
    position: static;
    -webkit-transform: none;
            transform: none;
    padding: 0;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    -webkit-transition: none;
    transition: none;
  }
}

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (min-width: 900px) {
  .header__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
  }
}

.header__link {
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  padding-block: 7px 8px;
}
@media screen and (min-width: 900px) {
  .header__link {
    font-size: 12px;
    font-weight: 400;
    padding-block: 8px;
  }
}

.header__button {
  margin-top: 9px;
}
@media screen and (min-width: 900px) {
  .header__button {
    margin-top: 0;
    margin-left: 4px;
    font-size: 14px;
  }
}

.header__open {
  z-index: 110;
}
@media screen and (min-width: 900px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 120;
}
.drawer-icon.is-checked .drawer-icon__bar-group {
  opacity: 0;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar-group {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 32px;
}

.bar-left,
.bar-right {
  position: absolute;
  top: 0;
  height: 3px;
  background: #4a3a36;
  border-radius: 3px;
}

.bar-left {
  left: 0;
  width: 25.6px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.bar-right {
  left: 27.2px;
  width: 4.8px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 32px;
  height: 3px;
  background: #4a3a36;
  border-radius: 3px;
  -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(2) {
  top: 12px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 24px;
}

.drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 32px;
  height: 3px;
  background: #4a3a36;
  border-radius: 3px;
  -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(2) {
  top: 12px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 24px;
}

.main {
  background-color: #e9f6f8;
  margin-top: 64px;
}

.fv {
  position: relative;
}

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

.fv__text {
  padding-top: 18px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__text {
    padding-top: 35px;
  }
}

.fv__description {
  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: 768px) {
  .fv__description {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
  }
}

.fv__title {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__title img {
    width: 520px;
  }
}
@media screen and (min-width: 768px) {
  .fv__title {
    margin-top: 23px;
  }
}

.fv__special-design {
  max-width: 335px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__special-design {
    max-width: 848px;
  }
}

.fv__special-design-english-text {
  position: absolute;
  top: 17px;
  left: 0px;
}
@media screen and (min-width: 768px) {
  .fv__special-design-english-text {
    top: -4px;
    left: 37px;
  }
}
.fv__special-design-english-text img {
  width: 142px;
}
@media screen and (min-width: 768px) {
  .fv__special-design-english-text img {
    width: 244px;
    height: 135px;
  }
}

.fv__special-design-circle-text {
  position: absolute;
  top: 10px;
  right: 25px;
}
@media screen and (min-width: 768px) {
  .fv__special-design-circle-text {
    top: 12px;
    left: calc(50% + 118px);
  }
}
.fv__special-design-circle-text img {
  width: 110px;
}
@media screen and (min-width: 768px) {
  .fv__special-design-circle-text img {
    width: 180px;
  }
}

.fv__special-design-smartphone {
  position: absolute;
  top: 113px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv__special-design-smartphone {
    top: 28px;
    width: 250px;
  }
}
.fv__special-design-smartphone img {
  width: 100%;
  height: auto;
  display: block;
}

.fv__special-design-smartphone__wrap {
  width: 160px;
  border-radius: 12.8px;
  background: #ffffff;
  position: relative;
  position: absolute;
  top: 122.6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .fv__special-design-smartphone__wrap {
    width: 200px;
    border-radius: 16px;
    top: 152.5px;
  }
}

.fv__special-design-smartphone__heading {
  padding-block: 6.4px;
  font-size: 12.8px;
  font-weight: 700;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .fv__special-design-smartphone__heading {
    font-size: 16px;
    padding-block: 8px;
  }
}

.fv__special-design-smartphone__title {
  display: inline-block;
  font-weight: 400;
  padding-top: 12.5px;
  padding-bottom: 1.1px;
  border-bottom: 2.4px solid #ce2073;
}
@media screen and (min-width: 768px) {
  .fv__special-design-smartphone__title {
    font-size: 14px;
    padding-top: 16px;
    border-bottom: 3px solid #ce2073;
  }
}

.fv__special-design-smartphone__description {
  font-weight: 700;
  margin-top: 2.5px;
}
@media screen and (min-width: 900px) {
  .fv__special-design-smartphone__description {
    margin-top: 4px;
  }
}

.fv__special-design-smartphone__button {
  margin-block: 12.8px 19.2px;
}
@media screen and (min-width: 768px) {
  .fv__special-design-smartphone__button {
    margin-block: 16px 22px;
  }
}
.fv__special-design-smartphone__button .button {
  font-size: 14px;
  padding: 3px 22px 2px;
}
@media screen and (min-width: 768px) {
  .fv__special-design-smartphone__button .button {
    font-size: 16px;
    padding: 4px 22px 8px;
  }
}

.fv__special-design-food {
  position: absolute;
  top: 391px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .fv__special-design-food {
    top: 222px;
    left: -7px;
  }
}
.fv__special-design-food img {
  width: 90px;
  height: 141px;
}
@media screen and (min-width: 768px) {
  .fv__special-design-food img {
    width: 220px;
    height: 332px;
  }
}

.fv__special-design-black-cat {
  position: absolute;
  top: 405px;
  right: 0;
}
@media screen and (min-width: 768px) {
  .fv__special-design-black-cat {
    top: 304px;
    right: 63px;
  }
}
.fv__special-design-black-cat img {
  width: 62px;
}
@media screen and (min-width: 768px) {
  .fv__special-design-black-cat img {
    width: 170px;
  }
}

.fv__special-design-brown-cat {
  position: absolute;
  top: 460px;
  right: 9px;
}
@media screen and (min-width: 768px) {
  .fv__special-design-brown-cat {
    top: 426px;
    right: 0;
  }
}
.fv__special-design-brown-cat img {
  width: 98px;
}
@media screen and (min-width: 768px) {
  .fv__special-design-brown-cat img {
    width: 233px;
  }
}

.about {
  margin-top: 156px;
  position: relative;
  scroll-margin-top: 64px;
}
@media screen and (min-width: 768px) {
  .about {
    margin-top: 126px;
  }
}

.about__special-design-stripe-pattern {
  display: none;
}
@media screen and (min-width: 900px) {
  .about__special-design-stripe-pattern {
    display: block;
    position: absolute;
    width: 250px;
    border-radius: 24px;
    right: calc(50% + 230px);
    top: -20px;
  }
}
@media screen and (min-width: 1200px) {
  .about__special-design-stripe-pattern {
    display: block;
    position: absolute;
    width: 250px;
    border-radius: 24px;
    top: -20px;
    right: calc(50% + 527px);
  }
  .about__special-design-stripe-pattern img {
    width: 100%;
  }
}

.about__special-design-background-left {
  position: absolute;
  width: 200px;
  top: 395px;
  right: calc(50% + 127px);
  border-radius: 24px;
}
@media screen and (min-width: 600px) {
  .about__special-design-background-left {
    right: calc(50% + 190px);
  }
}
@media screen and (min-width: 900px) {
  .about__special-design-background-left {
    width: 480px;
    top: 74px;
    right: calc(50% + 300px);
    z-index: 2;
  }
}
@media screen and (min-width: 1200px) {
  .about__special-design-background-left {
    width: 480px;
    top: 74px;
    right: calc(50% + 614px);
    z-index: 2;
  }
}
.about__special-design-background-left img {
  width: 100%;
}

.about__special-design-stairs {
  position: absolute;
  width: 138px;
  bottom: -155px;
  left: 0;
  z-index: 1;
  height: 433px;
}
@media screen and (min-width: 600px) {
  .about__special-design-stairs {
    right: calc(50% + 100px);
  }
}
@media screen and (min-width: 900px) {
  .about__special-design-stairs {
    width: 427px;
    height: 817px;
    top: 321px;
    left: auto;
    right: calc(50% + 150px);
  }
}
@media screen and (min-width: 1200px) {
  .about__special-design-stairs {
    width: 427px;
    height: 817px;
    top: 321px;
    right: auto;
    left: clamp(-100px, (100vw - 1512px) / 2 - 100px, 0px);
  }
}
.about__special-design-stairs img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
.about__special-design-stairs::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(68.58%, rgba(233, 246, 248, 0)), color-stop(80.78%, #e9f6f8));
  background: linear-gradient(180deg, rgba(233, 246, 248, 0) 68.58%, #e9f6f8 80.78%);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .about__special-design-stairs::after {
    background: none;
  }
}

.about__special-design-pawpads {
  position: absolute;
  width: 54px;
  top: 22px;
  left: calc(50% + 133px);
}
@media screen and (min-width: 900px) {
  .about__special-design-pawpads {
    width: 100px;
    top: -80px;
    left: calc(50% + 250px);
  }
}
@media screen and (min-width: 1200px) {
  .about__special-design-pawpads {
    width: 100px;
    top: -80px;
    left: calc(50% + 490.12px);
  }
}
.about__special-design-pawpads img {
  width: 100%;
}

.about__special-design-background-right {
  position: absolute;
  width: 200px;
  top: 274px;
  left: calc(50% + 127px);
  border-radius: 24px;
}
@media screen and (min-width: 600px) {
  .about__special-design-background-right {
    left: calc(50% + 190px);
  }
}
@media screen and (min-width: 900px) {
  .about__special-design-background-right {
    width: 480px;
    top: 73.07px;
    left: calc(50% + 180px);
  }
}
@media screen and (min-width: 1200px) {
  .about__special-design-background-right {
    width: 480px;
    top: 73.07px;
    left: calc(50% + 560.2px);
  }
}
.about__special-design-background-right img {
  width: 100%;
}

.about__special-design-wave {
  display: none;
}
@media screen and (min-width: 900px) {
  .about__special-design-wave {
    display: block;
    position: absolute;
    width: 873.922px;
    top: 607.33px;
    left: calc(50% + 300px);
  }
}
@media screen and (min-width: 1200px) {
  .about__special-design-wave {
    display: block;
    position: absolute;
    width: 873.922px;
    top: 607.33px;
    left: calc(50% + 448.078px);
  }
}

.about__special-design-goods-button {
  position: absolute;
  width: 48px;
  top: 720px;
  left: calc(50% + 119px);
}
@media screen and (min-width: 600px) {
  .about__special-design-goods-button {
    left: calc(50% + 220px);
    width: 68px;
  }
}
@media screen and (min-width: 900px) {
  .about__special-design-goods-button {
    width: 101px;
    top: 601.32px;
    left: calc(50% + 300px);
  }
}
@media screen and (min-width: 1200px) {
  .about__special-design-goods-button {
    width: 101px;
    top: 601.32px;
    left: calc(50% + 505px);
  }
}
.about__special-design-goods-button img {
  width: 100%;
}

.about__special-design-goods-cloth {
  position: absolute;
  width: 133px;
  top: 762px;
  left: calc(50% - 2px);
}
@media screen and (min-width: 600px) {
  .about__special-design-goods-cloth {
    left: calc(50% + 72px);
    width: 183px;
  }
}
@media screen and (min-width: 900px) {
  .about__special-design-goods-cloth {
    width: 308px;
    top: 850px;
    left: calc(50% + 180px);
  }
}
@media screen and (min-width: 1200px) {
  .about__special-design-goods-cloth {
    width: 308px;
    top: 757.4px;
    left: calc(50% + 374px);
  }
}
.about__special-design-goods-cloth img {
  width: 100%;
}

.about__inner {
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 600px) {
  .about__inner {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 900px) {
  .about__inner {
    max-width: 600px;
    margin: 0 auto;
    padding-inline: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .about__inner {
    max-width: 848px;
    margin: 0 auto;
  }
}

.about__body {
  background: #ffffff;
  padding-block: 40px;
  border-radius: 24px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .about__body {
    padding: 40px 114px;
    border-radius: 40px;
  }
}
.about__body::after {
  content: "";
  position: absolute;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  bottom: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
  width: 100px;
  height: 36px;
  background-color: #cce1e4;
}
@media screen and (min-width: 900px) {
  .about__body::after {
    width: 140px;
    height: 50px;
    bottom: -50px;
  }
}

.about__inner-left-image {
  position: absolute;
  width: 88px;
  top: 38px;
  left: 33px;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
}
@media screen and (min-width: 900px) {
  .about__inner-left-image {
    width: 134px;
    top: 40.35px;
    left: -20px;
    z-index: 2;
  }
}
@media screen and (min-width: 1200px) {
  .about__inner-left-image {
    width: 146px;
    top: 48.35px;
    left: 84px;
  }
}
.about__inner-left-image img {
  width: 100%;
}

.about__inner-right-image {
  position: absolute;
  width: 81px;
  right: 23px;
  top: 35px;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
}
@media screen and (min-width: 900px) {
  .about__inner-right-image {
    width: 134px;
    top: 47px;
    right: -20px;
  }
}
@media screen and (min-width: 1200px) {
  .about__inner-right-image {
    width: 134px;
    top: 56px;
    right: 90.3px;
  }
}
.about__inner-right-image img {
  width: 100%;
}

.heading {
  text-align: center;
  position: relative;
  padding-top: 43.3px;
}
@media screen and (min-width: 1200px) {
  .heading {
    padding-top: 56px;
  }
}
.heading::before {
  content: "";
  position: absolute;
  background: url(../img/about-icon.svg) no-repeat center center/contain;
  width: 38px;
  height: 38px;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1200px) {
  .heading::before {
    width: 48px;
    height: 48px;
  }
}
.heading.is-type2 {
  padding-top: 63px;
}
@media screen and (min-width: 900px) {
  .heading.is-type2 {
    position: absolute;
    top: -126px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 1200px) {
  .heading.is-type2 {
    position: absolute;
    top: -126px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.heading.is-type2::before {
  top: 20px;
}
@media screen and (min-width: 900px) {
  .heading.is-type2::before {
    top: 6px;
  }
}

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

.heading-japanese {
  margin-top: 6px;
  font-size: 20px;
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  line-height: 1.25;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 6px solid #ffee56;
}
@media screen and (min-width: 900px) {
  .heading-japanese {
    font-size: 32px;
    padding-bottom: 8px;
    border-bottom: 8px solid #ffee56;
  }
}

.about-sub-title {
  font-size: 14px;
  font-weight: 700;
  margin-block: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .about-sub-title {
    font-weight: 700;
    margin-block: 34px 32px;
    font-size: 16px;
  }
}

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

.about-text {
  font-weight: 400;
  margin-top: 18px;
}
@media screen and (min-width: 900px) {
  .about-text {
    margin-top: 27px;
  }
}

.about-message {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px dashed #9ed9e0;
  padding-top: 8px;
  padding-bottom: 6px;
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .about-message {
    font-size: 20px;
    font-weight: 700;
    padding-block: 12px;
    margin-top: 32px;
  }
}

.about-button-wrap {
  margin-top: 23px;
  text-align: center;
}
.about-button-wrap .button {
  padding-top: 6px;
  padding-bottom: 4px;
}
@media screen and (min-width: 900px) {
  .about-button-wrap {
    margin-top: 32px;
    font-size: 20px;
    font-weight: 700;
  }
  .about-button-wrap .button {
    padding: 8px 38px 10px;
    font-size: 20px;
  }
}

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

.about__english-character {
  position: relative;
  z-index: 10;
  display: block;
  max-width: 354.642px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .about__english-character {
    max-width: 891px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
}
.about__english-character img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 900px) {
  .about__slider {
    margin-top: -6px;
    position: relative;
    z-index: 5;
  }
}

.about-slide {
  width: 100px !important;
}
@media screen and (min-width: 900px) {
  .about-slide {
    width: 200px !important;
  }
}

.about-slide__image img {
  width: 100px;
  height: auto;
  display: block;
}
@media screen and (min-width: 900px) {
  .about-slide__image img {
    width: 200px;
    height: auto;
    display: block;
  }
}

.how-to-enter {
  margin-top: 32.8px;
  scroll-margin-top: 64px;
}
@media screen and (min-width: 900px) {
  .how-to-enter {
    margin-top: 120px;
  }
}

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

.how-to-enter__background-image {
  position: relative;
}

.background-image-map {
  position: absolute;
  width: 149px;
  right: calc(50% + 40px);
  top: 0px;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .background-image-map {
    right: calc(50% + 100px);
  }
}
@media screen and (min-width: 900px) {
  .background-image-map {
    width: 200px;
    right: calc(50% + 260px);
    top: -60px;
  }
}
@media screen and (min-width: 1200px) {
  .background-image-map {
    width: 459px;
    right: calc(50% + 263px);
    top: -60px;
  }
}

.background-image-left-pawpads {
  position: absolute;
  width: 55px;
  left: 0;
  top: 549.55px;
}
@media screen and (min-width: 600px) {
  .background-image-left-pawpads {
    left: 20px;
  }
}
@media screen and (min-width: 900px) {
  .background-image-left-pawpads {
    width: 55px;
    left: 36px;
    top: 700px;
  }
}
@media screen and (min-width: 1200px) {
  .background-image-left-pawpads {
    width: 100px;
    left: 16px;
    top: 580px;
  }
}

.background-image-brown-cat {
  position: absolute;
  width: 105px;
  left: calc(50% + 58.5px);
  top: 0;
}
@media screen and (min-width: 600px) {
  .background-image-brown-cat {
    left: calc(50% + 130px);
  }
}
@media screen and (min-width: 900px) {
  .background-image-brown-cat {
    width: 180px;
    left: calc(50% + 200px);
    top: -26px;
  }
}
@media screen and (min-width: 1200px) {
  .background-image-brown-cat {
    width: 238px;
    left: calc(50% + 287px);
    top: -26px;
  }
}

.background-image-black-cat {
  position: absolute;
  width: 94px;
  left: calc(50% + 124.5px);
  top: 2px;
}
@media screen and (min-width: 600px) {
  .background-image-black-cat {
    left: calc(50% + 196px);
  }
}
@media screen and (min-width: 900px) {
  .background-image-black-cat {
    width: 169px;
    left: calc(50% + 350px);
    top: -16.03px;
  }
}
@media screen and (min-width: 1200px) {
  .background-image-black-cat {
    width: 214px;
    left: calc(50% + 437px);
    top: -16.03px;
  }
}

.background-image-right-pawpads1 {
  position: absolute;
  width: 55px;
  top: 74px;
  right: 0;
}
@media screen and (min-width: 900px) {
  .background-image-right-pawpads1 {
    width: 55px;
    top: 148px;
    right: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .background-image-right-pawpads1 {
    width: 100px;
    top: 148px;
    right: 16px;
  }
}

.background-image-right-pawpads2 {
  position: absolute;
  width: 55px;
  top: 876.8px;
  right: 0px;
}

.how-to-enter__heading {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .how-to-enter__heading .heading-english {
    font-size: 20px;
    font-weight: 400;
  }
}
.how-to-enter__heading::before {
  content: "";
  background: url(../img/how-to-enter-icon.svg) no-repeat center center/contain;
}

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

.how-to-enter__step {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .how-to-enter__step:nth-of-type(2) {
    margin-top: 69px;
  }
}

.line__image {
  position: relative;
}
.line__image::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 37px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  bottom: -49px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/how-to-enter-line-sp.svg) no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .line__image::after {
    width: 90px;
    height: 24px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    bottom: 280px;
    left: 215px;
    background: url(../img/how-to-enter-line-pc.svg) no-repeat center center/contain;
  }
}
@media screen and (min-width: 1200px) {
  .line__image::after {
    width: 113px;
    height: 24px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    bottom: 305px;
    left: 254px;
  }
}

@media screen and (min-width: 1200px) {
  .line__image--second::after {
    width: 113px;
    height: 24px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    bottom: 315px;
    left: 264px;
  }
}

@media screen and (min-width: 900px) {
  .how-to-enter__step-box {
    max-width: 320px;
  }
}

.how-to-enter__step-box-image {
  width: 196px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .how-to-enter__step-box-image {
    width: 87.5%;
  }
}

.how-to-enter__step-box-heading {
  margin-block: 16px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .how-to-enter__step-box-heading {
    font-size: 20px;
    margin-block: 26px 17px;
  }
}

.how-to-enter__step-box-text {
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .how-to-enter__step-box-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__step-box-text {
    font-size: 16px;
  }
}

.step-box-button {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 16px;
  font-size: 14px;
  background: #ffffff;
  padding: 8px 12px 8px 40px;
  max-width: 226px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 900px) {
  .step-box-button {
    font-size: 16px;
    max-width: 254px;
    padding: 9px 10px 8px 44px;
    border: 1px solid transparent;
  }
  .step-box-button:hover {
    border: 1px solid #67b0c7;
    -webkit-transition: border 0.3s;
    transition: border 0.3s;
  }
}
.step-box-button::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 12px;
  width: 20px;
  height: 20px;
  background: url(../img/how-to-enter-button-icon.svg) no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .step-box-button::before {
    top: 9px;
    left: 12px;
    width: 24px;
    height: 24px;
  }
}

.how-to-enter__button {
  font-weight: 700;
  text-align: center;
  margin-top: 14px;
}
.how-to-enter__button .button {
  padding-top: 5px;
  padding-inline: 25px;
  padding-bottom: 5px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__button .button {
    font-size: 20px;
    margin-top: 34px;
    padding: 8px 38px 10px 38px;
  }
}
@media screen and (max-width: 374px) {
  .how-to-enter__button .button {
    font-size: 12px;
  }
}

.prizes {
  margin-top: 38px;
  scroll-margin-top: 220px;
}
@media screen and (min-width: 900px) {
  .prizes {
    margin-top: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes {
    margin-top: 277px;
  }
}

.prizes__inner {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 24px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .prizes__inner {
    max-width: 900px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__inner {
    max-width: 1024px;
  }
}

.prizes__content {
  padding-inline: 20px;
  border-radius: 24px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .prizes__content {
    padding-inline: 56px;
    text-align: center;
  }
}
.prizes__content::before {
  content: "";
  position: absolute;
  width: 237.6px;
  height: 80px;
  background: url(../img/prizes-head-deco-sp.svg) no-repeat center center/contain;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .prizes__content::before {
    background: url(../img/prizes-head-deco-pc.svg) no-repeat center center/contain;
    width: 365.624px;
    height: 148.967px;
    top: -148.967px;
    padding-inline: 56px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__content::before {
    background: url(../img/prizes-head-deco-pc.svg) no-repeat center center/contain;
    width: 365.624px;
    height: 148.967px;
    top: -148.967px;
  }
}
.prizes__content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 80px);
  border-radius: 24px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .prizes__content::after {
    height: calc(100% - 0px);
  }
}

.prizes__left-image {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes__left-image {
    position: absolute;
    background: url(../img/prizes-left-image.svg) no-repeat center center/contain;
    top: -100px;
    left: 0;
    display: block;
    width: 250px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__left-image {
    position: absolute;
    background: url(../img/prizes-left-image.svg) no-repeat center center/contain;
    top: -120px;
    left: 0px;
    width: 315px;
    display: block;
  }
}

.prizes__right-image {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes__right-image {
    position: absolute;
    background: url(../img/prizes-right-image.svg) no-repeat center center/contain;
    top: -100px;
    right: 0;
    display: block;
    width: 250px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__right-image {
    position: absolute;
    background: url(../img/prizes-right-image.svg) no-repeat center center/contain;
    top: -120px;
    right: 0px;
    width: 315px;
    display: block;
  }
}

.prizes__heading::before {
  content: "";
  background: url(../img/prizes-icon.svg) no-repeat center center/contain;
}

.prizes__text {
  margin-top: 16px;
  text-align: center;
  display: inline-block;
  top: -30px;
}
@media screen and (min-width: 900px) {
  .prizes__text {
    padding-top: 65px;
    margin-top: 0;
  }
}

.prizes__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 34px;
  margin-top: 48px;
}
@media screen and (min-width: 900px) {
  .prizes__cards {
    margin-top: 82px;
    row-gap: 72px;
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
  }
}

.prizes__card {
  position: relative;
  width: calc(50% - 7.5px);
}
.prizes__card:hover {
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-of-type(1) {
    width: calc(50% - 16px);
  }
  .prizes__card:nth-of-type(2) {
    width: calc(50% - 16px);
    margin-left: 32px;
  }
  .prizes__card:nth-of-type(3) {
    width: calc(33.333333% - 24px);
  }
  .prizes__card:nth-of-type(4) {
    width: calc(33.333333% - 24px);
    margin-left: 36px;
  }
  .prizes__card:nth-of-type(5) {
    width: calc(33.333333% - 24px);
    margin-left: 36px;
  }
}

.prizes__card-button {
  position: relative;
}

.prizes__card-number {
  position: absolute;
  width: 48px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -24px;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .prizes__card-number {
    width: 100px;
    top: -50px;
  }
}

@media screen and (min-width: 900px) {
  .prizes__card:nth-of-type(n + 3):nth-of-type(-n + 5) .prizes__card-number {
    width: 80px;
    top: -40px;
  }
}

.prizes__card-body {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.prizes__card-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid #9ed9e0;
  border-radius: 8px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.prizes__card-body:hover::after {
  opacity: 1;
}
.prizes__card-body .prizes__card-image img {
  -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;
}
.prizes__card-body:hover .prizes__card-image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.prizes__card-body:hover .prizes__card-title::before {
  background-color: #9ed9e0;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .prizes__card-body {
    border-radius: 24px;
  }
  .prizes__card-body::after {
    border-radius: 24px;
  }
}

@media screen and (min-width: 900px) {
  .prizes__card:nth-of-type(n + 3):nth-of-type(-n + 5) .prizes__card-body {
    border-radius: 16px;
  }
  .prizes__card:nth-of-type(n + 3):nth-of-type(-n + 5) .prizes__card-body::after {
    border-radius: 16px;
  }
}

@media screen and (min-width: 900px) {
  .prizes__card:nth-of-type(n + 3):nth-of-type(-n + 5) .prizes__card-body {
    border-radius: 16px;
  }
}

.prizes__card-title {
  padding-top: 7px;
  font-weight: 700;
  height: 56px;
  background: #f5f5f5;
  position: relative;
}
@media screen and (min-width: 900px) {
  .prizes__card-title {
    font-size: 20px;
    padding-top: 27px;
    height: 120px;
  }
}
.prizes__card-title::before {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background-color: #67b0c7;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .prizes__card-title::before {
    width: 100px;
    height: 100px;
  }
}
.prizes__card-title::after {
  content: "";
  position: absolute;
  width: 11.52px;
  height: 11.52px;
  background: url(../img/prizes-zoom-icon.svg) no-repeat center center/contain;
  z-index: 2;
  bottom: 6.12px;
  right: 5.22px;
}
@media screen and (min-width: 900px) {
  .prizes__card-title::after {
    width: 32px;
    height: 32px;
    bottom: 15px;
    right: 13.5px;
  }
}

@media screen and (min-width: 900px) {
  .prizes__card:nth-of-type(2) .prizes__card-title {
    padding-top: 44px;
  }
}

.prizes__card:nth-of-type(3) .prizes__card-title {
  padding-top: 18.5px;
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-of-type(3) .prizes__card-title {
    padding-block: 27px;
    height: 80px;
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .prizes__card:nth-of-type(n + 4):nth-of-type(-n + 5) .prizes__card-title {
    height: 80px;
    padding-block: 14px;
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .prizes__card:nth-of-type(n + 3):nth-of-type(-n + 5) .prizes__card-title::before {
    width: 64px;
    height: 64px;
  }
}

@media screen and (min-width: 900px) {
  .prizes__card:nth-of-type(n + 3):nth-of-type(-n + 5) .prizes__card-title::after {
    width: 20.48px;
    height: 20.48px;
    bottom: 8.96px;
    right: 8px;
  }
}

.prizes__button {
  margin-top: 15px;
  padding-bottom: 35px;
  text-align: center;
}
.prizes__button .button {
  padding: 4px 24px 6px 24px;
}
@media screen and (min-width: 900px) {
  .prizes__button .button {
    padding: 8px 38px 10px 38px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__button {
    margin-top: 34px;
    padding-bottom: 53px;
  }
  .prizes__button .button {
    font-size: 20px;
    padding-inline: 40px;
  }
}
@media screen and (max-width: 374px) {
  .prizes__button .button {
    font-size: 12px;
  }
}

.prizes__background {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -44px;
}
@media screen and (min-width: 900px) {
  .prizes__background {
    margin-top: 3px;
  }
}
.prizes__background img {
  min-width: 580px;
}

.prizes-modal {
  width: 336px;
  border: 1px solid transparent;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 56px;
  background: #ffffff;
}
@media screen and (min-width: 900px) {
  .prizes-modal {
    width: 480px;
    padding-bottom: 106px;
  }
}
.prizes-modal:nth-of-type(3) {
  padding-bottom: 42px;
}
@media screen and (min-width: 900px) {
  .prizes-modal:nth-of-type(3) {
    padding-bottom: 80px;
  }
}
.prizes-modal:nth-of-type(4), .prizes-modal:nth-of-type(5) {
  padding-bottom: 23px;
}
@media screen and (min-width: 900px) {
  .prizes-modal:nth-of-type(4), .prizes-modal:nth-of-type(5) {
    padding-bottom: 54px;
  }
}

.prizes-modal::-ms-backdrop {
  background-color: rgba(47, 46, 46, 0.7);
}

.prizes-modal::backdrop {
  background-color: rgba(47, 46, 46, 0.7);
}

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

.prizes-modal__text {
  margin-top: 12px;
}

.prizes-modal__button {
  margin-top: 16px;
}

.spots {
  position: relative;
  background-color: #67b0c7;
  padding-bottom: 19.84px;
  scroll-margin-top: 64px;
}
.spots::before {
  content: "";
  position: absolute;
  background: url(../img/spots-wave-top-sp.png) no-repeat center top/cover;
  width: 384px;
  height: 45.7px;
  top: -45.5px;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .spots::before {
    background: url(../img/spots-wave-top-pc.png) no-repeat center top/cover;
    width: 100%;
    height: 120px;
    top: -96px;
    left: 0;
  }
}
.spots::after {
  content: "";
  position: absolute;
  background: url(../img/spots-wave-bottom-sp.png) repeat center bottom/cover;
  width: 100%;
  height: 45px;
  bottom: -45px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .spots::after {
    position: absolute;
    background: url(../img/spots-wave-bottom-pc.png) no-repeat center bottom/cover;
    width: 100%;
    height: 120px;
    bottom: -103px;
    left: 0;
  }
}

.spots__design-pawpads {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots__design-pawpads {
    display: block;
    position: absolute;
    width: 100px;
    height: 220px;
    top: 458px;
    left: 5px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__design-pawpads {
    display: block;
    position: absolute;
    width: 100px;
    height: 220px;
    top: 521px;
    left: 36px;
  }
}

@media screen and (min-width: 900px) {
  .spots__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    padding-left: max(20px, 50% - 512px);
    margin-top: -26px;
  }
}

.spots__heading {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spots__heading {
    width: 58px;
  }
}

.spots__head {
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  color: #ffffff;
  position: relative;
  padding-left: 36px;
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .spots__head {
    font-size: 40px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    text-orientation: upright;
    letter-spacing: 0.25em;
    padding-top: 98px;
    padding-left: 0;
  }
}
.spots__head::before {
  content: "";
  position: absolute;
  background: url(../img/spots-icon.svg) no-repeat center center/contain;
  width: 28px;
  height: 28px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (min-width: 900px) {
  .spots__head::before {
    width: 56px;
    height: 56px;
    top: 26px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.spots__slider {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .spots__slider {
    width: calc(100% - 58px - 32px);
  }
}

.spots__swiper {
  width: 100%;
}

.spots__swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.spots-slide {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-bottom: 20px;
  min-height: 402px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .spots-slide {
    border-radius: 24px;
    min-height: 542px;
  }
}

.spots-slide-title {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spots-slide-title {
    margin-top: 24px;
    font-size: 20px;
  }
}

.spots-slide-text {
  margin-top: 16px;
  font-weight: 400;
  padding-inline: 24px;
}
@media screen and (min-width: 900px) {
  .spots-slide-text {
    margin-top: 24px;
    padding-inline: 32px;
  }
}

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

.spots__content {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spots__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1024px;
    margin: 0 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 64px;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 900px) {
  .spots-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
  }
}

@media screen and (min-width: 900px) {
  .spots-button-prev {
    background: url(../img/spots-prev.png) no-repeat center center/contain;
    width: 80px;
    height: 80px;
    position: absolute;
    top: -130px;
    left: auto;
    right: calc(50% - 150px);
  }
}
@media screen and (min-width: 1200px) {
  .spots-button-prev {
    background: url(../img/spots-prev.png) no-repeat center center/contain;
    width: 80px;
    height: 80px;
    top: -150px;
    left: auto;
    right: calc(50% - 120px);
  }
}

@media screen and (min-width: 900px) {
  .spots-button-next {
    background: url(../img/spots-next.png) no-repeat center center/contain;
    width: 80px;
    height: 80px;
    position: absolute;
    right: auto;
    left: calc(50% + 700px);
    top: -130px;
  }
}
@media screen and (min-width: 1200px) {
  .spots-button-next {
    background: url(../img/spots-next.png) no-repeat center center/contain;
    width: 80px;
    height: 80px;
    position: absolute;
    right: auto;
    left: calc(50% + 904px);
    top: -150px;
  }
}

.spots__design-english {
  margin: 0 auto;
  width: 255px;
}
@media screen and (min-width: 1200px) {
  .spots__design-english {
    width: 495px;
    margin: 0;
  }
  .spots__design-english img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
  }
}

.spots__text {
  font-size: 11.444px;
  font-weight: 400;
  margin-top: 16px;
  color: #ffffff;
}
@media screen and (min-width: 900px) {
  .spots__text {
    font-size: 16px;
    margin-top: 1px;
  }
}

.spots__button {
  text-align: center;
  margin-top: 24px;
}
.spots__button .button {
  padding: 4px 23px 6px 23px;
}
@media screen and (min-width: 1200px) {
  .spots__button .button {
    padding: 8px 38px 10px;
    font-size: 20px;
  }
}
@media screen and (max-width: 374px) {
  .spots__button .button {
    font-size: 12px;
  }
}

.qa {
  margin-top: 46px;
  padding-inline: 20px;
  margin-bottom: 28px;
}
@media screen and (min-width: 900px) {
  .qa {
    margin-top: 123px;
    padding-inline: 30px;
  }
}

.qa__inner {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .qa__inner {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }
}

.qa__heading {
  padding-top: 83px;
}
@media screen and (min-width: 900px) {
  .qa__heading {
    padding-top: 158px;
  }
}
.qa__heading::before {
  content: "";
  position: absolute;
  background: url(../img/qa-icon.svg) no-repeat center center/contain;
  width: 37.333px;
  height: 37.333px;
  top: 38px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .qa__heading::before {
    width: 48px;
    height: 48px;
    top: 100px;
  }
}

.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: 900px) {
  .qa__boxes {
    gap: 24px;
    margin-top: 40px;
  }
}

.qa__box {
  border-radius: 12px;
  border: 2px solid #4a3a36;
  overflow: hidden;
  background: #ffffff;
}
@media screen and (min-width: 900px) {
  .qa__box {
    border-radius: 16px;
  }
}

.qa-box__head {
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .qa-box__head {
    padding: 20px;
    gap: 19px;
  }
}

.qa-box__heading {
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: #9ed9e0;
}
@media screen and (min-width: 900px) {
  .qa-box__heading {
    font-size: 32px;
  }
}

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

.hashtag {
  text-decoration: underline;
}

.qa-box__heading-toggle {
  position: relative;
  width: 26.182px;
  height: 26.182px;
  background: #9ed9e0;
  border-radius: 50%;
  display: block;
}
@media screen and (min-width: 900px) {
  .qa-box__heading-toggle {
    width: 48px;
    height: 48px;
  }
}
.qa-box__heading-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background-color: #ffffff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 900px) {
  .qa-box__heading-toggle::before {
    width: 18px;
    height: 2.6px;
  }
}
.qa-box__heading-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 10px;
  background-color: #ffffff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 900px) {
  .qa-box__heading-toggle::after {
    width: 2.6px;
    height: 18px;
  }
}
.qa-box__heading-toggle.is-open::after {
  display: none;
}

.qa-box__body {
  background: #f5f5f5;
}

.qa-box__a {
  padding: 15px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (min-width: 900px) {
  .qa-box__a {
    padding: 23px;
  }
}

.qa-box__a-head {
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: #9ed9e0;
}
@media screen and (min-width: 900px) {
  .qa-box__a-head {
    font-size: 32px;
  }
}

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

.information {
  scroll-margin-top: 64px;
}
@media screen and (min-width: 900px) {
  .information {
    margin-top: 122px;
  }
}

.information__inner {
  padding-inline: 20px;
}

.information__content {
  border: 8px solid #ffffff;
  background: rgba(255, 255, 255, 0.5);
  padding-bottom: 16px;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .information__content {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 36px;
  }
}

.information__heading {
  padding-top: 60px;
}
@media screen and (min-width: 900px) {
  .information__heading {
    padding-top: 90px;
  }
}
.information__heading::before {
  content: "";
  position: absolute;
  background: url(../img/information-icon.svg) no-repeat center center/contain;
  width: 37.333px;
  height: 37.333px;
  top: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .information__heading::before {
    width: 48px;
    height: 48px;
    top: 34px;
  }
}

.information__content__table {
  margin-top: 21px;
  padding-inline: 14px;
}
@media screen and (min-width: 900px) {
  .information__content__table {
    margin-top: 40px;
    padding-inline: 45px;
  }
}

.information__content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  padding-bottom: 15px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 900px) {
  .information__content-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
    padding-bottom: 11px;
  }
}
.information__content-row:not(:first-child) {
  padding-top: 12px;
}
.information__content-row:last-child {
  border-bottom: none;
  padding-top: 14px;
  padding-bottom: 12px;
}
@media screen and (min-width: 900px) {
  .information__content-row:last-child {
    padding-top: 15px;
  }
}

.information__content-head {
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  padding-left: 16px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .information__content-head {
    width: 240px;
    font-size: 16px;
    padding-left: 32px;
  }
}
.information__content-head::before {
  content: "";
  position: absolute;
  background: #9ed9e0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .information__content-head::before {
    left: 16px;
    top: 13px;
  }
}

.information__content-text {
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .information__content-text {
    width: calc(100% - 183px);
  }
}
.information__content-text li {
  position: relative;
  padding-left: 18px;
  line-height: 1.58;
}
@media screen and (min-width: 900px) {
  .information__content-text li {
    padding-left: 26px;
    line-height: 1.6;
  }
}
.information__content-text li::before {
  content: "・";
  position: absolute;
  left: 4px;
  top: 0px;
  font-size: 12px;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .information__content-text li::before {
    top: 5px;
    left: 8px;
  }
}

.link-text {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.information__button-image {
  margin-top: 35px;
  display: block;
}
@media screen and (min-width: 900px) {
  .information__button-image {
    margin-top: 120px;
  }
}

.contact {
  background: #ffffff;
}

@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 900px) {
  .contact__inner {
    max-width: 848px;
    margin-left: auto;
    margin-right: auto;
  }
}

.contact__heading {
  padding-top: 83.3px;
}
@media screen and (min-width: 900px) {
  .contact__heading {
    padding-top: 177px;
  }
}
.contact__heading::before {
  content: "";
  position: absolute;
  background: url(../img/contact-icon.svg) no-repeat center center/contain;
  width: 37.333px;
  height: 37.333px;
  top: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .contact__heading::before {
    width: 48px;
    height: 48px;
    top: 120px;
  }
}

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

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  margin-top: 24px;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .contact__fields {
    gap: 24px;
    margin-top: 38px;
    padding-inline: 0;
  }
}

@media screen and (min-width: 900px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}

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

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

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

.form-field__tag {
  padding: 3px 8px 4px;
  font-weight: 700;
  background: #ce2073;
  color: #ffffff;
  border-radius: 4px;
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .form-field__tag {
    font-size: 12px;
  }
}

.form-field__item {
  margin-top: 8px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 900px) {
  .form-field__item {
    margin-top: 0;
  }
}

.form-text {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: #f5f5f5;
  font-weight: 400;
  font-size: 14px;
}
.form-text::-webkit-input-placeholder {
  color: #cccccc;
  font-weight: 400;
}
.form-text::-moz-placeholder {
  color: #cccccc;
  font-weight: 400;
}
.form-text:-ms-input-placeholder {
  color: #cccccc;
  font-weight: 400;
}
.form-text::-ms-input-placeholder {
  color: #cccccc;
  font-weight: 400;
}
.form-text::placeholder {
  color: #cccccc;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .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-text:focus {
  border: 1px solid #9ed9e0;
  background: #e9f6f8;
  outline: none;
}
.form-text.is-error {
  border: 1px solid #ce2073;
  background: #fff0f7;
}
.form-text.is-error:focus {
  border: 1px solid #ce2073;
  background: #fff0f7;
  outline: none;
}
@media screen and (min-width: 900px) {
  .form-text {
    font-size: 16px;
    padding: 15px;
  }
}

.form-select {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  border: none;
  font-weight: 400;
  font-size: 14px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/contact-arrow-icon.svg), linear-gradient(to right, #f5f5f5 0%, #f5f5f5 calc(100% - 52px), #9ed9e0 calc(100% - 52px), #9ed9e0 100%);
  background-repeat: no-repeat;
  background-position: right 10px center, left 0 center;
  outline: none;
}
.form-select.is-error {
  border: 1px solid #ce2073;
  background: #fff0f7;
  background-image: url(../img/contact-arrow-icon.svg), linear-gradient(to right, #fff0f7 0%, #fff0f7 calc(100% - 52px), #ce2073 calc(100% - 52px), #ce2073 100%);
  background-repeat: no-repeat;
  background-position: right 10px center, left 0 center;
  outline: none;
}
.form-select:hover {
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .form-select {
    font-size: 16px;
  }
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (min-width: 900px) {
  .form-field__radios {
    padding-block: 15px;
  }
}

.form-radio:hover .form-radio__text::before {
  border: 1px solid #9ed9e0;
}

.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__text {
  font-size: 14px;
  font-weight: 400;
  position: relative;
  padding-left: 32px;
}
@media screen and (min-width: 900px) {
  .form-radio__text {
    font-size: 16px;
  }
}
.form-radio__text::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #f5f5f5;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #f5f5f5;
}
.form-radio__text::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #9ed9e0;
  opacity: 0;
}

.form-textarea {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  border: none;
  background: #f5f5f5;
  font-weight: 400;
  resize: vertical;
  font-size: 14px;
  height: 160px;
}
.form-textarea::-webkit-input-placeholder {
  color: #cccccc;
  font-weight: 400;
}
.form-textarea::-moz-placeholder {
  color: #cccccc;
  font-weight: 400;
}
.form-textarea:-ms-input-placeholder {
  color: #cccccc;
  font-weight: 400;
}
.form-textarea::-ms-input-placeholder {
  color: #cccccc;
  font-weight: 400;
}
.form-textarea::placeholder {
  color: #cccccc;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .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;
  }
}
.form-textarea:focus {
  border: 1px solid #9ed9e0;
  background: #e9f6f8;
  outline: none;
}
.form-textarea.is-error {
  border: 1px solid #ce2073;
  background: #fff0f7;
}
.form-textarea.is-error:focus {
  border: 1px solid #ce2073;
  background: #fff0f7;
  outline: none;
}

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

.form-checkbox {
  cursor: pointer;
}

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

.form-checkbox__text {
  font-size: 14px;
  font-weight: 400;
  padding-left: 36px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid #f5f5f5;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #f5f5f5;
}
.form-checkbox__text::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 9px;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/privacy-check-icon.svg) no-repeat center center/contain;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.form-checkbox__text:hover::after {
  opacity: 1;
}

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

.contact__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 26px;
  padding-bottom: 45px;
}
@media screen and (min-width: 900px) {
  .contact__button {
    margin-top: 38px;
    padding-bottom: 120px;
  }
}

.form-button {
  display: inline-block;
  width: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 4px 22px 6px 22px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 40px;
  border: 2px solid #4a3a36;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3a36;
          box-shadow: 0px 4px 0px 0px #4a3a36;
  white-space: nowrap;
  cursor: pointer;
}
.form-button:hover {
  background: #ffee56;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media screen and (min-width: 900px) {
  .form-button {
    padding: 4px 38px 6px;
  }
}

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

.footer__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .footer__inner {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-inline: 0;
    position: relative;
  }
}

.footer__design-pawpads {
  display: none;
}
@media screen and (min-width: 900px) {
  .footer__design-pawpads {
    display: block;
    position: absolute;
    width: 100px;
    height: 220px;
    top: -40px;
    right: -164px;
  }
}

.footer__follow-text {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer__follow-text {
    font-size: 24px;
  }
}

.sns-link {
  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-button {
  width: 32px;
}
@media screen and (min-width: 900px) {
  .sns-button {
    width: 40px;
  }
}

.footer-english-text {
  margin-top: 15px;
  max-width: 328px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .footer-english-text {
    margin-top: 41px;
    max-width: 755px;
  }
}

.footer__address-wrap {
  margin-top: -3px;
}

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

.address-map {
  aspect-ratio: 335/271;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .address-map {
    width: 512px;
    height: 400px;
  }
}
.address-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.address-body {
  padding-block: 21px 30px;
  padding-inline: 24px;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.address-body-logo {
  width: 153px;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 600px) {
  .address-body-logo {
    width: 170px;
  }
}
@media screen and (min-width: 900px) {
  .address-body-logo {
    width: 183px;
    margin: 0;
  }
}

.address-body-info {
  margin-top: 30px;
}

.address-body-info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  position: relative;
}
@media screen and (min-width: 600px) {
  .address-body-info-row {
    gap: 30px;
  }
}
@media screen and (min-width: 900px) {
  .address-body-info-row {
    gap: 40px;
  }
}
.address-body-info-row::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #9ed9e0;
  border-radius: 50%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.address-body-info-row:not(:last-child) {
  margin-bottom: 8px;
}
@media screen and (min-width: 900px) {
  .address-body-info-row:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 374px) {
  .address-body-info-row:nth-of-type(3)::before {
    top: 28%;
  }
}

.address-body-info-label {
  font-weight: 700;
  min-width: 64px;
  padding-left: 16px;
  font-style: normal;
}
@media screen and (min-width: 600px) {
  .address-body-info-label {
    min-width: 70px;
  }
}
@media screen and (min-width: 900px) {
  .address-body-info-label {
    min-width: 80px;
  }
}

.address-body-info-text {
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 374px) {
  .address-body-info-text {
    font-size: 11px;
  }
}

.footer__page-top {
  margin-top: 24px;
  text-align: center;
}

.footer__page-top-button {
  display: inline-block;
  width: 75px;
  height: 78px;
  cursor: pointer;
  border: none;
  background: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 900px) {
  .footer__page-top-button {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 100px;
    height: 104px;
  }
  .footer__page-top-button.is-show {
    opacity: 1;
    visibility: visible;
  }
}

.footer__bottom {
  margin-top: 68px;
  text-align: center;
  background: #67b0c7;
  padding-bottom: 24px;
  position: relative;
}
.footer__bottom::before {
  content: "";
  position: absolute;
  background: url(../img/footer-wave-sp.png) no-repeat center top/cover;
  width: 100%;
  height: 45.7px;
  top: -45.5px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .footer__bottom {
    margin-top: 238px;
    padding-bottom: 32px;
  }
  .footer__bottom::before {
    content: "";
    position: absolute;
    background: url(../img/footer-wave-pc.png) no-repeat center top/cover;
    width: 100%;
    height: 120px;
    top: -119px;
    left: 0;
  }
}

.footer__copyright {
  font-size: 10px;
  font-weight: 400;
  color: #ffffff;
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    font-size: 14px;
  }
}

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