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

img {
  width: 100%;
}

.wrapper {
  overflow: hidden;
}

.section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
@media (min-width: 900px) {
  .section__head {
    gap: 8px;
  }
}
.section__head-img img {
  width: 37.33px;
  height: 37.33px;
}
@media (min-width: 900px) {
  .section__head-img img {
    width: 48px;
    height: 48px;
  }
}
.section__head-sub {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  font-weight: 400;
  font-family: "Courgette", cursive;
  line-height: 1.25;
}
.section__head-main {
  font-size: clamp(1.25rem, 1.003rem + 1.06vw, 2rem);
  font-weight: 500;
  font-family: "Kiwi Maru", serif;
  line-height: 1.25;
  display: inline-flex;
  flex-direction: column;
  padding-bottom: 6px;
  border-bottom: 6px solid #FFEE56;
}
@media (min-width: 900px) {
  .section__head-main {
    padding-bottom: 7px;
    border-bottom: 8px solid #FFEE56;
  }
}

.inner {
  padding-inline: 20px;
}
@media (min-width: 900px) {
  .inner {
    padding-inline: 36px;
  }
}

.button {
  display: inline-block;
  color: #4A3636;
  font-size: clamp(1rem, 0.918rem + 0.35vw, 1.25rem);
  font-weight: 700;
  border: 2px solid #4A3636;
  background-color: #fff;
  box-shadow: 0px 4px 0px 0px #4a3636;
  border-radius: 40px;
  padding: 4px 22px 6px;
  line-height: 1.6;
}
.button-header {
  font-size: 14px;
}
.button-small {
  font-size: clamp(0.875rem, 0.834rem + 0.18vw, 1rem);
}
@media (min-width: 1200px) {
  .button-large {
    padding: 8px 38px 10px;
  }
}
.button-contact {
  font-size: 16px;
}
@media (min-width: 900px) {
  .button-contact {
    padding: 4px 38px 6px;
  }
}
.button:hover {
  background-color: #FFEE56;
  color: #4A3636;
}

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

.hidden-md {
  display: none;
}
@media (max-width: 414px) {
  .hidden-md {
    display: block;
  }
}

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

a:hover {
  color: #9ED0E0;
  text-decoration: underline;
}

.header {
  height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}
.header__inner {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 900px) {
  .header__inner {
    padding-inline: 24px;
  }
}
.header__logo {
  width: 210px;
}
@media (min-width: 768px) {
  .header__logo {
    width: 183px;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 1200px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}
.header__nav-link {
  font-weight: 400;
  font-size: 12px;
}
.header__button {
  margin-top: 4px;
  margin-left: 4px;
  padding-bottom: 4px;
}
.header__button button {
  font-size: 14px;
}
@media (min-width: 1200px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  position: relative;
  width: 32px;
  height: 24px;
  z-index: 10;
}
.drawer-icon.is-checked .drawer-icon-bar:nth-of-type(1) {
  top: 10px;
  width: 100%;
  transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon-bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon-bar:nth-of-type(3) {
  top: 10px;
  transform: rotate(-45deg);
}
.drawer-icon-bars {
  display: flex;
  flex-direction: row;
  gap: 1.6px;
}
.drawer-icon-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background-color: #4A3636;
  transition: transform 0.3s linear, top 0.3s linear;
}
.drawer-icon-bar:nth-of-type(1) {
  top: 0;
  left: 0;
  width: 25.6px;
}
.drawer-icon-bar:nth-of-type(2) {
  top: 12px;
}
.drawer-icon-bar:nth-of-type(3) {
  top: 24px;
}
.drawer-icon-dot {
  position: absolute;
  top: 0;
  right: 0;
  left: 28px;
  width: 4px;
  height: 3px;
  background: #4a3636;
  border-radius: 6px;
}

.drawer {
  background-color: #fff;
  position: fixed;
  top: 64px;
  right: 0;
  width: 100%;
  transform: translateY(-110%);
  transition: transform 0.5s ease 0s;
  height: calc(100% - 64px);
  padding-block: 82px;
  overflow-y: auto;
  z-index: 20;
}
.drawer.is-active {
  transform: translateY(0);
}
.drawer__container {
  width: min(100%, 145px);
  margin: 0 auto;
}
.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}
.drawer__nav-link {
  font-size: 14px;
  font-weight: 400;
}
.drawer__button button {
  font-size: 16px;
}

.fv {
  margin-top: 64px;
  position: relative;
}
.fv__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  height: calc(100% - 156px);
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
}
@media (min-width: 900px) {
  .fv__img {
    height: calc(100% - 98px);
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}
.fv__img img {
  height: 100%;
  -o-object-position: center bottom;
     object-position: center bottom;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv__inner {
  position: relative;
  padding-top: 17px;
  width: min(100%, 375px);
  margin-inline: auto;
}
@media (min-width: 900px) {
  .fv__inner {
    padding-top: 35px;
    width: min(100%, 920px);
  }
}
.fv__heading {
  text-align: center;
}
@media (min-width: 900px) {
  .fv__heading {
    width: min(100%, 520px);
    margin: 0 auto;
  }
}
.fv__sub-title {
  font-family: "Kiwi Maru", serif;
  line-height: 1.25;
  font-size: 14px;
}
@media (min-width: 900px) {
  .fv__sub-title {
    font-size: 24px;
    font-weight: 500;
  }
}
.fv__title {
  margin-top: 21px;
}
@media (min-width: 900px) {
  .fv__title {
    margin-top: 24px;
  }
}
.fv__images-area {
  position: relative;
  margin-top: 10px;
  height: 522px;
}
@media (min-width: 900px) {
  .fv__images-area {
    height: 560px;
    margin-top: 0;
  }
}
.fv__english-text {
  position: absolute;
  width: 142px;
  top: 7px;
  right: calc(50% + 26px);
}
@media (min-width: 900px) {
  .fv__english-text {
    width: 244px;
    top: 0;
    right: calc(50% + 143px);
  }
}
.fv__circle-img {
  width: 110px;
  position: absolute;
  top: 0;
  left: calc(50% + 32.5px);
}
@media (min-width: 900px) {
  .fv__circle-img {
    width: 180px;
    left: calc(50% + 117px);
    top: 17px;
  }
}
.fv__food-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  z-index: 3;
}
@media (min-width: 900px) {
  .fv__food-img {
    width: 212px;
  }
}
.fv__cats-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
}
@media (min-width: 900px) {
  .fv__cats-wrap {
    bottom: -43px;
  }
}
.fv__cats-images {
  position: relative;
  width: 107px;
  height: 127px;
}
@media (min-width: 900px) {
  .fv__cats-images {
    width: 233px;
    height: 294px;
  }
}
.fv__cats-img-1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 62px;
}
@media (min-width: 900px) {
  .fv__cats-img-1 {
    width: 170px;
    left: 0;
  }
}
.fv__cats-img-2 {
  position: absolute;
  left: 0;
  width: 98px;
  bottom: 0;
}
@media (min-width: 900px) {
  .fv__cats-img-2 {
    width: 233px;
  }
}
.fv-smart-phone {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  bottom: 11px;
  z-index: 2;
}
@media (min-width: 900px) {
  .fv-smart-phone {
    width: 250px;
    bottom: 17px;
  }
}
.fv-smart-phone__wrap {
  position: absolute;
  top: calc(50% - 5px);
  left: 50%;
  width: calc(100% - 40px);
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 12.8px;
  padding-bottom: 15.2px;
  overflow: hidden;
}
@media (min-width: 900px) {
  .fv-smart-phone__wrap {
    top: calc(50% - 6px);
    padding-bottom: 20px;
    width: calc(100% - 50px);
    border-radius: 16px;
  }
}
.fv-smart-phone__head {
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  padding: 6px 9.6px;
  font-size: clamp(0.8rem, 0.727rem + 0.36vw, 1rem);
  font-weight: 700;
  text-align: center;
  color: #fff;
}
@media (min-width: 900px) {
  .fv-smart-phone__head {
    padding: 8px 12px;
  }
}
.fv-smart-phone__body {
  text-align: center;
  padding-top: 12.8px;
}
@media (min-width: 900px) {
  .fv-smart-phone__body {
    padding-top: 16px;
  }
}
.fv-smart-phone__sub-title {
  display: inline-block;
  border-bottom: 2.4px solid #ce2073;
  padding-bottom: 1px;
  font-weight: 400;
  font-size: clamp(0.75rem, 0.709rem + 0.18vw, 0.875rem);
}
@media (min-width: 900px) {
  .fv-smart-phone__sub-title {
    border-bottom-width: 3px;
  }
}
.fv-smart-phone__text {
  font-weight: 700;
  padding-top: 3.2px;
  font-size: clamp(0.75rem, 0.668rem + 0.35vw, 1rem);
}
@media (min-width: 900px) {
  .fv-smart-phone__text {
    padding-top: 4px;
    font-weight: 700;
  }
}
.fv-smart-phone__button {
  margin-top: 12px;
  padding-bottom: 4px;
}
@media (min-width: 900px) {
  .fv-smart-phone__button {
    margin-top: 16px;
  }
}
.fv-smart-phone__button a {
  padding: 2px 22px 4px;
}

.about {
  position: relative;
  margin-top: 32px;
}
@media (min-width: 900px) {
  .about {
    margin-block: 80px 0;
  }
}
.about__images {
  position: absolute;
}
@media (min-width: 900px) {
  .about__images-stripe {
    top: -20px;
    overflow: hidden;
    width: 250px;
    right: calc(50% + 350px);
  }
}
@media (min-width: 1200px) {
  .about__images-stripe {
    right: calc(50% + 529px);
  }
}
.about__images-left {
  top: 395px;
  width: 200px;
  right: calc(50% + 128px);
  overflow: hidden;
  border-radius: 24px;
}
@media (min-width: 600px) {
  .about__images-left {
    right: calc(50% + 250px);
  }
}
@media (min-width: 900px) {
  .about__images-left {
    top: 74px;
    width: 480px;
    right: calc(50% + 380px);
    border-radius: 40px;
  }
}
@media (min-width: 1200px) {
  .about__images-left {
    right: calc(50% + 614px);
  }
}
.about__images-slope {
  bottom: 61.2px;
  left: 0;
  width: 138px;
  z-index: -1;
}
@media (min-width: 900px) {
  .about__images-slope {
    bottom: 150px;
    width: 427px;
    right: calc(50% + 432px);
    left: auto;
  }
}
.about__images-pawpads {
  width: 54px;
  left: calc(50% + 133px);
  top: -10px;
}
@media (min-width: 600px) {
  .about__images-pawpads {
    left: calc(50% + 170px);
  }
}
@media (min-width: 900px) {
  .about__images-pawpads {
    left: calc(50% + 300px);
    width: 100px;
    top: -80px;
  }
}
@media (min-width: 1200px) {
  .about__images-pawpads {
    left: calc(50% + 490px);
  }
}
.about__images-right {
  top: 273px;
  width: 200px;
  left: calc(50% + 128px);
  overflow: hidden;
  border-radius: 24px;
}
@media (min-width: 600px) {
  .about__images-right {
    left: calc(50% + 250px);
  }
}
@media (min-width: 900px) {
  .about__images-right {
    width: 480px;
    top: 73.07px;
    left: calc(50% + 380px);
    border-radius: 40px;
  }
}
@media (min-width: 1200px) {
  .about__images-right {
    left: calc(50% + 560.2px);
  }
}
.about__images-wave {
  left: calc(50% + 448px);
  width: 874px;
  top: 605px;
}
.about__images-button {
  width: 48px;
  bottom: 217.2px;
  left: calc(50% + 118.5px);
}
@media (min-width: 600px) {
  .about__images-button {
    width: 101px;
    left: calc(50% + 200px);
    bottom: 250px;
  }
}
@media (min-width: 900px) {
  .about__images-button {
    width: 101px;
    bottom: 586.63px;
    left: calc(50% + 380px);
  }
}
@media (min-width: 1200px) {
  .about__images-button {
    left: calc(50% + 505px);
  }
}
.about__images-cloth {
  bottom: 158px;
  width: 133px;
  left: calc(50% - 2.5px);
}
@media (min-width: 600px) {
  .about__images-cloth {
    width: 200px;
    left: calc(50% + 50px);
  }
}
@media (min-width: 900px) {
  .about__images-cloth {
    width: 308px;
    left: calc(50% + 250px);
    bottom: 380px;
  }
}
@media (min-width: 1200px) {
  .about__images-cloth {
    left: calc(50% + 374px);
  }
}
.about__inner {
  width: min(100%, 375px);
  margin-inline: auto;
}
@media (min-width: 900px) {
  .about__inner {
    width: min(100%, 920px);
  }
}
.about__container {
  background-color: #fff;
  position: relative;
  border-radius: 24px;
}
@media (min-width: 900px) {
  .about__container {
    border-radius: 40px;
  }
}
.about__container::after {
  position: absolute;
  content: "";
  background: url(../img/deco-arrow-about.svg) center center/contain;
  width: 100px;
  height: 36px;
  left: 50%;
  bottom: -36px;
  transform: translateX(-50%);
}
@media (min-width: 900px) {
  .about__container::after {
    width: 140px;
    height: 50px;
    bottom: -50px;
  }
}
.about__bottom {
  margin-top: 137px;
}
@media (min-width: 900px) {
  .about__bottom {
    margin-top: 165px;
  }
}
.about__images-clear {
  padding-inline: 10px;
  text-align: center;
}
@media (min-width: 900px) {
  .about__images-clear img {
    width: min(100%, 890.6px);
  }
}
@media (min-width: 900px) {
  .about__slider {
    margin-top: -2px;
  }
}
.about__wrapper {
  transition-timing-function: linear;
}
.about__slide {
  height: auto;
  width: 100px;
}
@media (min-width: 900px) {
  .about__slide {
    width: 200px;
  }
}
.about__slide img {
  border-radius: 12px;
}
@media (min-width: 900px) {
  .about__slide img {
    border-radius: 24px;
  }
}

.about-contents {
  padding: 40px 12px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 900px) {
  .about-contents {
    gap: 32px;
  }
}
.about-contents__pic1 {
  position: absolute;
  width: 80px;
  top: 31.87px;
  right: calc(50% + 46.93px);
  transform: rotate(-8deg);
  transform-origin: right bottom;
}
@media (min-width: 900px) {
  .about-contents__pic1 {
    width: 134px;
    right: calc(50% + 192.39px);
    top: 40px;
  }
}
.about-contents__pic2 {
  position: absolute;
  top: 30px;
  left: calc(50% + 61.87px);
  width: 80px;
  transform: rotate(8deg);
  transform-origin: left bottom;
}
@media (min-width: 900px) {
  .about-contents__pic2 {
    width: 134px;
    left: calc(50% + 193.08px);
    top: 47px;
  }
}
.about-contents__title {
  text-align: center;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-weight: 700;
}
@media (min-width: 900px) {
  .about-contents__title-sp {
    display: none;
  }
}
@media (max-width: 414px) {
  .about-contents__title-pc {
    display: none;
  }
}
.about-contents__text-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
@media (min-width: 900px) {
  .about-contents__text-wrap {
    gap: 25px;
  }
}
.about-contents__text {
  font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
}
.about-contents__text span {
  font-weight: 700;
}
@media (min-width: 900px) {
  .about-contents__text {
    line-height: 1.65;
  }
}
.about-contents__text-link {
  text-decoration: underline;
}
.about-contents__pop {
  font-size: clamp(0.875rem, 0.751rem + 0.53vw, 1.25rem);
  font-weight: 700;
  padding-block: 6px;
  border-bottom: 2px dashed #9ED0E0;
}
@media (min-width: 900px) {
  .about-contents__pop {
    padding-block: 11px;
  }
}
.about-contents__button {
  padding-bottom: 4px;
}
.about-contents__button button {
  padding: 4px 22px 6px;
}
@media (min-width: 900px) {
  .about-contents__button button {
    padding: 8px 37.5px 10px;
    border: 3px solid #4A3636;
  }
}

.step {
  margin-top: 64.8px;
  position: relative;
  padding-bottom: 20px;
}
@media (min-width: 900px) {
  .step {
    margin-top: 120px;
    padding-bottom: 0;
  }
}
.step__images {
  position: absolute;
}
.step__images-map {
  width: 149px;
  top: 0;
  left: 0;
}
@media (min-width: 600px) {
  .step__images-map {
    width: 180px;
    left: auto;
    right: calc(50% + 85px);
  }
}
@media (min-width: 900px) {
  .step__images-map {
    width: 460px;
    right: calc(50% + 260px);
    left: auto;
    top: -60px;
  }
}
.step__images-wrap {
  position: absolute;
  top: 0;
  left: calc(50% + 58.5px);
  overflow: hidden;
}
@media (min-width: 600px) {
  .step__images-wrap {
    left: calc(50% + 90px);
  }
}
@media (min-width: 900px) {
  .step__images-wrap {
    left: calc(50% + 200px);
    top: -26px;
  }
}
@media (min-width: 1200px) {
  .step__images-wrap {
    left: calc(50% + 287px);
  }
}
.step__images-right {
  position: relative;
  width: 160px;
  height: 85px;
}
@media (min-width: 900px) {
  .step__images-right {
    width: 364px;
    height: 191px;
  }
}
.step__images-cat1 {
  position: absolute;
  width: 105px;
  top: 0;
  left: 0;
}
@media (min-width: 900px) {
  .step__images-cat1 {
    width: 238px;
  }
}
.step__images-cat2 {
  position: absolute;
  width: 94px;
  top: 5px;
  right: 0;
}
@media (min-width: 900px) {
  .step__images-cat2 {
    width: 214px;
    top: 9.97px;
  }
}
.step__images-pawpads-1 {
  position: absolute;
  width: 55px;
  top: 74px;
  left: calc(50% + 112.5px);
}
@media (min-width: 600px) {
  .step__images-pawpads-1 {
    left: calc(50% + 210px);
    z-index: -1;
  }
}
@media (min-width: 900px) {
  .step__images-pawpads-1 {
    width: 100px;
    top: 150px;
    left: auto;
    right: 0;
  }
}
@media (min-width: 1200px) {
  .step__images-pawpads-1 {
    left: calc(50% + 620px);
  }
}
.step__images-pawpads-2 {
  position: absolute;
  width: 55px;
  bottom: 717.66px;
  right: calc(50% + 112.5px);
}
@media (min-width: 600px) {
  .step__images-pawpads-2 {
    right: calc(50% + 170px);
  }
}
@media (min-width: 900px) {
  .step__images-pawpads-2 {
    width: 100px;
    bottom: 40px;
    right: calc(50% + 620px);
  }
}
.step__images-pawpads-3 {
  position: absolute;
  width: 55px;
  bottom: 387.33px;
  left: calc(50% + 112.5px);
}
@media (min-width: 600px) {
  .step__images-pawpads-3 {
    left: calc(50% + 170px);
  }
}
@media (min-width: 900px) {
  .step__images-pawpads-3 {
    display: none;
  }
}
@media (min-width: 600px) {
  .step__inner {
    width: min(100%, 540px);
    margin-inline: auto;
    text-align: center;
  }
}
@media (min-width: 900px) {
  .step__inner {
    width: min(100%, 900px);
  }
}
@media (min-width: 1200px) {
  .step__inner {
    width: min(100%, 1096px);
  }
}
.step__items {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 31px;
}
@media (min-width: 900px) {
  .step__items {
    margin-top: 43px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }
}
.step__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 16px;
  position: relative;
  text-align: center;
}
@media (min-width: 600px) {
  .step__item {
    max-width: 250px;
    margin-inline: auto;
  }
}
@media (min-width: 900px) {
  .step__item {
    max-width: 320px;
  }
}
.step__item + .step__item::before {
  position: absolute;
  content: "";
  background: url(../img/deco-step-line.svg) no-repeat center center/contain;
  width: 34px;
  height: 7px;
  transform: rotate(90deg);
  top: -20px;
}
@media (min-width: 900px) {
  .step__item + .step__item::before {
    width: 100px;
    height: 20px;
    transform: rotate(0);
  }
}
@media (min-width: 1200px) {
  .step__item + .step__item::before {
    width: 113px;
    height: 24px;
  }
}
@media (min-width: 900px) {
  .step__item:nth-of-type(2)::before {
    top: 110px;
    right: calc(50% + 100px);
  }
}
@media (min-width: 1200px) {
  .step__item:nth-of-type(2)::before {
    top: 136px;
    right: calc(50% + 144px);
  }
}
@media (min-width: 900px) {
  .step__item:nth-of-type(3)::before {
    top: 175px;
    right: calc(50% + 90px);
  }
}
@media (min-width: 900px) and (min-width: 1200px) {
  .step__item:nth-of-type(3)::before {
    top: 204px;
    right: calc(50% + 135px);
  }
}
@media (min-width: 900px) {
  .step__item:nth-of-type(2) {
    margin-top: 69px;
  }
}
.step__item-img {
  width: 196px;
}
@media (min-width: 600px) {
  .step__item-img {
    width: 87.5%;
    margin: 0 auto;
  }
}
.step__item-body {
  padding-top: 16px;
  padding-inline: 7.5px;
}
@media (min-width: 900px) {
  .step__item-body {
    padding-top: 25px;
    padding-inline: 0;
  }
}
.step__item-title {
  font-size: clamp(1rem, 0.918rem + 0.35vw, 1.25rem);
  font-weight: 700;
}
.step__item-text {
  font-size: clamp(0.75rem, 0.668rem + 0.35vw, 1rem);
  padding-top: 17px;
}
@media (min-width: 900px) {
  .step__item-text {
    padding-top: 16px;
  }
}
.step__item-text a {
  text-decoration: underline;
}
.step__item-text strong {
  font-weight: 700;
}
.step__sns {
  padding-top: 16px;
}
@media (min-width: 900px) {
  .step__sns {
    padding-top: 17px;
  }
}
.step__sns-link {
  display: inline-block;
  padding: 8px 12px 8px 40px;
  background-color: #fff;
  font-size: clamp(0.875rem, 0.834rem + 0.18vw, 1rem);
  font-weight: 700;
  position: relative;
}
.step__sns-link::before {
  position: absolute;
  content: "";
  background: url(../img/icon-step-sns.svg) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.step__button {
  padding-bottom: 6px;
  text-align: center;
}
@media (min-width: 900px) {
  .step__button {
    margin-top: 31px;
  }
}
.step__button button {
  padding: 3px 22px 6px;
}
@media (min-width: 900px) {
  .step__button button {
    padding: 8px 37.5px 10px;
    border: 3px solid #4A3636;
  }
}

.prizes {
  margin-top: 94px;
}
@media (min-width: 900px) {
  .prizes {
    margin-top: 120px;
    padding-top: 150px;
  }
}
@media (max-width: 414px) {
  .prizes__inner {
    padding-inline: 0;
  }
}
@media (min-width: 600px) {
  .prizes__inner {
    padding-inline: 0;
  }
}
@media (min-width: 900px) {
  .prizes__inner {
    width: min(100%, 1024px);
    margin-inline: auto;
  }
}
.prizes__contents {
  padding-top: 60px;
  text-align: center;
  position: relative;
  border-radius: 24px;
  padding-bottom: 34.67px;
  background-color: #fff;
  z-index: 2;
  padding-inline: 20px;
}
@media (min-width: 900px) {
  .prizes__contents {
    padding-top: 64px;
    padding-bottom: 49px;
    padding-inline: 56px;
    margin-inline: auto;
  }
}
.prizes__contents::before {
  position: absolute;
  content: "";
  background: url(../img/deco-prizes-circle-sp.svg) no-repeat center center/contain;
  width: 238px;
  height: 83px;
  left: 50%;
  transform: translateX(-48%);
  top: -80px;
}
@media (min-width: 900px) {
  .prizes__contents::before {
    background: url(../img/deco-prizes-circle-pc.svg) no-repeat center center/contain;
    width: 378px;
    height: 150px;
    left: 50%;
    transform: translateX(-50%);
    top: -150px;
  }
}
.prizes__bg-deco-l, .prizes__bg-deco-r {
  position: absolute;
}
@media (min-width: 900px) {
  .prizes__bg-deco-l, .prizes__bg-deco-r {
    width: min(100%, 250px);
  }
}
@media (min-width: 1200px) {
  .prizes__bg-deco-l, .prizes__bg-deco-r {
    width: min(100%, 315px);
  }
}
.prizes__bg-deco-l {
  left: 0;
  top: -122px;
}
.prizes__bg-deco-r {
  right: 0;
  top: -122px;
}
.prizes__head {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  top: -62px;
}
@media (min-width: 900px) {
  .prizes__head {
    top: -120px;
  }
}
.prizes__leadText {
  font-size: clamp(0.75rem, 0.668rem + 0.35vw, 1rem);
}
.prizes__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 48px;
}
@media (min-width: 1200px) {
  .prizes__items {
    margin-top: 82px;
  }
}
.prizes__item {
  width: calc(50% - 7.5px);
}
.prizes__item:nth-child(2n) {
  margin-left: 15px;
}
@media (min-width: 900px) {
  .prizes__item:nth-child(-n+2) {
    width: calc(50% - 16px);
  }
}
.prizes__item:nth-child(n+3) {
  margin-top: 39px;
}
@media (min-width: 900px) {
  .prizes__item:nth-child(n+3) {
    width: calc(33.3333333333% - 24px);
    margin-top: 80px;
  }
}
@media (min-width: 900px) {
  .prizes__item:nth-child(2) {
    margin-left: 32px;
  }
}
@media (min-width: 900px) {
  .prizes__item:nth-child(4), .prizes__item:nth-child(5) {
    margin-left: 36px;
  }
}
.prizes__button {
  margin-top: 17px;
  padding-bottom: 4px;
}
@media (min-width: 900px) {
  .prizes__button {
    margin-top: 40px;
  }
}
.prizes__cover-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: -47px;
}
@media (min-width: 900px) {
  .prizes__cover-img {
    margin-top: 0;
  }
}
.prizes__cover-img img {
  min-width: 580px;
}

.prizes-item {
  position: relative;
  border-radius: 8px;
}
@media (min-width: 900px) {
  .prizes-item {
    border-radius: 24px;
  }
}
.prizes-item:hover .prizes-item__img img {
  transform: scale(1.2);
}
.prizes-item:hover .prizes-item__button {
  border-color: #9ED0E0;
}
.prizes-item:hover .prizes-item__button .prizes-item__icon svg .background {
  fill: #9ED0E0;
}
.prizes-item__num {
  position: absolute;
  width: 48px;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media (min-width: 900px) {
  .prizes-item__num {
    width: 80px;
    top: -39px;
  }
}
.prizes-item__inner {
  position: relative;
  border-radius: 8px;
  background-color: #f5f5f5;
}
@media (min-width: 900px) {
  .prizes-item__inner {
    border-radius: 16px;
  }
}
.prizes-item__img {
  display: block;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media (min-width: 900px) {
  .prizes-item__img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
}
.prizes-item__img img {
  height: 100%;
  transition: transform 0.6s ease;
}
.prizes-item__title {
  font-size: clamp(0.75rem, 0.668rem + 0.35vw, 1rem);
  font-weight: 700;
  height: 56px;
  display: grid;
  place-items: center;
}
@media (min-width: 900px) {
  .prizes-item__title {
    height: 80px;
    padding-block: 10px 5px;
  }
}
.prizes-item__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  border-radius: 8px;
  outline: none;
}
@media (min-width: 900px) {
  .prizes-item__button {
    border-radius: 16px;
  }
}
.prizes-item__icon svg {
  position: absolute;
  right: -4px;
  bottom: -3px;
  display: block;
  width: 36px;
  height: 36px;
  border-bottom-right-radius: 8px;
}
@media (min-width: 900px) {
  .prizes-item__icon svg {
    width: 64px;
    height: 64px;
    right: -4px;
    bottom: -3px;
    border-bottom-right-radius: 16px;
  }
}

@media (min-width: 900px) {
  .prizes-item__large .prizes-item__num {
    width: 100px;
    top: -50px;
  }
}

@media (min-width: 900px) {
  .prizes-item__large .prizes-item__inner {
    border-radius: 24px;
  }
}

@media (min-width: 900px) {
  .prizes-item__large .prizes-item__img {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}

@media (min-width: 900px) {
  .prizes-item__large .prizes-item__title {
    font-size: clamp(0.75rem, 0.585rem + 0.7vw, 1.25rem);
    height: 120px;
  }
}

@media (min-width: 900px) {
  .prizes-item__large .prizes-item__icon svg {
    width: 100px;
    height: 100px;
    border-bottom-right-radius: 24px;
  }
}

@media (min-width: 900px) {
  .prizes-item__large .prizes-item__button {
    border-radius: 24px;
  }
}

.prizes-modal {
  height: 480px;
  width: min(100%, 336px);
  border-radius: 24px;
  border: none;
  padding: 0;
}
.prizes-modal::-webkit-backdrop {
  background: #000;
  opacity: 0.7;
}
.prizes-modal::backdrop {
  background: #000;
  opacity: 0.7;
}
.prizes-modal__body {
  padding-top: 39px;
  padding-inline: 20px;
}
.prizes-modal__title {
  font-size: 16px;
  font-weight: 700;
}
.prizes-modal__text {
  font-weight: 400;
  margin-top: 12px;
}
.prizes-modal__close {
  margin-top: 16px;
}
.spots {
  margin-top: -45.7px;
  padding-block: 45.7px;
  position: relative;
}
@media (min-width: 900px) {
  .spots {
    margin-top: -90px;
    padding-block: 90px;
  }
}
@media (min-width: 1200px) {
  .spots {
    margin-top: -120px;
    padding-block: 120px;
  }
}
.spots::before, .spots::after {
  position: absolute;
  content: "";
  height: 45.7px;
  width: 100%;
  left: 0;
}
@media (min-width: 900px) {
  .spots::before, .spots::after {
    height: 90px;
  }
}
@media (min-width: 1200px) {
  .spots::before, .spots::after {
    height: 120px;
  }
}
.spots::before {
  background-image: url(../img/deco-bg-wave.svg), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
  background-repeat: repeat-x;
  background-position: left -5px center;
  background-size: contain;
  top: 1px;
}
@media (min-width: 900px) {
  .spots::before {
    background-image: url(../img/deco-bg-wave.svg), linear-gradient(to bottom, transparent 33px, #67b0c7 33px);
  }
}
.spots::after {
  background-image: url(../img/deco-bg-wave-bottom-pc.svg), linear-gradient(to top, transparent 13px, #67b0c7 13px);
  background-repeat: repeat-x;
  background-position: left 0 center;
  background-size: contain;
}
@media (min-width: 900px) {
  .spots::after {
    background-image: url(../img/deco-bg-wave-bottom-pc.svg), linear-gradient(to top, transparent 33px, #67b0c7 33px);
  }
}
.spots__deco-pawpads {
  position: absolute;
  bottom: 120px;
  left: 36px;
}
.spots__deco-pawpads img {
  width: 100px;
}
.spots__container {
  background-color: #67B0C7;
  padding-bottom: 15.8px;
}
@media (min-width: 900px) {
  .spots__container {
    padding-bottom: 0;
  }
}
@media (min-width: 900px) {
  .spots__top {
    display: flex;
    gap: 32px;
    padding-left: 30px;
    max-width: calc(1054px + (100% - 1024px) / 2);
    margin-left: auto;
  }
}
.spots__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 900px) {
  .spots__head {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.spots__head-icon {
  width: 28px;
  height: auto;
}
@media (min-width: 900px) {
  .spots__head-icon {
    width: 56px;
  }
}
.spots__heading {
  font-size: clamp(1.75rem, 1.503rem + 1.06vw, 2.5rem);
  font-family: "Kiwi Maru", serif;
  line-height: 1.25;
  color: #fff;
}
@media (min-width: 900px) {
  .spots__heading {
    text-align: center;
  }
}
.spots__slider {
  margin-top: 24px;
  width: 100%;
}
@media (min-width: 900px) {
  .spots__slider {
    margin-top: 0;
  }
}
@media (min-width: 900px) {
  .spots__arrows {
    position: relative;
    max-width: 944px;
    margin-top: -58px;
    margin-inline: auto;
    z-index: 2;
  }
}
@media (min-width: 900px) {
  .spots__inner {
    width: min(100%, 1084px);
    margin-inline: auto;
    padding-inline: 30px;
  }
}
@media (max-width: 414px) {
  .spots__bottom {
    text-align: center;
  }
}
@media (min-width: 600px) {
  .spots__bottom {
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .spots__bottom {
    display: flex;
    gap: 64px;
    justify-content: space-between;
    margin-top: 31px;
    align-items: center;
  }
}
.spots__logo {
  text-align: center;
}
.spots__logo img {
  width: 255px;
}
@media (min-width: 900px) {
  .spots__logo img {
    width: 360px;
  }
}
@media (min-width: 1200px) {
  .spots__logo img {
    width: 495px;
  }
}
.spots__lead {
  font-size: clamp(0.715rem, 0.621rem + 0.4vw, 1rem);
  color: #fff;
  font-weight: 400;
  margin-top: 16px;
}
@media (min-width: 1200px) {
  .spots__lead {
    margin-top: 10px;
  }
}
.spots__button {
  margin-top: 24px;
  padding-bottom: 4px;
}
@media (min-width: 1200px) {
  .spots__button {
    text-align: right;
  }
}

@media (min-width: 900px) {
  .spots-swiper {
    padding-bottom: 24px;
  }
}

.spots-slide {
  height: auto;
}

.spots-card {
  background-color: #fff;
  padding-bottom: 31.16px;
  border-radius: 12px;
  height: 100%;
}
@media (min-width: 900px) {
  .spots-card {
    padding-bottom: 41px;
    border-radius: 24px;
  }
}
.spots-card__img img {
  border-radius: 12px 12px 0 0;
}
@media (min-width: 900px) {
  .spots-card__img img {
    border-radius: 24px 24px 0 0;
  }
}
.spots-card__inner {
  padding-inline: 24px;
}
@media (min-width: 900px) {
  .spots-card__inner {
    padding-inline: 32px;
  }
}
.spots-card__heading {
  font-size: clamp(1rem, 0.918rem + 0.35vw, 1.25rem);
  font-weight: 700;
  text-align: center;
  margin-top: 16px;
}
@media (min-width: 900px) {
  .spots-card__heading {
    margin-top: 24px;
  }
}
.spots-card__text {
  padding-top: 16px;
  font-size: clamp(0.75rem, 0.668rem + 0.35vw, 1rem);
  font-weight: 400;
}
@media (min-width: 900px) {
  .spots-card__text {
    padding-top: 28px;
  }
}

.spots-swiper__arrows {
  display: flex;
  justify-content: space-between;
}

.spots-prev,
.spots-next {
  position: static;
}
@media (min-width: 900px) {
  .spots-prev,
.spots-next {
    width: 80px;
    height: 80px;
  }
}
.spots-prev::after,
.spots-next::after {
  display: none;
}

.spots-prev {
  background: transparent url(../img/icon-arrow-prev.svg) no-repeat center center/contain;
}

.spots-next {
  background: transparent url(../img/icon-arrow-next.svg) no-repeat center center/contain;
}

.faq {
  margin-top: 40px;
}
@media (min-width: 900px) {
  .faq {
    margin-top: 120px;
  }
}
@media (min-width: 900px) {
  .faq__inner {
    width: min(100%, 1096px);
    margin-inline: auto;
  }
}
.faq__items {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 900px) {
  .faq__items {
    margin-top: 42px;
    gap: 24px;
  }
}
.faq-item {
  background-color: #fff;
  border: 2px solid #4A3636;
  border-radius: 12px;
}
.faq-item:first-of-type .faq-item__body {
  display: block;
}
@media (min-width: 900px) {
  .faq-item {
    border-radius: 16px;
  }
}
.faq-item__head {
  padding: 10px 14px;
  display: flex;
  width: 100%;
  gap: 12px;
  align-items: center;
  cursor: pointer;
}
@media (min-width: 900px) {
  .faq-item__head {
    padding: 21px 21px 19px 24px;
    gap: 16px;
  }
}
.faq-item__head-icon {
  font-size: clamp(1.5rem, 1.335rem + 0.7vw, 2rem);
  font-family: "Josefin Sans", sans-serif;
  color: #9ED0E0;
  line-height: 1.25;
}
.faq-item__head-text {
  font-size: clamp(0.875rem, 0.751rem + 0.53vw, 1.25rem);
  font-weight: 700;
  text-align: left;
  flex-grow: 1;
}
.faq-item__head-toggle {
  position: relative;
  width: 26.2px;
  height: 26.2px;
  background-color: #9ED0E0;
  display: block;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 900px) {
  .faq-item__head-toggle {
    width: 48px;
    height: 48px;
  }
}
.faq-item__head-toggle::before, .faq-item__head-toggle::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 10.2px;
  height: 1.5px;
  background-color: #fff;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
}
@media (min-width: 900px) {
  .faq-item__head-toggle::before, .faq-item__head-toggle::after {
    width: 18.7px;
    height: 2.7px;
  }
}
.faq-item__head-toggle::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item__head.open .faq-item__head-toggle::before {
  transform: translate(-50%, -50%);
}
.faq-item__body {
  padding: 16px 14px 14px;
  background-color: #f5f5f5;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  display: none;
}
@media (min-width: 900px) {
  .faq-item__body {
    padding: 24px;
  }
}
.faq-item__answer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.faq-item__body-icon {
  font-size: clamp(1.5rem, 1.335rem + 0.7vw, 2rem);
  font-family: "Josefin Sans", sans-serif;
  color: #9ED0E0;
  line-height: 1.25;
}
.faq-item__body-text {
  font-size: clamp(0.875rem, 0.834rem + 0.18vw, 1rem);
}
.faq-item__body-text a {
  text-decoration: underline;
}

.requirements {
  margin-top: 29px;
}
@media (min-width: 900px) {
  .requirements {
    margin-top: 120px;
  }
}
@media (min-width: 900px) {
  .requirements__inner {
    width: min(100%, 1096px);
    margin-inline: auto;
  }
}
.requirements__wrapper {
  padding-block: 16px;
  padding-inline: 17px 15px;
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
}
@media (min-width: 900px) {
  .requirements__wrapper {
    padding-block: 32px;
    padding-inline: 48px;
  }
}
.requirements__contents {
  margin-top: 22px;
}
@media (min-width: 900px) {
  .requirements__contents {
    margin-top: 43px;
  }
}
.requirements__table-items {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}
.requirements__table-item {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding-bottom: 16px;
  gap: 8px;
}
@media (min-width: 900px) {
  .requirements__table-item {
    flex-direction: row;
    padding-bottom: 10px;
  }
}
.requirements__table-item:not(:first-child) {
  padding-top: 10px;
}
@media (min-width: 900px) {
  .requirements__table-item:not(:first-child) {
    padding-top: 14px;
  }
}
.requirements__table-item:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.requirements__table-heading {
  font-size: clamp(0.875rem, 0.834rem + 0.18vw, 1rem);
  font-weight: 700;
  padding-left: 16px;
  position: relative;
}
@media (min-width: 900px) {
  .requirements__table-heading {
    padding-left: 32px;
    flex-grow: 1;
    height: 100%;
  }
}
.requirements__table-heading::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #9ed0e0;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 900px) {
  .requirements__table-heading::before {
    left: 16px;
  }
}
.requirements__table-text {
  font-size: clamp(0.75rem, 0.668rem + 0.35vw, 1rem);
}
@media (min-width: 900px) {
  .requirements__table-text {
    width: calc(100% - 240px);
  }
}
.requirements__link-text {
  text-decoration: underline;
}
.requirements__text-list {
  position: relative;
  padding-left: 1.5em;
  line-height: 19px;
}
@media (min-width: 1200px) {
  .requirements__text-list {
    line-height: 26px;
  }
}
.requirements__text-list::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 50%;
  left: 9px;
  top: 11px;
}
.requirements__bg-img {
  margin-top: 32px;
  display: block;
}
@media (min-width: 900px) {
  .requirements__bg-img {
    margin-top: 120px;
  }
}
.contact {
  padding-block: 40px;
  background-color: #fff;
}
@media (min-width: 900px) {
  .contact {
    padding-block: 120px 116px;
  }
}
.contact__inner {
  width: min(100%, 920px);
  margin-inline: auto;
}
.contact__form-area {
  margin-top: 24px;
}
@media (min-width: 900px) {
  .contact__form-area {
    margin-top: 34px;
  }
}
.contact__form-text {
  text-align: center;
  font-size: clamp(0.75rem, 0.668rem + 0.35vw, 1rem);
}
.contact__form {
  margin-top: 24px;
}
@media (min-width: 900px) {
  .contact__form {
    margin-top: 40px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-form [type=text],
.contact-form [type=email],
.contact-form select,
.contact-form textarea {
  font-size: clamp(0.875rem, 0.834rem + 0.18vw, 1rem);
  box-shadow: none;
  border: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  color: inherit;
  font-family: inherit;
  width: 100%;
  cursor: pointer;
  background-color: #f5f5f5;
  outline: 1px solid transparent;
  border-radius: 8px;
}
.contact-form [type=radio] {
  display: none;
}
.contact-form [type=text],
.contact-form [type=email],
.contact-form select {
  height: 56px;
  padding: 16px;
}
.contact-form [type=text]::-moz-placeholder, .contact-form [type=email]::-moz-placeholder, .contact-form select::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  color: #ccc;
}
.contact-form [type=text]::placeholder,
.contact-form [type=email]::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
  color: #ccc;
}
.contact-form [type=text]:hover, .contact-form [type=text]:focus,
.contact-form [type=email]:hover,
.contact-form [type=email]:focus,
.contact-form select:hover,
.contact-form select:focus,
.contact-form textarea:hover,
.contact-form textarea:focus {
  background-color: #E9F6F8;
  outline: 1px solid #9ED0E0;
}
.contact-form select:hover, .contact-form select:focus {
  outline: 1px solid #9ED0E0;
}
.contact-form textarea {
  height: 160px;
  padding: 16px;
}
.contact-form [type=text].is-error,
.contact-form [type=email].is-error,
.contact-form textarea.is-error {
  background-color: #fff0f7;
  border: 1px solid #CE2073;
}
.contact-form__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 900px) {
  .contact-form__item {
    flex-direction: row;
  }
}
@media (min-width: 900px) {
  .contact-form__item-top {
    align-items: flex-start;
  }
}
.contact-form__label {
  font-size: clamp(0.875rem, 0.834rem + 0.18vw, 1rem);
  font-weight: 700;
  display: flex;
  gap: 12px;
  align-items: center;
}
@media (min-width: 900px) {
  .contact-form__label {
    flex-grow: 1;
  }
}
.contact-form__require {
  font-size: 12px;
  font-weight: 700;
  background-color: #CE2073;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
}
@media (min-width: 900px) {
  .contact-form__input {
    width: calc(100% - 220px);
  }
}
.contact-form__selectBox {
  background-image: url(../img/icon-arrow-select.svg), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat, no-repeat;
  background-position: center right 18.65px, center center;
  background-size: 14.9px 8.78px, cover;
}
.contact-form__selectBox.is-error {
  background-image: url(../img/icon-arrow-select.svg), linear-gradient(to left, #CE2073 52px, #fff0f7 52px);
  background-repeat: no-repeat, no-repeat;
  background-position: center right 18.65px, center center;
  background-size: 14.9px 8.78px, cover;
  border: 1px solid #CE2073;
}
.contact-form__radioWrap {
  display: flex;
  gap: 24px;
}
@media (min-width: 900px) {
  .contact-form__radioWrap {
    height: 56px;
    align-items: center;
  }
}
.contact-form__radioInput:checked + .contact-form__radioParts::before {
  border: 1px solid #9ED0E0;
}
.contact-form__radioParts {
  position: relative;
  padding-left: 32px;
  font-size: clamp(0.875rem, 0.834rem + 0.18vw, 1rem);
}
.contact-form__radioParts::before {
  position: absolute;
  content: "";
  display: block;
  background-color: #f5f5f5;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
  border: 1px solid transparent;
}
.contact-form__radioParts::after {
  position: absolute;
  content: "";
  display: block;
  background-color: #9ED0E0;
  outline: 1px solid #9ED0E0;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
  opacity: 0;
}
.contact-form input[type=radio]:checked + .contact-form__radioParts {
  font-weight: 700;
}
.contact-form input[type=radio]:checked + .contact-form__radioParts::after {
  opacity: 1;
}
.contact-form__footer {
  margin-top: 24px;
}
@media (min-width: 900px) {
  .contact-form__footer {
    margin-top: 40px;
  }
}
.contact-form__privacy {
  display: block;
  text-align: center;
}
.contact-form__checkbox {
  position: relative;
}
.contact-form__checkbox-input {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
}
.contact-form__checkbox-input:checked + .contact-form__privacy-text::before {
  border: 1px solid #9ED0E0;
}
.contact-form__checkbox-input:checked + .contact-form__privacy-text::after {
  opacity: 1;
}
.contact-form__checkbox-input.is-error + .contact-form__privacy-text::before {
  background-color: #fff0f7;
  border: 1px solid #CE2073;
}
.contact-form__privacy-text {
  font-size: clamp(0.875rem, 0.834rem + 0.18vw, 1rem);
  padding-left: 36px;
}
.contact-form__privacy-text a {
  text-decoration: underline;
}
.contact-form__privacy-text::before, .contact-form__privacy-text::after {
  content: "";
  position: absolute;
  left: 0;
  inset-block: 0;
  margin-block: auto;
}
.contact-form__privacy-text::before {
  width: 24px;
  height: 24px;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.contact-form__privacy-text::after {
  opacity: 0;
  width: 14px;
  height: 9px;
  left: 5px;
  background: url(../img/icon-form-check.svg) no-repeat center center/contain;
}
.contact-form__button {
  margin-top: 26px;
  padding-bottom: 4px;
  text-align: center;
}
@media (min-width: 900px) {
  .contact-form__button {
    margin-top: 40px;
  }
}
.contact-form__button button {
  font-size: 16px;
}
@media (min-width: 900px) {
  .contact-form__button button {
    padding: 4px 38px 6px;
  }
}
.contact-form__end-message {
  display: none;
}
.contact-form__false-message {
  display: none;
}

.footer {
  margin-top: 40px;
  position: relative;
}
@media (min-width: 900px) {
  .footer {
    margin-top: 120px;
  }
}
@media (min-width: 900px) {
  .footer__inner {
    width: min(100%, 1096px);
    margin-inline: auto;
  }
}
.footer__images {
  position: absolute;
}
.footer__images-pawpads {
  width: 100px;
  left: calc(50% + 576px);
  top: -40px;
}
.footer__sns-title {
  font-size: clamp(1.25rem, 1.168rem + 0.35vw, 1.5rem);
  text-align: center;
  line-height: 1.25;
  font-family: "Josefin Sans", sans-serif;
}
.footer__sns-links {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 24px;
}
.footer__sns-link {
  width: 32px;
}
@media (min-width: 900px) {
  .footer__sns-link {
    width: 40px;
  }
}
.footer__images-clear {
  margin-top: 9px;
}
@media (min-width: 900px) {
  .footer__images-clear {
    margin-top: 40px;
    text-align: center;
  }
}
@media (min-width: 900px) {
  .footer__images-clear img {
    width: min(100%, 755px);
  }
}
.footer__page-top {
  text-align: center;
  margin-top: 24px;
  z-index: 999;
}
@media (min-width: 900px) {
  .footer__page-top {
    margin-top: 0;
    position: fixed;
    right: 40px;
    bottom: 30px;
  }
}
.footer__page-top button {
  width: 75px;
}
@media (min-width: 900px) {
  .footer__page-top button {
    width: 100px;
  }
}
.footer__bottom {
  margin-top: 24px;
  padding-top: 45.7px;
  position: relative;
}
@media (min-width: 900px) {
  .footer__bottom {
    margin-top: 90px;
    padding-top: 90px;
  }
}
@media (min-width: 1200px) {
  .footer__bottom {
    margin-top: 120px;
    padding-top: 120px;
  }
}
.footer__bottom::before {
  position: absolute;
  content: "";
  background-image: url(../img/deco-bg-wave.svg), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
  background-repeat: repeat-x;
  background-position: left -5px center;
  background-size: contain;
  height: 45.7px;
  width: 100%;
  top: 1px;
  left: 0;
}
@media (min-width: 900px) {
  .footer__bottom::before {
    height: 90px;
    background-image: url(../img/deco-bg-wave.svg), linear-gradient(to bottom, transparent 33px, #67b0c7 33px);
  }
}
@media (min-width: 1200px) {
  .footer__bottom::before {
    height: 120px;
  }
}
.footer__copy-wrapper {
  background-color: #67B0C7;
  padding-bottom: 24px;
  text-align: center;
}
@media (min-width: 900px) {
  .footer__copy-wrapper {
    padding-bottom: 30px;
  }
}
.footer__copyright {
  font-size: clamp(0.625rem, 0.543rem + 0.35vw, 0.875rem);
  color: #fff;
}

.address-wrap {
  border-radius: 16px;
  background-color: #fff;
}
@media (min-width: 900px) {
  .address-wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
}
.address-wrap__map {
  position: relative;
  width: 100%;
}
@media (min-width: 900px) {
  .address-wrap__map {
    width: 50%;
  }
}
.address-wrap__map-inner {
  padding-top: 80.9%;
}
@media (min-width: 900px) {
  .address-wrap__map-inner {
    padding-top: 78.1%;
  }
}
.address-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px 16px 0 0;
}
@media (min-width: 900px) {
  .address-wrap iframe {
    border-radius: 0 16px 16px 0;
  }
}
.address-wrap__body {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 24px 26px 28px 27px;
}
@media (min-width: 900px) {
  .address-wrap__body {
    margin: 0 auto;
  }
}
.address-wrap__logo {
  width: 153px;
  margin-inline: auto;
}
@media (min-width: 900px) {
  .address-wrap__logo {
    width: 183px;
    margin-inline: 0;
  }
}
.address-wrap__info {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 900px) {
  .address-wrap__info {
    margin-top: 24px;
    gap: 12px;
    padding-block: 0;
  }
}
.address-wrap__info-row {
  display: flex;
  gap: 16px;
}
@media (min-width: 900px) {
  .address-wrap__info-row {
    gap: 40px;
  }
}
.address-wrap__term-info {
  padding-left: 16px;
  font-size: clamp(0.75rem, 0.668rem + 0.35vw, 1rem);
  font-weight: 700;
  position: relative;
  min-width: 64px;
}
@media (min-width: 900px) {
  .address-wrap__term-info {
    width: 80px;
  }
}
.address-wrap__term-info::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #9ED0E0;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.address-wrap__details-info {
  font-size: clamp(0.75rem, 0.668rem + 0.35vw, 1rem);
}