@charset "UTF-8";
body {
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  color: #4a3636;
  background-color: #e9f6f8;
}

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

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.button {
  display: inline-block;
  padding: 6px 22px 6px;
  border-radius: 40px;
  border: 2px solid var(--LP-Blown, #4a3636);
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
}
.button:hover {
  background: #ffee56;
}
@media screen and (min-width: 768px) {
  .button {
    font-size: 20px;
    font-weight: 700;
    padding: 10px 39px;
  }
}

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

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

.title {
  position: relative;
  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: 6px;
}
@media screen and (min-width: 1200px) {
  .title {
    gap: 8px;
  }
}

.title-image img {
  width: 37.333px;
}
@media screen and (min-width: 1200px) {
  .title-image img {
    width: 48px;
  }
}

.title-en {
  font-family: "Courgette", sans-serif;
  font-weight: 400;
  line-height: 125%;
}
@media screen and (min-width: 1200px) {
  .title-en {
    margin-top: 1px;
    font-size: 20px;
  }
}

.title-ja {
  font-family: "Kiwi Maru", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 125%;
  padding-bottom: 6px;
  border-bottom: 6px solid #ffee56;
}
@media screen and (min-width: 1200px) {
  .title-ja {
    font-size: 32px;
    padding-bottom: 8px;
    border-bottom: 8px solid #ffee56;
  }
}

.header__inner {
  padding: 18px 20px;
  background-color: #fff;
  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;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding-inline: 24px;
    padding-block: 0;
  }
}

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

.header__contant {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__contant {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
  }
}

.header__nav-link:hover {
  color: #67b0c7;
}
@media screen and (min-width: 768px) {
  .header__nav-link {
    font-size: 10px;
    font-weight: 400;
  }
}
@media screen and (min-width: 900px) {
  .header__nav-link {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) {
  .header__nav-button {
    padding: 6px 22px 6px;
    border-radius: 40px;
    border: 2px solid var(--LP-Blown, #4a3636);
    background: #fff;
    -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
            box-shadow: 0px 4px 0px 0px #4a3636;
    font-size: 14px;
    font-weight: 700;
    margin-top: 13px;
    margin-bottom: 13px;
  }
  .header__nav-button:hover {
    background: #ffee56;
  }
}

.drawer-icon {
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 3px;
  background-color: #4a3636;
  -webkit-transition: 0.8s, -webkit-transform;
  transition: 0.8s, -webkit-transform;
  transition: transform, 0.8s;
  transition: transform, 0.8s, -webkit-transform;
}
.drawer-icon__bar:nth-of-type(1) {
  top: -14px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: -2px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 10px;
}
@media screen and (min-width: 768px) {
  .drawer-icon__bar {
    display: none;
  }
}

.drawer {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  z-index: 50;
}
.drawer.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding-top: 83px;
}

.drawer__nav-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  font-size: 14px;
  font-weight: 400;
}

.drawer__nav-button {
  font-weight: 700;
  margin-top: -1px;
}

.fv {
  height: 554px;
  background: url(../img/onomichi-022.jpg) no-repeat center/cover;
  border-radius: 0px 0px 24px 24px;
}
@media screen and (min-width: 768px) {
  .fv {
    height: 740px;
    background: url(../img/onomichi-pc.jpg) no-repeat center/cover;
  }
}

.fv__inner {
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    max-width: 848px;
  }
}

.fv__title {
  position: relative;
}

h1 {
  position: absolute;
  left: -9999px;
}

.fv__title-text {
  font-family: "Kiwi Maru", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  padding-top: 17px;
  padding-bottom: 20px;
  text-shadow: 0px 0px 30px #fff;
}
@media screen and (min-width: 768px) {
  .fv__title-text {
    font-size: 24px;
    font-weight: 500;
    padding-top: 34px;
    padding-bottom: 24px;
  }
}

.fv__title {
  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: 768px) {
  .fv__title {
    gap: 16px;
  }
}

.fv__title-image1 img {
  width: 335px;
}
@media screen and (min-width: 768px) {
  .fv__title-image1 img {
    width: 520px;
  }
}

.fv__title-image2 img {
  width: 240px;
}
@media screen and (min-width: 768px) {
  .fv__title-image2 img {
    width: 356px;
  }
}

.fv__massege {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 58px;
  margin-left: -26px;
}
@media screen and (min-width: 768px) {
  .fv__massege {
    margin-left: -91px;
    gap: 260px;
  }
}

.fv__snap {
  margin-top: 18.41px;
  width: 142px;
}
@media screen and (min-width: 768px) {
  .fv__snap {
    width: 244px;
    margin-top: 0;
  }
}

.fv__present {
  margin-top: 10px;
}
.fv__present img {
  width: 110px;
}
@media screen and (min-width: 768px) {
  .fv__present {
    margin-top: 17px;
  }
  .fv__present img {
    width: 180px;
  }
}

.fv__phone {
  z-index: 1;
  position: absolute;
  top: 291px;
  width: 200px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .fv__phone {
    top: 309px;
    width: 250px;
  }
}

.fv__retro {
  z-index: 2;
  position: absolute;
  top: 413.6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 12.8px;
  font-weight: 700;
  color: #fff;
  padding: 6.4px 18.5px;
  border-radius: 15px 15px 0px 0px;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
}
@media screen and (min-width: 768px) {
  .fv__retro {
    top: 462.5px;
    font-size: 16px;
    padding: 7.8px 22.5px;
  }
}

.fv__text {
  z-index: 2;
  position: absolute;
  top: 446.4px;
  padding: 8.3px 12.9px 21.2px;
  background: #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 0px 0px 15px 15px;
}
@media screen and (min-width: 768px) {
  .fv__text {
    top: 503.5px;
    padding: 14.3px 11.9px 25.2px;
  }
}

.fv__application {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 3.4px;
  border-bottom: 2.4px solid var(--LP-Red, #ce2073);
}
@media screen and (min-width: 768px) {
  .fv__application {
    font-size: 14px;
    margin-bottom: 5.4px;
  }
}

.fv__daily {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 11.7px;
}
@media screen and (min-width: 768px) {
  .fv__daily {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

.fv__button {
  font-size: 14px;
  font-weight: 700;
  padding: 4px 23px 2px;
}
@media screen and (min-width: 768px) {
  .fv__button {
    font-size: 16px;
    padding: 4px 23px 6px;
  }
}

.fv__food {
  position: absolute;
  z-index: 2;
  left: 20px;
  top: 569px;
}
.fv__food img {
  width: 90px;
}
@media screen and (min-width: 768px) {
  .fv__food {
    left: 1px;
    top: 504px;
  }
  .fv__food img {
    width: 212px;
  }
}

.fv__black-cat {
  position: absolute;
  top: 582px;
  right: 20px;
  z-index: 2;
}
.fv__black-cat img {
  width: 62px;
}
@media screen and (min-width: 768px) {
  .fv__black-cat {
    top: 586px;
    right: 63px;
  }
  .fv__black-cat img {
    width: 170px;
  }
}

.fv__brown-cat {
  position: absolute;
  top: 638px;
  z-index: 2;
  right: 29px;
}
.fv__brown-cat img {
  width: 98px;
}
@media screen and (min-width: 768px) {
  .fv__brown-cat {
    top: 705px;
    right: 0;
  }
  .fv__brown-cat img {
    width: 233px;
  }
}

.about {
  padding-top: 188px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .about {
    padding-top: 177px;
  }
}

.about__image-diagonal {
  position: absolute;
  top: 157px;
  left: -21px;
  z-index: -2;
}
.about__image-diagonal img {
  width: 250px;
}

.about__image-roapway {
  position: absolute;
  top: 583px;
  right: calc(50% + 128px);
  z-index: -1;
  width: 200px;
}
.about__image-roapway img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about__image-roapway {
    right: 80%;
  }
}
@media screen and (min-width: 1200px) {
  .about__image-roapway {
    right: calc(50% + 614px);
    top: 252px;
    width: 480px;
  }
}

.about__image-slope {
  position: absolute;
  z-index: -1;
  top: 739px;
  left: -55px;
}
.about__image-slope img {
  width: 216px;
  height: 433px;
}
@media screen and (min-width: 1200px) {
  .about__image-slope {
    top: 497px;
    left: -103px;
  }
  .about__image-slope img {
    width: 427px;
    height: 817px;
  }
}

.about__image-pawpads {
  position: absolute;
  z-index: -1;
  top: 178px;
  right: 0px;
}
.about__image-pawpads img {
  width: 54px;
}
@media screen and (min-width: 1200px) {
  .about__image-pawpads {
    top: 96px;
    right: 167px;
  }
  .about__image-pawpads img {
    width: 100px;
  }
}

.about__image-ship {
  position: absolute;
  top: 461px;
  left: calc(50% + 130px);
  z-index: -1;
  width: 200px;
}
.about__image-ship img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about__image-ship {
    left: 80%;
  }
}
@media screen and (min-width: 1200px) {
  .about__image-ship {
    top: 250px;
    left: calc(50% + 561px);
    width: 480px;
  }
}

.about__top {
  position: relative;
  max-width: 375px;
  padding: 40px 12px;
  background-color: #fff;
  border-radius: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-left: auto;
  margin-right: auto;
}
.about__top::after {
  content: "";
  position: absolute;
  bottom: -38px;
  left: 50%;
  width: 100px;
  height: 36px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 38px solid #cce1e4;
}
@media screen and (min-width: 768px) {
  .about__top {
    max-width: 600px;
  }
}
@media screen and (min-width: 1200px) {
  .about__top {
    gap: 32px;
    max-width: 846px;
    padding: 40px 110px;
    border-radius: 40px;
  }
  .about__top::after {
    width: 140px;
    height: 50px;
    bottom: -50px;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-top: 50px solid #cce1e4;
  }
}

.about__title-image1 {
  position: absolute;
  left: -34px;
  top: -9px;
}
.about__title-image1 img {
  width: 87px;
}
@media screen and (min-width: 1200px) {
  .about__title-image1 {
    left: -178px;
    top: -2px;
  }
  .about__title-image1 img {
    width: 147px;
  }
}

.about__title-image2 {
  position: absolute;
  right: -47px;
  top: -10px;
}
.about__title-image2 img {
  width: 87px;
}
@media screen and (min-width: 1200px) {
  .about__title-image2 {
    right: -180px;
    top: 5px;
  }
  .about__title-image2 img {
    width: 149px;
  }
}

.about__heading {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .about__heading {
    font-size: 16px;
  }
}

.about__text {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}
.about__text p {
  margin-bottom: 18.3px;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 16px;
  }
  .about__text p {
    margin-bottom: 27px;
  }
}

.line {
  -webkit-text-decoration: underline solid auto;
          text-decoration: underline solid auto;
  text-underline-position: from-font;
}
.line:hover {
  color: #67b0c7;
}

.bold {
  font-weight: 700;
}

.about__bottom-text {
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 6px;
  margin-top: -11px;
  border-bottom: 2px dashed #9ed0e0;
}
@media screen and (min-width: 768px) {
  .about__bottom-text {
    font-size: 20px;
    padding-bottom: 11px;
    margin-top: -15px;
  }
}

.about__button {
  font-weight: 700;
  margin-top: -1px;
}
@media screen and (min-width: 1200px) {
  .about__button {
    margin-top: 0;
  }
}

.about__bottom {
  position: relative;
  margin-top: 138.67px;
}
@media screen and (min-width: 1200px) {
  .about__bottom {
    margin-top: 167px;
  }
}

.about__image-stone {
  position: absolute;
  right: 21px;
  top: -127px;
}
.about__image-stone img {
  width: 48px;
}
@media screen and (min-width: 1200px) {
  .about__image-stone {
    top: -394.63px;
    right: 151px;
  }
  .about__image-stone img {
    width: 101px;
  }
}

.about__image-cloth {
  position: absolute;
  right: 57.32px;
  top: -85px;
  z-index: -1;
}
.about__image-cloth img {
  width: 133px;
}
@media screen and (min-width: 1200px) {
  .about__image-cloth {
    top: -238px;
    right: 74.32px;
  }
  .about__image-cloth img {
    width: 308px;
  }
}

.about__bottom-image {
  margin-left: auto;
  margin-right: auto;
  width: 356.642px;
}
.about__bottom-image img {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .about__bottom-image {
    width: 892px;
  }
}

.slider-container {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .slider-container {
    margin-top: -5px;
  }
}

.slider-track {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.slider-track img {
  width: 100px;
  margin-right: 10px;
}
@media screen and (min-width: 900px) {
  .slider-track img {
    width: 200px;
    margin-right: 20px;
  }
}

.how-to-enter {
  margin-top: 58px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .how-to-enter {
    margin-top: 0;
    padding-top: 112px;
  }
}

.how-to__inner {
  position: relative;
  text-align: center;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .how-to__inner {
    padding: 0 0 15px 0;
  }
}
@media screen and (min-width: 900px) {
  .how-to__inner {
    max-width: 1064px;
    padding: 0 20px 15px 20px;
  }
}

.how-to__map {
  position: absolute;
  top: 0;
  left: calc(30% - 113px);
}
.how-to__map img {
  width: 138px;
  height: 202px;
}
@media screen and (min-width: 900px) {
  .how-to__map {
    left: -190px;
    top: -59px;
  }
  .how-to__map img {
    width: 420px;
    height: 628px;
  }
}

.how-to__browncat {
  position: absolute;
  top: 0;
  right: calc(30% - 88px);
}
.how-to__browncat img {
  width: 105px;
}
@media screen and (min-width: 900px) {
  .how-to__browncat {
    top: -27px;
    right: 7px;
  }
  .how-to__browncat img {
    width: 238px;
  }
}

.how-to__brackcat {
  position: absolute;
  top: 5px;
  right: calc(30% - 143px);
}
.how-to__brackcat img {
  width: 94px;
}
@media screen and (min-width: 900px) {
  .how-to__brackcat {
    top: -16px;
    right: -119px;
  }
  .how-to__brackcat img {
    width: 214px;
  }
}

.how-to__pawpads {
  position: absolute;
  top: 74px;
  right: calc(30% - 92px);
}
.how-to__pawpads img {
  width: 55px;
}
@media screen and (min-width: 900px) {
  .how-to__pawpads {
    right: -190px;
    top: 149px;
  }
  .how-to__pawpads img {
    width: 100px;
  }
}

.how-to__pawpads2 {
  position: absolute;
  top: 549px;
  left: calc(30% - 93px);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.how-to__pawpads2 img {
  width: 55px;
}
@media screen and (min-width: 900px) {
  .how-to__pawpads2 {
    left: -188px;
    bottom: 50px;
  }
  .how-to__pawpads2 img {
    width: 100px;
  }
}

.how-to__pawpads3 {
  position: absolute;
  top: 878px;
  right: calc(30% - 92px);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.how-to__pawpads3 img {
  width: 55px;
}
@media screen and (min-width: 900px) {
  .how-to__pawpads3 {
    display: none;
  }
}

.how-to__title {
  margin-bottom: 32px;
}
@media screen and (min-width: 900px) {
  .how-to__title {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 900px) {
  .how-to__steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    width: 100%;
  }
}

.how-to__step {
  width: 320px;
  margin-left: auto;
  margin-right: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .how-to__step {
    width: 31.25%;
  }
}

@media screen and (min-width: 900px) {
  .step-02 {
    margin-top: 68px;
  }
}

.how-to__step-top {
  position: relative;
}

.how-to__step__back-image {
  width: 196px;
  margin: 0 auto;
}
.how-to__step__back-image img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .how-to__step__back-image {
    width: 87.5%;
  }
}

.how-to__step-title {
  position: absolute;
  top: 33px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.how-to__step-title img {
  width: 44px;
  height: 47px;
}
@media screen and (min-width: 900px) {
  .how-to__step-title {
    top: 45px;
  }
  .how-to__step-title img {
    width: 63px;
    height: 65px;
  }
}

.step-01__image {
  width: 36px;
}
@media screen and (min-width: 900px) {
  .step-01__image {
    width: 52px;
  }
}

.how-to__step-icon {
  position: absolute;
  top: 88.06px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.how-to__step-icon img {
  width: 112px;
}
@media screen and (min-width: 900px) {
  .how-to__step-icon {
    top: 116.5px;
  }
  .how-to__step-icon img {
    width: 160px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to__step-icon {
    top: 124.5px;
  }
  .how-to__step-icon img {
    width: 160px;
  }
}

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

.how-to__step-text-title {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .how-to__step-text-title {
    font-size: 20px;
  }
}

.how-to__step-text {
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .how-to__step-text {
    font-size: 13px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to__step-text {
    font-size: 16px;
  }
}

.how-to__step-follow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
  margin-top: 16px;
  background-color: #fff;
  gap: 8px;
}
.how-to__step-follow img {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 900px) {
  .how-to__step-follow {
    margin-top: 18px;
    margin-bottom: 26px;
    font-size: 16px;
  }
  .how-to__step-follow img {
    width: 24px;
    height: 24px;
  }
}

.how-to-line {
  display: block;
  margin-top: 15px;
}
.how-to-line img {
  width: 7px;
  height: 34px;
}
@media screen and (min-width: 900px) {
  .how-to-line {
    position: absolute;
    top: 0;
    left: 0;
  }
  .how-to-line img {
    width: 113px;
    height: 24px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-line:nth-of-type(1) {
    top: 312px;
    left: 26%;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-line:nth-of-type(1) {
    top: 372px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-line:nth-of-type(2) {
    top: 312px;
    left: 59.8%;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-line:nth-of-type(2) {
    top: 372px;
  }
}

.how-to__button {
  margin-top: 15px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .how-to__button {
    margin-top: 32px;
  }
}

.prize {
  padding-top: 105.67px;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .prize {
    padding-top: 262px;
  }
}

.prize__inner {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 600px;
  padding-inline: 20px;
  padding-bottom: 36px;
  border-radius: 24px;
  background-color: #fff;
}
@media screen and (min-width: 1200px) {
  .prize__inner {
    max-width: 1024px;
    padding-left: 56px;
    padding-right: 56px;
    padding-bottom: 55px;
  }
}

.prize__inner-image {
  position: absolute;
  width: 237.6px;
  top: -83px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.prize__inner-image img {
  width: 100%;
  height: 83px;
}
@media screen and (min-width: 1200px) {
  .prize__inner-image {
    width: 366px;
    top: -148px;
  }
  .prize__inner-image img {
    height: 149px;
  }
}

.prize__inner-triangle1 {
  position: absolute;
  left: 0;
}
@media screen and (min-width: 768px) {
  .prize__inner-triangle1 {
    top: -70px;
  }
  .prize__inner-triangle1 img {
    width: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .prize__inner-triangle1 {
    top: -123px;
  }
  .prize__inner-triangle1 img {
    width: 315px;
  }
}

.prize__inner-triangle2 {
  position: absolute;
  right: 0;
}
@media screen and (min-width: 768px) {
  .prize__inner-triangle2 {
    top: -70px;
  }
  .prize__inner-triangle2 img {
    width: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .prize__inner-triangle2 {
    top: -123px;
  }
  .prize__inner-triangle2 img {
    width: 315px;
  }
}

.prize__title {
  position: absolute;
  top: -63px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1200px) {
  .prize__title {
    top: -124px;
  }
}

.prize__text {
  padding-top: 59px;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .prize__text {
    padding-top: 63px;
    font-size: 16px;
  }
}

.prize__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 14px;
  margin-top: 24px;
}
@media screen and (min-width: 1200px) {
  .prize__cards {
    margin-top: 58px;
    row-gap: 54px;
  }
}

.prize__card {
  position: relative;
  margin-top: 23.5px;
  border-radius: 27px;
  width: 48.0597014925%;
}
.prize__card:nth-of-type(5) {
  margin-inline: auto;
}
@media screen and (min-width: 1200px) {
  .prize__card {
    width: 48.4649122807%;
    border: 3px solid transparent;
  }
  .prize__card:hover {
    border: 3px solid #9ed0e0;
  }
  .prize__card:hover .prize__card-image img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .prize__card:hover .prize__card-zoom {
    background-color: #9ed0e0;
    right: -1px;
    bottom: -1px;
  }
  .prize__card:nth-of-type(5) {
    margin-inline: 0;
  }
  .prize__card:nth-of-type(3), .prize__card:nth-of-type(4), .prize__card:nth-of-type(5) {
    width: 30.9210526316%;
    border-radius: 19px;
  }
  .prize__card:nth-of-type(3) .prize__card-icon-image, .prize__card:nth-of-type(4) .prize__card-icon-image, .prize__card:nth-of-type(5) .prize__card-icon-image {
    top: -38px;
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  .prize__card:nth-of-type(3) .prize__card-icon-image, .prize__card:nth-of-type(4) .prize__card-icon-image, .prize__card:nth-of-type(5) .prize__card-icon-image {
    width: 76px;
  }
}
@media screen and (min-width: 1200px) {
  .prize__card:nth-of-type(3) .prize__card-icon-number, .prize__card:nth-of-type(4) .prize__card-icon-number, .prize__card:nth-of-type(5) .prize__card-icon-number {
    top: -8px;
    font-size: 38.4px;
  }
  .prize__card:nth-of-type(3) .prize__card-icon-text, .prize__card:nth-of-type(4) .prize__card-icon-text, .prize__card:nth-of-type(5) .prize__card-icon-text {
    top: -29px;
    font-size: 12px;
  }
  .prize__card:nth-of-type(3) .prize__card-text, .prize__card:nth-of-type(4) .prize__card-text, .prize__card:nth-of-type(5) .prize__card-text {
    height: 80px;
    border-radius: 0 0 15px 15px;
  }
  .prize__card:nth-of-type(3) .prize__card-text-title, .prize__card:nth-of-type(4) .prize__card-text-title, .prize__card:nth-of-type(5) .prize__card-text-title {
    font-size: 16px;
  }
  .prize__card:nth-of-type(3) .prize__card-image, .prize__card:nth-of-type(4) .prize__card-image, .prize__card:nth-of-type(5) .prize__card-image {
    border-radius: 15px 15px 0 0;
  }
  .prize__card:nth-of-type(3) .prize__card-zoom, .prize__card:nth-of-type(4) .prize__card-zoom, .prize__card:nth-of-type(5) .prize__card-zoom {
    height: 64px;
    width: 64px;
    border-radius: 0 0 17px 0;
  }
  .prize__card:nth-of-type(3) .prize__card-zoom-image, .prize__card:nth-of-type(4) .prize__card-zoom-image, .prize__card:nth-of-type(5) .prize__card-zoom-image {
    bottom: 9px;
    right: 8px;
  }
  .prize__card:nth-of-type(3) .prize__card-zoom-image img, .prize__card:nth-of-type(4) .prize__card-zoom-image img, .prize__card:nth-of-type(5) .prize__card-zoom-image img {
    width: 20.48px;
    height: 20.48px;
  }
}

.prize__card-icon-image {
  position: absolute;
  top: -23px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.prize__card-icon-image img {
  width: 46px;
}
@media screen and (min-width: 1200px) {
  .prize__card-icon-image {
    top: -47px;
  }
  .prize__card-icon-image img {
    width: 96px;
  }
}

.prize__card-icon-text {
  position: absolute;
  top: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 7.68px;
  font-weight: 700;
  color: #fff;
  z-index: 2;
}
@media screen and (min-width: 1200px) {
  .prize__card-icon-text {
    top: -37px;
    font-size: 16px;
  }
}

.prize__card-icon-number {
  font-family: "Josefin Sans", sans-serif;
  position: absolute;
  top: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  z-index: 2;
}
@media screen and (min-width: 1200px) {
  .prize__card-icon-number {
    top: -10px;
    font-size: 48px;
  }
}

.prize__card-image {
  overflow: hidden;
  display: block;
}
.prize__card-image img {
  border-radius: 8px 8px 0 0;
}
@media screen and (min-width: 1200px) {
  .prize__card-image {
    border-radius: 25px 25px 0 0;
  }
  .prize__card-image img {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
}

.prize__card-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 56px;
  border-radius: 0 0 8px 8px;
  background: var(--LP-Gray, #f5f5f5);
}
@media screen and (min-width: 1200px) {
  .prize__card-text {
    height: 120px;
    border-radius: 0 0 25px 25px;
  }
}

.prize__card-text-title {
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .prize__card-text-title {
    font-size: 20px;
  }
}

.prize__card-zoom {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 0 0 10px 0;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background-color: #67b0c7;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 1200px) {
  .prize__card-zoom {
    width: 100px;
    height: 100px;
    border-radius: 0 0 25px 0;
  }
}

.prize__card-zoom-image {
  position: absolute;
  right: 5.22px;
  bottom: 2px;
}
.prize__card-zoom-image img {
  width: 12px;
  height: 12px;
}
@media screen and (min-width: 1200px) {
  .prize__card-zoom-image {
    bottom: 14px;
    right: 11.5px;
  }
  .prize__card-zoom-image img {
    height: 34px;
    width: 34px;
  }
}

.prize__button {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 700;
  padding: 5px 22px 5px;
}
@media screen and (min-width: 1200px) {
  .prize__button {
    margin-top: 39px;
    font-size: 20px;
    padding: 10px 38px 9px;
  }
}

.prize__bottom {
  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: -37px;
}
@media screen and (min-width: 1200px) {
  .prize__bottom {
    margin-top: 0;
  }
}

.prize__image img {
  width: 100%;
  min-width: 580px;
}
@media screen and (min-width: 1200px) {
  .prize__image img {
    width: 100%;
    min-width: 1512px;
  }
}

.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.4); /* 背景色 */
}

.prize__modal {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 336px;
  height: 480px;
  border-radius: 24px;
  background-color: #fff;
  text-align: center;
  z-index: 100;
}
@media screen and (min-width: 900px) {
  .prize__modal {
    width: 480px;
    height: 650px;
  }
}

.prize__modal-image img {
  width: 336px;
  border-radius: 24px 24px 0 0;
}
@media screen and (min-width: 900px) {
  .prize__modal-image img {
    width: 480px;
  }
}

.prize__modal-title {
  color: #4a3636;
  font-size: 16px;
  font-weight: 700;
  margin-top: 39px;
  margin-bottom: 12px;
}
@media screen and (min-width: 900px) {
  .prize__modal-title {
    font-size: 20px;
    margin-top: 32px;
  }
}

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

.prize__modal-button {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .prize__modal-button {
    margin-top: 24px;
  }
}

.spots__inner {
  position: relative;
  background-color: #67b0c7;
  width: 100%;
  max-width: 100%;
  padding-inline: 0;
}
.spots__inner::before, .spots__inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 45.71px;
  background-image: url("../img/img-wave.png");
  background-repeat: repeat-x;
  background-position: left -4px center;
  background-size: contain;
  z-index: 5;
}
.spots__inner::before {
  top: -40px;
}
.spots__inner::after {
  bottom: -44.5px;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
@media screen and (min-width: 900px) {
  .spots__inner::before, .spots__inner::after {
    height: 122px;
    background-size: 252px auto;
  }
  .spots__inner::before {
    top: -120px;
  }
  .spots__inner::after {
    bottom: -106px;
  }
}

.spots__image-pawpads {
  display: none;
}
@media screen and (min-width: 1200px) {
  .spots__image-pawpads {
    position: absolute;
    display: block;
    top: 496px;
    left: 36px;
  }
  .spots__image-pawpads img {
    width: 100px;
  }
}

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

.spots__title {
  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;
  gap: 8px;
  padding-top: 6px;
}
@media screen and (min-width: 900px) {
  .spots__title {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 16.1375661376%;
    margin-right: 32px;
    padding-top: 0;
    gap: 14px;
  }
}

.spots__title-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 28px;
}
.spots__title-icon img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .spots__title-icon {
    width: 56px;
  }
}

.spots__title-text {
  font-family: "Kiwi Maru", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 125%;
  color: #fff;
}
@media screen and (min-width: 900px) {
  .spots__title-text {
    font-size: 40px;
    text-align: center;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    letter-spacing: 10px;
  }
}

.spots__bottom {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .spots__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 64px;
  }
}

.spots__bottom-image {
  margin-bottom: 16px;
}
.spots__bottom-image img {
  width: 255px;
}
@media screen and (min-width: 1200px) {
  .spots__bottom-image img {
    width: 495px;
  }
}

@media screen and (min-width: 1200px) {
  .spots__bottom-content {
    margin-left: 81px;
  }
}

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

.spots__bottom-button {
  margin-top: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .spots__bottom-button {
    margin-left: 12px;
  }
}

.spots__swiper {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 900px) {
  .spots__swiper {
    margin-top: 0;
  }
}

.swiper-slide {
  width: 240px;
}
@media screen and (min-width: 900px) {
  .swiper-slide {
    width: 344px;
  }
}

.swiper-slide__card {
  width: 240px;
  height: 402px;
  border-radius: 10px;
  text-align: center;
  background-color: #fff;
}
@media screen and (min-width: 900px) {
  .swiper-slide__card {
    width: 100%;
    height: 100%;
    border-radius: 25px;
  }
}

.swiper-slide__card-image img {
  width: 240px;
  height: 180px;
  border-radius: 10px 10px 0 0;
}
@media screen and (min-width: 900px) {
  .swiper-slide__card-image img {
    height: auto;
    width: 100%;
    border-radius: 25px 25px 0 0;
  }
}

.swiper-slide__card-title {
  margin-top: 17px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .swiper-slide__card-title {
    margin-top: 24px;
    font-size: 20px;
  }
}

.swiper-slide__card-text {
  font-size: 12px;
  font-weight: 400;
  padding-inline: 24px;
  margin-top: 16px;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .swiper-slide__card-text {
    font-size: 16px;
    padding-inline: 32px;
    margin-bottom: 43px;
    margin-top: 24px;
  }
}

.spots__prev,
.spots__next {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots__prev,
  .spots__next {
    display: block;
    width: 80px;
    height: 80px;
    margin-top: 120px;
  }
}
.spots__prev::after,
.spots__next::after {
  display: none;
}

.spots__prev {
  background: url(../img/spots__prev.png) no-repeat center center;
  background-size: contain;
  margin-left: 18.1878306878%;
}

.spots__next {
  background: url(../img/spots__next.png) no-repeat center center;
  background-size: contain;
  margin-right: 18.1878306878%;
}

.qa__inner {
  padding-top: 86px;
}
@media screen and (min-width: 900px) {
  .qa__inner {
    padding-top: 224px;
  }
}

@media screen and (min-width: 768px) {
  .speech-bubble img {
    width: 48px;
    height: 48px;
  }
}

.qa__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  padding-top: 24px;
  gap: 12px;
  max-width: 600px;
}
@media screen and (min-width: 900px) {
  .qa__boxes {
    padding-top: 40px;
    gap: 23px;
    width: 80vw;
    max-width: 1024px;
  }
}

.qa-box {
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #fff;
}
.qa-box.is-open .qa-box__head::after {
  background-image: url(../img/qa-icon-img.png);
  background-size: 18px;
}
@media screen and (min-width: 900px) {
  .qa-box {
    border-radius: 16px;
  }
  .qa-box.is-open .qa-box__head::after {
    background-size: 33px;
  }
}

.qa-box__head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  width: 100%;
  padding: 10px 52px 10px 15px;
}
.qa-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 26.182px;
  height: 26.182px;
  background-color: #9ed0e0;
  background-image: url(../img/qa-plus-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  border-radius: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .qa-box__head {
    gap: 16px;
    padding: 25px 20px 25px 22px;
  }
  .qa-box__head::after {
    width: 48px;
    height: 48px;
    right: 20px;
    background-size: 33px 33px;
    border-radius: 25px;
  }
}

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

.qa-box__head-text {
  color: #4a3636;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  margin-top: auto;
  margin-bottom: auto;
}
@media screen and (min-width: 900px) {
  .qa-box__head-text {
    font-size: 20px;
  }
}

.qa-box__body {
  display: none;
}

.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  width: 100%;
  padding: 18px 14px 14px 14px;
  background: #f5f5f5;
  border-radius: 0 0 12px 12px;
}
@media screen and (min-width: 900px) {
  .qa-box__a {
    padding: 24px 22px 22px 22px;
  }
}

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

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

.entry {
  margin-top: 30px;
}
@media screen and (min-width: 900px) {
  .entry {
    margin-top: 120px;
  }
}

.entry__box {
  padding-top: 17px;
  margin-bottom: 31px;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 15px;
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
  max-width: 600px;
}
@media screen and (min-width: 900px) {
  .entry__box {
    padding: 32px 48px 32px 48px;
    margin-bottom: 120px;
    width: 80vw;
    max-width: 1024px;
  }
}

.entry__container {
  margin-top: 12px;
  margin-bottom: 16px;
}
@media screen and (min-width: 900px) {
  .entry__container {
    margin-top: 27px;
    margin-bottom: 0;
  }
}

.entry__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 15px;
}
.entry__content:nth-of-type(1), .entry__content:nth-of-type(2), .entry__content:nth-of-type(3), .entry__content:nth-of-type(4) {
  border-bottom: 1px solid var(--LP-Dark-Gray, #ccc);
}
.entry__content:nth-of-type(5) {
  padding-bottom: 16px;
}
@media screen and (min-width: 900px) {
  .entry__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 16px;
    padding-top: 13px;
    padding-bottom: 11px;
  }
  .entry__content:nth-of-type(3), .entry__content:nth-of-type(4) {
    padding-bottom: 12px;
  }
  .entry__content:nth-of-type(5) {
    padding-bottom: 13px;
    padding-top: 12px;
  }
}

.entry__content-title {
  font-size: 14px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.entry__content-title::before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 8px;
  height: 8px;
  background-color: #9ed0e0;
  border-radius: 6px;
  margin-right: 8px;
}
@media screen and (min-width: 900px) {
  .entry__content-title {
    font-size: 16px;
    width: 216px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.entry__content-text,
.entry__content-text-list {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.58;
}
@media screen and (min-width: 900px) {
  .entry__content-text,
  .entry__content-text-list {
    font-size: 16px;
  }
}

.entry__content-text-list {
  list-style-type: disc;
  padding-left: 19px;
  line-height: 1.585;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.entry__content-text-list li::marker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 9px;
  padding-right: 1px;
}
@media screen and (min-width: 900px) {
  .entry__content-text-list {
    line-height: 1.623;
    padding-left: 23px;
  }
}

.entry-image {
  width: 100%;
}

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

@media screen and (min-width: 768px) {
  .contact__title-ja {
    margin-top: -2px;
  }
}

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

.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: 23.3px;
  padding-top: 24px;
}
@media screen and (min-width: 900px) {
  .contact__fields {
    max-width: 848px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
    gap: 24px;
  }
}

.contact__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .contact__field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 56px;
  }
  .contact__field:nth-of-type(5) {
    height: auto;
  }
  .contact__field:nth-of-type(5) .contact__field-head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.contact__field-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  width: 211px;
  text-align: left;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact__field-head:nth-of-type(5) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

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

.form-field__tag {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  color: #fff;
  border-radius: 4px;
  background: #ce2073;
}
@media screen and (min-width: 768px) {
  .form-field__tag {
    font-size: 12px;
  }
}

.form-text,
.form-select,
.form-textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 16px 16px 16px 16px;
  border-radius: 8px;
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
}
.form-text:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border: 1px solid #9ed0e0;
  background-color: #e9f6f8;
}
.form-text::-webkit-input-placeholder, .form-select::-webkit-input-placeholder, .form-textarea::-webkit-input-placeholder {
  color: #ccc;
}
.form-text::-moz-placeholder, .form-select::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #ccc;
}
.form-text:-ms-input-placeholder, .form-select:-ms-input-placeholder, .form-textarea:-ms-input-placeholder {
  color: #ccc;
}
.form-text::-ms-input-placeholder, .form-select::-ms-input-placeholder, .form-textarea::-ms-input-placeholder {
  color: #ccc;
}
.form-text::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: #ccc;
}
@media screen and (min-width: 768px) {
  .form-text,
  .form-select,
  .form-textarea {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .form-text,
  .form-select,
  .form-textarea {
    font-size: 16px;
  }
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #4a3636;
  background-image: url(../img/contact-select.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 52px;
  cursor: pointer;
}
.form-select:focus {
  background-color: #f5f5f5;
  background-image: url(../img/contact-select.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 52px;
}

.form-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 23.5px;
  margin-top: auto;
  margin-bottom: auto;
}
@media screen and (min-width: 768px) {
  .form-radios {
    gap: 24px;
    margin-left: 3px;
  }
}

.form-radio {
  cursor: pointer;
}
.form-radio:hover .form-radio__text::before {
  border-color: #9ed0e0;
}
.form-radio:checked + .form-radio__text:after {
  opacity: 1;
}

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

.form-textarea {
  resize: vertical;
  height: 160px;
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  .form-textarea {
    margin-top: 0;
  }
}

.contact__bottom {
  text-align: center;
  padding-top: 23px;
}
@media screen and (min-width: 768px) {
  .contact__bottom {
    padding-top: 43px;
  }
}

.form-checkbox {
  position: relative;
}

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

.contact__button {
  color: #4a3636;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 38px;
    padding: 5px 37px;
    font-size: 16px;
  }
}

/* ラベル文字色を赤 */
.contact__field.is-error .form-field__label {
  color: #ce2073;
}

/* input, select, textarea の枠線を赤に */
.contact__field.is-error .form-text,
.contact__field.is-error .form-select,
.contact__field.is-error .form-textarea {
  border: 1px solid #ce2073;
  background-color: #fff0f7;
}

.contact__field.is-error .form-select {
  background-image: url(../img/contact-select-error.png);
}

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

.footer__inner {
  position: relative;
}

.footer__image-pawpads {
  display: none;
}
@media screen and (min-width: 900px) {
  .footer__image-pawpads {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: -38px;
    right: -16%;
  }
  .footer__image-pawpads img {
    width: 100px;
    height: 220px;
  }
}

.footer-top {
  text-align: center;
}

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

.footer-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  padding-bottom: 15px;
}
@media screen and (min-width: 900px) {
  .footer-icon {
    padding-bottom: 42px;
  }
}

.footer-icon-sns {
  -webkit-transition: opacity, 0.5s;
  transition: opacity, 0.5s;
}
.footer-icon-sns img {
  width: 32px;
}
@media screen and (min-width: 900px) {
  .footer-icon-sns img {
    width: 40px;
  }
}
.footer-icon-sns:hover {
  opacity: 0.7;
}

.footer-image img {
  width: 329px;
  height: 34.7px;
}
@media screen and (min-width: 900px) {
  .footer-image img {
    width: 755px;
    height: 82px;
  }
}

.footer-location {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .footer-location {
    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;
    width: 880px;
    max-width: 880px;
    margin-bottom: 238px;
  }
}
@media screen and (min-width: 1200px) {
  .footer-location {
    width: 1024px;
    min-width: 1024px;
  }
}

.footer-location-map {
  width: 100%;
  aspect-ratio: 335/271;
}
.footer-location-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px 16px 0 0;
}
@media screen and (min-width: 900px) {
  .footer-location-map {
    width: 50%;
    aspect-ratio: 512/400;
  }
  .footer-location-map iframe {
    border-radius: 0 16px 16px 0;
  }
}

.footer-location-body {
  padding-top: 18px;
  border-radius: 0 0 16px 16px;
  background: var(--LP-White, #fff);
}
@media screen and (min-width: 900px) {
  .footer-location-body {
    width: 50%;
    border-radius: 16px 0 16px 0;
    padding-top: 75px;
  }
}
@media screen and (min-width: 1200px) {
  .footer-location-body {
    padding-top: 101px;
  }
}

.footer-location-body-logo {
  text-align: center;
}
.footer-location-body-logo img {
  width: 153px;
}
@media screen and (min-width: 900px) {
  .footer-location-body-logo {
    text-align: left;
    margin-left: 28px;
  }
  .footer-location-body-logo img {
    width: 183px;
  }
}
@media screen and (min-width: 1200px) {
  .footer-location-body-logo {
    margin-left: 61px;
  }
}

.footer-location-body-container {
  padding: 29px 28px 29px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .footer-location-body-container {
    padding: 24px 28px 28px 28px;
  }
}
@media screen and (min-width: 1200px) {
  .footer-location-body-container {
    gap: 12.5px;
    padding-left: 61px;
  }
}

.footer-container-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-container-content-theme {
  width: 80px;
  font-size: 12px;
  font-weight: 700;
}
.footer-container-content-theme::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #9ed0e0;
  border-radius: 50%;
  margin-right: 8px;
}
@media screen and (min-width: 900px) {
  .footer-container-content-theme {
    width: 120px;
    font-size: 16px;
  }
}

.footer-container-content-text {
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .footer-container-content-text {
    font-size: 16px;
  }
}

.footer-pagetop {
  margin-top: 23px;
  margin-bottom: 69px;
  text-align: center;
}

.footer-pageTop-image {
  position: relative;
  display: inline-block;
  width: 78px;
  height: 80px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.footer-pageTop-image img {
  width: 78px;
  height: 80px;
}
.footer-pageTop-image p {
  position: absolute;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.1;
  top: 43px;
  left: 50%;
  -webkit-transform: translateX(-3px);
          transform: translateX(-3px);
  text-align: center;
}
.footer-pageTop-image.is-show {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 900px) {
  .footer-pageTop-image {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 10;
  }
}
@media screen and (min-width: 1200px) {
  .footer-pageTop-image {
    width: 100px;
    height: 104px;
  }
  .footer-pageTop-image img {
    width: 100px;
    height: 104px;
  }
  .footer-pageTop-image p {
    font-size: 12px;
    top: 59px;
  }
}

.footer-bottom {
  position: relative;
  background: #67b0c7;
  padding-bottom: 24px;
}
.footer-bottom::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 45.71px;
  background-image: url("../img/img-wave.png");
  background-repeat: repeat-x;
  background-position: left -7px center;
  background-size: contain;
  top: -45px;
}
@media screen and (min-width: 900px) {
  .footer-bottom {
    padding-bottom: 31px;
    padding-top: 1px;
  }
  .footer-bottom::before {
    background-size: 253px;
    height: 120px;
    top: -119px;
  }
}

.footer-bottom-copylight {
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  color: #fff;
}
@media screen and (min-width: 900px) {
  .footer-bottom-copylight {
    font-size: 14px;
  }
}