@charset "UTF-8";
body {
  background-color: #E9F6F8;
}

.button-sm {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 36px;
  padding: 7px 22px 9px 22px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 40px;
  border: 2px solid var(--LP-Blown, #4A3636);
  background: var(--LP-White, #FFF);
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--LP-Blown, #4A3636);
}
.button-sm:hover {
  background: var(--LP-Yellow, #FFEE56);
}

.button-md {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 40px;
  padding: 4px 22px 6px 22px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 40px;
  border: 2px solid var(--LP-Blown, #4A3636);
  background: var(--LP-White, #FFF);
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--LP-Blown, #4A3636);
}
.button-md:hover {
  background-color: var(--LP-Yellow, #FFEE56);
}

.button-lg {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 56px;
  padding: 10px 40px 12px 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 40px;
  border: 3px solid var(--LP-Blown, #4A3636);
  background: var(--LP-White, #FFF);
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--LP-Blown, #4A3636);
}
.button-lg:hover {
  background: var(--LP-Yellow, #FFEE56);
}

.heading {
  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: 1025px) {
  .heading {
    gap: 8px;
  }
}

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

.heading-en {
  color: var(--LP-Blown, #4A3636);
  font-family: "Courgette", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 1025px) {
  .heading-en {
    font-size: 20px;
  }
}

.heading-jp {
  color: var(--LP-Blown, #4A3636);
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  border-bottom: 6px solid var(--LP-Yellow, #FFEE56);
  padding-bottom: 6px;
  display: inline-block;
}
@media screen and (min-width: 1025px) {
  .heading-jp {
    font-size: 32px;
    padding-bottom: 16px;
  }
}

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

.pc-apparent {
  display: none;
}
@media screen and (min-width: 1025px) {
  .pc-apparent {
    display: inline-block;
  }
}

.header {
  height: 64px;
  width: 100%;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (min-width: 1025px) {
  .header__inner {
    margin-left: 24px;
    margin-right: 24px;
    height: 64px;
  }
}

.header-logo {
  margin-top: 18px;
  margin-bottom: 16px;
  max-width: 210px;
}
@media screen and (min-width: 1025px) {
  .header-logo {
    max-width: 183px;
    height: 24px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 1025px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
}

@media screen and (min-width: 1025px) {
  .header__nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 12px;
  }
}

.header__nav-link {
  color: #4A3636;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__nav-link:hover {
  text-decoration-line: underline;
  color: var(--LP-Dark-Blue, #67B0C7);
}
@media screen and (min-width: 1025px) {
  .header__nav-link {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__nav-link {
    font-size: 11px;
  }
}

@media screen and (min-width: 1025px) {
  .header__nav-link-button {
    width: 133px;
  }
}

@media screen and (min-width: 1025px) {
  .header__nav-link-button-text {
    font-weight: 700;
  }
}

.drawer-icon {
  position: relative;
  width: 32px;
  height: 27px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 9px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 9px;
}
.drawer-icon.is-checked .drawer-icon__dot {
  display: none;
}
@media screen and (min-width: 1025px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  position: absolute;
  width: 32px;
  height: 3px;
  background: #4A3636;
  border-radius: 6px;
  top: 0;
  left: 0;
  margin-top: 18px;
  margin-bottom: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.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;
  width: 4.8px;
  height: 3px;
  background: #4A3636;
  border-radius: 6px;
  top: 0;
  left: 28px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.drawer-content {
  width: 100%;
  height: calc(100% - 64px);
  position: fixed;
  top: 64px;
  right: 0;
  background: #FFF;
  padding: 82px;
  overflow-y: auto;
  display: none;
  z-index: 10;
}

.drawer-content__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  text-align: center;
}

.drawer-content__menu-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #4A3636;
}

.fv {
  position: relative;
  margin-top: 64px;
}

.fv__background-img {
  position: absolute;
  border-radius: 0px 0px 24px 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: calc(100% - 156px);
  z-index: -1;
}
.fv__background-img img {
  width: 100%;
  height: 554px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px 0px 24px 24px;
}
@media screen and (min-width: 1025px) {
  .fv__background-img {
    width: 100%;
    height: calc(100% - 97px);
    border-radius: 0px 0px 24px 24px;
  }
  .fv__background-img img {
    height: 740px;
    border-radius: 0px 0px 24px 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__background-img {
    border-radius: 0px 0px 24px 24px;
  }
  .fv__background-img img {
    border-radius: 0px 0px 24px 24px;
  }
}

.fv__inner {
  position: relative;
  width: 335px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .fv__inner {
    margin: 0 auto;
    width: 100%;
  }
}

.fv__lead {
  padding-top: 17px;
  color: var(--LP-Blown, #4A3636);
  text-align: center;
  text-shadow: 0px 0px 30px #FFF;
  font-family: "Kiwi Maru";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 1025px) {
  .fv__lead {
    padding-top: 35px;
    font-size: 25px;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__lead {
    font-size: 18px;
  }
}

.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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .fv__title {
    margin-top: 24px;
    gap: 16px;
  }
}
.fv__title1 {
  max-width: 335px;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .fv__title1 {
    min-width: 520px;
  }
}

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

.fv__main-wrapper {
  height: 532px;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .fv__main-wrapper {
    height: 603px;
  }
}

.fv__sp-wrapper {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  z-index: 1;
}
.fv__sp-img {
  width: 200px;
  margin-top: 113px;
}
.fv__sp-img img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .fv__sp-img {
    width: 250px;
    height: 510px;
    margin-top: 33px;
  }
}

.fv__sp-box {
  position: absolute;
  top: 235px;
  left: 20px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  background: #FFF;
  border-radius: 12.8px;
  width: 160px;
  max-width: 100%;
}
@media screen and (min-width: 1025px) {
  .fv__sp-box {
    min-width: 200px;
    top: 188px;
    left: calc(50% - 99px);
  }
}

.fv__sp-box-title {
  color: var(--LP-White, #FFF);
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 12.8px;
  font-weight: 700;
  line-height: 1.6;
  padding: 6.4px 9.6px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: linear-gradient(265deg, #AC3790 -3.52%, #D65A5C 44.94%, #F4C06D 92.38%);
  border-radius: 12.8px 12.8px 0 0;
}
@media screen and (min-width: 1025px) {
  .fv__sp-box-title {
    padding: 8px 12px;
    font-size: 16px;
  }
}

.fv__sp-box-text {
  margin-top: 12.8px;
  color: var(--LP-Blown, #4A3636);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  margin-bottom: 5.2px;
}
.fv__sp-box-text::before {
  position: absolute;
  bottom: -2px;
  height: 2px;
  content: "";
  background: #CE2073;
  left: calc(50% - 25px);
  width: 49px;
}
@media screen and (min-width: 1025px) {
  .fv__sp-box-text {
    font-size: 14px;
  }
}

.fv__sp-box-schedule {
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
}
.fv__sp-box-schedule p {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .fv__sp-box-schedule {
    font-size: 17px;
  }
}

.fv__sp-box-button {
  margin-top: 12.8px;
  margin-bottom: 19.2px;
}
@media screen and (min-width: 1025px) {
  .fv__sp-box-button {
    margin-top: 16px;
    margin-bottom: 24px;
    height: 40px;
    width: 144px;
  }
}

.fv__decoimg-fukidashi {
  position: absolute;
  max-width: 142px;
  left: calc(50% - 168px);
  top: 196px;
}
.fv__decoimg-fukidashi img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .fv__decoimg-fukidashi {
    min-width: 240px;
    top: 0;
    left: 37px;
    left: calc(50% - 383px);
    top: 278px;
  }
}

.fv__decoimg-present {
  max-width: 110px;
  position: absolute;
  left: calc(50% + 33px);
  top: 189px;
}
.fv__decoimg-present img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .fv__decoimg-present {
    min-width: 180px;
    top: 17px;
    right: 127px;
    left: calc(50% + 117px);
    top: 295px;
  }
}

.fv__decoimg-food {
  position: absolute;
  max-width: 86px;
  z-index: 2;
  left: calc(50% - 166px);
  top: 576px;
}
.fv__decoimg-food img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .fv__decoimg-food {
    min-width: 204px;
    left: calc(50% - 419px);
    top: 513px;
  }
  .fv__decoimg-food img {
    width: 100%;
  }
}

.fv__decoimg-black-cat {
  position: absolute;
  max-width: 62px;
  left: calc(50% + 105px);
  top: 583px;
  z-index: 2;
}
.fv__decoimg-black-cat img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .fv__decoimg-black-cat {
    min-width: 170px;
    left: calc(50% + 191px);
    top: 587px;
  }
}

.fv__decoimg-brown-cat {
  max-width: 98px;
  left: calc(50% + 60px);
  top: 640px;
  position: absolute;
  z-index: 2;
}
.fv__decoimg-brown-cat img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .fv__decoimg-brown-cat {
    min-width: 233px;
    height: 174px;
    left: calc(50% + 191px);
    top: 704px;
  }
}
.fv__decoimg-pagetop {
  display: none;
}
@media screen and (min-width: 1025px) {
  .fv__decoimg-pagetop {
    display: block;
    bottom: 16px;
    right: 16px;
    width: 100px;
    height: 104px;
    visibility: hidden;
    position: fixed;
    z-index: 1000;
    -webkit-transition: opacity 0.3s, visibility 0.9s;
    transition: opacity 0.3s, visibility 0.9s;
  }
  .fv__decoimg-pagetop.is-show {
    opacity: 1;
    visibility: visible;
  }
  .fv__decoimg-pagetop img {
    display: block;
    width: 100%;
  }
}

.fv__decoimg--pawpads {
  position: absolute;
  max-width: 54px;
  left: calc(50% + 133px);
  top: 733px;
}
.fv__decoimg--pawpads img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .fv__decoimg--pawpads {
    position: absolute;
    max-width: 100px;
    left: calc(50% + 490px);
    top: 836px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__decoimg--pawpads {
    left: calc(50% + 262px);
  }
}

.about {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
}
@media screen and (min-width: 1025px) {
  .about {
    margin-top: 0;
    padding-top: 39px;
  }
}

.about__images {
  position: absolute;
}

.about__inner {
  position: relative;
  max-width: 335px;
  height: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .about__inner {
    border-radius: 40px;
    min-width: 848px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about__inner {
    border-radius: 40px;
    min-width: 600px;
  }
}

.about__contents {
  width: 335px;
  max-width: 100%;
  background-color: var(--LP-White, #FFF);
  border-radius: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 24px;
}
@media screen and (min-width: 1025px) {
  .about__contents {
    border-radius: 40px;
    width: 620px;
    min-width: 100%;
    padding-bottom: 41px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about__contents {
    border-radius: 40px;
    width: 487px;
    padding-bottom: 41px;
  }
}

.about__contents-left-image {
  position: absolute;
  width: 90px;
  height: 60px;
  top: 30px;
  left: calc(50% - 135px);
}
.about__contents-left-image img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .about__contents-left-image {
    width: 148px;
    height: 100px;
    top: 36px;
    left: calc(50% - 339px);
  }
}

.about__contents-right-image {
  position: absolute;
  width: 90px;
  height: 60px;
  top: 30px;
  left: calc(50% + 59px);
}
.about__contents-right-image img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .about__contents-right-image {
    width: 148px;
    height: 100px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    top: 46px;
    left: calc(50% + 192px);
  }
}

@media screen and (min-width: 1025px) {
  .about__heading {
    gap: 13px;
    padding-bottom: 7px;
  }
}

@media screen and (min-width: 1025px) {
  .about__heading-jp-sp {
    padding-bottom: 9px;
  }
}

.about__contents-lead p {
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .about__contents-lead p {
    font-size: 16px;
    font-weight: 700;
  }
}

.about__contents-text {
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .about__contents-text {
    font-size: 16px;
    font-weight: 700;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 10px;
    margin-bottom: 21px;
  }
}

.accout {
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.accout:hover {
  color: var(--LP-Dark-Blue, #67B0C7);
}
@media screen and (min-width: 1025px) {
  .accout {
    font-size: 16px;
  }
}

.hushtag {
  color: var(--LP-Blown, #4A3636);
  font-family: "$font-family-ja";
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .hushtag {
    font-size: 16px;
  }
}

.about__contents-present p {
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  padding-top: 5px;
  padding-bottom: 8px;
  border-bottom: dashed 2px #9ED0E0;
  display: inline-block;
}
@media screen and (min-width: 1025px) {
  .about__contents-present p {
    font-size: 20px;
    font-weight: 700;
  }
}

.about__contents-button {
  max-width: 192px;
  height: 38px;
  margin: 0 auto;
}
.about__contents-button a {
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .about__contents-button {
    margin-top: 10px;
    min-width: 255px;
    height: 51px;
  }
  .about__contents-button a {
    font-size: 20px;
  }
}

.about__contents-button-text {
  font-size: 14px;
}

.about__bg-img-stripe {
  width: 250px;
  left: calc(50% - 770px);
  z-index: -1;
  top: 70px;
}
.about__bg-img-stripe img {
  display: block;
  max-width: 100%;
}
@media screen and (min-width: 1025px) {
  .about__bg-img-stripe {
    width: 250px;
    left: calc(50% - 781px);
    z-index: -1;
    top: 19px;
  }
}

.about__bg-img-left {
  top: 397px;
  width: 200px;
  left: calc(50% - 322px);
  overflow: hidden;
}
.about__bg-img-left img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .about__bg-img-left {
    width: 480px;
    top: 110px;
    left: calc(50% - 1094px);
    z-index: 10;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about__bg-img-left {
    left: calc(50% - 364px);
  }
}

.about__bg-img-right {
  width: 200px;
  left: calc(50% + 127px);
  top: 274px;
  overflow: hidden;
}
.about__bg-img-right img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .about__bg-img-right {
    width: 480px;
    top: 111px;
    left: calc(50% + 561px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about__bg-img-right {
    left: calc(50% + 163px);
  }
}

.about__bg-img-arrow {
  position: absolute;
  width: 100px;
  height: 36px;
  top: 710px;
  left: calc(50% - 50px);
}
.about__bg-img-arrow img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .about__bg-img-arrow {
    width: 140px;
    top: 826px;
    left: calc(50% - 75px);
  }
  .about__bg-img-arrow img {
    width: 100%;
    height: auto;
  }
}

.about__bg-img-path1 {
  width: 806.851px;
  height: 12.006px;
  top: 644px;
  left: calc(50% + 514px);
}
.about__bg-img-path1 img {
  display: block;
}

.about__bg-img-path2 {
  width: 806.851px;
  height: 12.006px;
  top: 677px;
  left: calc(50% + 448px);
}
.about__bg-img-path2 img {
  display: block;
}

.about__bg-img-goods {
  width: 48px;
  height: 48px;
  top: 722px;
  left: calc(50% + 121px);
}
.about__bg-img-goods img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .about__bg-img-goods {
    width: 101px;
    height: 100.047px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    top: 641px;
    left: calc(50% + 509px);
  }
}

.about__bg-img-towel {
  width: 133px;
  right: 64px;
  left: calc(50% - 3px);
  top: 765px;
}
.about__bg-img-towel img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .about__bg-img-towel {
    width: 308px;
    height: 150px;
    left: calc(50% + 373px);
    top: 794px;
  }
  .about__bg-img-towel img {
    width: 100%;
  }
}

.about__bg-img-sakamichi {
  position: absolute;
  left: 0;
  top: 711px;
  width: 137px;
}
.about__bg-img-sakamichi img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .about__bg-img-sakamichi {
    top: 358px;
    width: 427px;
    height: 817px;
    left: calc(50% - 858px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about__bg-img-sakamichi {
    top: 625px;
  }
}

.about__animation {
  margin-top: 139px;
  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;
}
@media screen and (min-width: 1025px) {
  .about__animation {
    padding-top: 28px;
  }
}

.about__animation-img {
  width: 355px;
}
.about__animation-img img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .about__animation-img {
    width: 891px;
  }
  .about__animation-img img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about__animation-img {
    max-width: 768px;
  }
}

.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 1;
}

.about__card {
  height: 100px !important;
  width: 100px !important;
}
@media screen and (min-width: 1025px) {
  .about__card {
    height: 200px !important;
    width: 200px !important;
  }
}
.about__card img {
  width: 100px;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .about__card img {
    width: 200px;
    height: auto;
  }
}

.howto {
  margin-top: 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .howto {
    padding-top: 50px;
  }
}

.howto-bgimg-map {
  width: 149px;
  position: absolute;
  top: 32px;
  left: calc(50% - 197px);
}
.howto-bgimg-map img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .howto-bgimg-map {
    width: 418px;
    top: 38px;
    left: calc(50% - 725px);
    z-index: -1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .howto-bgimg-map {
    width: 214px;
    top: 67px;
    left: calc(50% - 362px);
  }
}

.howto-bgimg-blackcat {
  width: 94px;
  position: absolute;
  top: 36px;
  left: calc(50% + 124px);
  z-index: 1;
}
.howto-bgimg-blackcat img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .howto-bgimg-blackcat {
    width: 209px;
    top: 64px;
    left: calc(50% + 440px);
  }
  .howto-bgimg-blackcat img {
    width: 300px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .howto-bgimg-blackcat {
    width: 214px;
    top: 67px;
    left: calc(50% + 245px);
  }
}

.howto-bgimg-blowncat {
  width: 105px;
  position: absolute;
  top: 32px;
  left: calc(50% + 58px);
}
.howto-bgimg-blowncat img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .howto-bgimg-blowncat {
    width: 252px;
    top: 49px;
    left: calc(50% + 280px);
  }
  .howto-bgimg-blowncat img {
    width: 300px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .howto-bgimg-blowncat {
    width: 214px;
    top: 67px;
    left: calc(50% + 124px);
  }
}

.howto-bgimg-pawpads1 {
  width: 55px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  position: absolute;
  top: 105px;
  left: calc(50% + 113px);
}
.howto-bgimg-pawpads1 img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .howto-bgimg-pawpads1 {
    width: 100px;
    top: 238px;
    left: calc(50% + 621px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .howto-bgimg-pawpads1 {
    top: 226px;
    left: calc(50% + 205px);
  }
}

.howto-bgimg-pawpads2 {
  width: 55px;
  position: absolute;
  top: 582px;
  left: calc(50% - 167px);
}
.howto-bgimg-pawpads2 img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .howto-bgimg-pawpads2 {
    width: 100px;
    top: 669px;
    left: calc(50% - 720px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .howto-bgimg-pawpads2 {
    left: calc(50% - 224px);
  }
}

.howto-bgimg-pawpads3 {
  width: 55px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  position: absolute;
  top: 911px;
  left: calc(50% + 114px);
}
.howto-bgimg-pawpads3 img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .howto-bgimg-pawpads3 {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .howto-bgimg-pawpads3 {
    left: calc(50% + 182px);
  }
}

.howto__inner {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  padding-top: 32px;
}
@media screen and (min-width: 1025px) {
  .howto__inner {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .howto__inner {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1025px) {
  .heading-jp {
    padding-bottom: 7px;
  }
}

.howto__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 32px;
  gap: 9px;
}
@media screen and (min-width: 1025px) {
  .howto__steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .howto__steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 32px;
    gap: 25px;
  }
}

.howto__step01 {
  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: 1025px) {
  .howto__step01 {
    width: 320px;
  }
}

.howto__step01-img {
  width: 196px;
  margin: 0 auto;
}
.howto__step01-img img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .howto__step01-img {
    width: 280px;
  }
}

.howto__step-title p {
  color: var(--LP-Blown, #4A3636);
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .howto__step-title {
    margin-top: 8px;
  }
  .howto__step-title p {
    font-size: 20px;
  }
}

.howto__step01-text p {
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .howto__step01-text p {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .howto__step01-text p {
    font-size: 14px;
  }
}

.howto__step01-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  background: var(--LP-White, #FFF);
  padding: 8px 12px;
  margin: 0 auto;
}
.howto__step01-button:hover {
  border: solid 1px var(--LP-Dark-Blue, #67B0C7);
}

.howto__step01-button-icon {
  width: 20px;
}
.howto__step01-button-icon img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .howto__step01-button-icon {
    width: 24px;
  }
}

.howto__step01-button-text {
  font-weight: 700;
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .howto__step01-button-text {
    font-size: 16px;
  }
}

.howto__steps-line-img01 {
  width: 8px;
  height: 1px;
  margin: 0 auto;
  padding-bottom: 23px;
}
.howto__steps-line-img01 img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .howto__steps-line-img01 {
    width: 113px;
    position: absolute;
    top: 471px;
    left: calc(50% - 256px);
  }
  .howto__steps-line-img01 img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .howto__steps-line-img01 {
    width: 51px;
    height: 1px;
    margin: 0 auto;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    margin-top: 20px;
  }
}

.howto__step02 {
  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: 1025px) {
  .howto__step02 {
    margin-top: 69px;
    width: 320px;
  }
}
.howto__step02-img {
  width: 196px;
  margin: 0 auto;
}
.howto__step02-img img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .howto__step02-img {
    width: 280px;
  }
}

.howto__step02-text p {
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .howto__step02-text p {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .howto__step02-text p {
    font-size: 14px;
  }
}

.howto__steps-line-img02 {
  width: 8px;
  height: 1px;
  margin: 0 auto;
  padding-bottom: 23px;
}
.howto__steps-line-img02 img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .howto__steps-line-img02 {
    width: 107px;
    -webkit-transform: none;
            transform: none;
    position: absolute;
    top: 470px;
    left: calc(50% + 108px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .howto__steps-line-img02 {
    width: 51px;
    height: 1px;
    margin: 0 auto;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    margin-top: 20px;
  }
}

.howto__step03 {
  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: 1025px) {
  .howto__step03 {
    width: 320px;
  }
}

.howto__step03-img {
  width: 196px;
  margin: 0 auto;
}
.howto__step03-img img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .howto__step03-img {
    width: 280px;
  }
  .howto__step03-img img {
    width: 100%;
  }
}

.howto__step03-text p {
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .howto__step03-text p {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .howto__step03-text p {
    font-size: 14px;
  }
}

.howto__button {
  text-align: center;
  margin-top: 16px;
}
@media screen and (min-width: 1025px) {
  .howto__button {
    padding: 19px 40px 25px 40px;
    font-size: 20px;
    margin-top: 10px;
    height: 57px;
  }
}

.prize {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .prize {
    margin-top: 111px;
  }
}

.prize__heading-img {
  position: absolute;
  width: 237.6px;
  height: 83px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: -1;
  top: 23px;
  left: calc(50% - 119px);
}
.prize__heading-img img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .prize__heading-img {
    width: 365.624px;
    height: 148.967px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    top: -5px;
    left: calc(50% - 186px);
  }
}

.prize__heading-img-left {
  display: none;
}
.prize__heading-img-left img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .prize__heading-img-left {
    display: block;
    position: absolute;
    width: 315px;
    height: 86px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    top: 22px;
    left: calc(50% - 513px);
  }
}

.prize__heading-img-right {
  display: none;
}
.prize__heading-img-right img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .prize__heading-img-right {
    display: block;
    position: absolute;
    width: 315px;
    height: 86px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    top: 22px;
    left: calc(50% + 199px);
  }
}

.prize__inner {
  position: relative;
}

.prize__heading {
  position: relative;
  top: 40px;
}
@media screen and (min-width: 1025px) {
  .prize__heading {
    top: 23px;
  }
}

.prize__contents {
  background: #FFF;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 375px;
  text-align: center;
  margin: 0 auto;
  border-radius: 24px;
  padding-top: 45.33px;
  padding-bottom: 34.67px;
}
@media screen and (min-width: 1025px) {
  .prize__contents {
    max-width: 1024px;
    padding-right: 56px;
    padding-left: 56px;
    padding-bottom: 53px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prize__contents {
    min-width: 549px;
  }
}

.prize__lead {
  text-align: center;
  padding-top: 10px;
}
.prize__lead p {
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .prize__lead {
    margin-top: 10px;
  }
  .prize__lead p {
    font-size: 16px;
  }
}

.prize__cards {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px; /* カード間のスペースを調整 */
  row-gap: 39px;
}
@media screen and (min-width: 1025px) {
  .prize__cards {
    margin-top: 82px;
    row-gap: 73px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prize__cards {
    gap: 22px;
  }
}

.prize__card-01 {
  display: inline-block;
  width: 160px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .prize__card-01 {
    width: 440px;
    border: 4px solid transparent;
  }
  .prize__card-01:hover {
    border-radius: 24px;
    border: 4px solid #9ED0E0;
    background: var(--LP-Gray, #F5F5F5);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prize__card-01 {
    display: inline-block;
    width: 200px;
    position: relative;
  }
}

.prize__card-02 {
  display: inline-block;
  width: 160px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .prize__card-02 {
    width: 440px;
    border: 4px solid transparent;
  }
  .prize__card-02:hover {
    border-radius: 24px;
    border: 4px solid #9ED0E0;
    background: var(--LP-Gray, #F5F5F5);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prize__card-02 {
    display: inline-block;
    width: 200px;
    position: relative;
  }
}

.prize__card-03 {
  display: inline-block;
  width: 160px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .prize__card-03 {
    width: 280px;
    border: 4px solid transparent;
  }
  .prize__card-03:hover {
    border-radius: 24px;
    border: 4px solid #9ED0E0;
    background: var(--LP-Gray, #F5F5F5);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prize__card-03 {
    display: inline-block;
    width: 200px;
    position: relative;
  }
}

.prize__card-04 {
  display: inline-block;
  width: 160px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .prize__card-04 {
    width: 280px;
    border: 4px solid transparent;
  }
  .prize__card-04:hover {
    border-radius: 24px;
    border: 4px solid #9ED0E0;
    background: var(--LP-Gray, #F5F5F5);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prize__card-04 {
    display: inline-block;
    width: 200px;
    position: relative;
  }
}

.prize__card-05 {
  margin-bottom: -39px;
  display: inline-block;
  width: 160px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .prize__card-05 {
    width: 280px;
    border: 4px solid transparent;
    margin-bottom: 0;
  }
  .prize__card-05:hover {
    border-radius: 24px;
    border: 4px solid #9ED0E0;
    background: var(--LP-Gray, #F5F5F5);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prize__card-05 {
    display: inline-block;
    width: 200px;
    position: relative;
  }
}

.prize__card-head-icon {
  width: 48px;
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .prize__card-head-icon {
    width: 80px;
    top: -40px;
    z-index: 1;
  }
}

@media screen and (min-width: 1025px) {
  .prize__card-head-icon-pc {
    width: 100px;
    height: 100px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    top: -50px;
  }
}

.prize__card-mainimg img {
  display: block;
  border-radius: 8px 8px 0 0;
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .prize__card-mainimg {
    overflow: hidden;
    border-radius: 21px 21px 0 0;
  }
  .prize__card-mainimg img {
    width: 280px;
    height: 240px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .prize__card-mainimg img:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.prize__card-mainimg-pc {
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .prize__card-mainimg-pc img {
    border-radius: 24px 24px 0 0;
    display: block;
    width: 440px;
    height: 340px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .prize__card-mainimg-pc img:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.prize__card-title-wrap {
  text-align: center;
  padding-top: 9px;
  padding-bottom: 9px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F5F5F5;
  border-radius: 0 0 0 8px;
}
@media screen and (min-width: 1025px) {
  .prize__card-title-wrap {
    border-radius: 0 0 24px 24px;
    height: 81px;
    padding-top: 27px;
    padding-bottom: 27px;
  }
}

@media screen and (min-width: 1025px) {
  .prize__card-title-wrap-pc {
    padding-top: 32px;
    padding-bottom: 32px;
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.prize__card-title {
  border-radius: 0 0 0 8px;
}
.prize__card-title p {
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .prize__card-title {
    border-radius: 0 0 0 24px;
  }
  .prize__card-title p {
    font-size: 16px;
  }
}

@media screen and (min-width: 1025px) {
  .prize__card-title-pc p {
    color: var(--LP-Blown, #4A3636);
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
  }
}

.prize__card-title-design {
  width: 36px;
  position: absolute;
  top: 160px;
  left: 124px;
}
.prize__card-title-design img {
  display: block;
  border-radius: 0 0 8px 0;
}
@media screen and (min-width: 1025px) {
  .prize__card-title-design {
    width: 64px;
    top: 257px;
    left: 213px;
    background-size: cover;
  }
  .prize__card-title-design img {
    border-radius: 0 0 24px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prize__card-title-design {
    left: 163px;
  }
}

@media screen and (min-width: 1025px) {
  .prize__card-title-design-pc {
    width: 100px;
    position: absolute;
    top: 360px;
    left: 337px;
  }
  .prize__card-title-design-pc img {
    display: block;
    width: 100px;
    border-radius: 0 0 24px 0;
  }
}

.prize__card-title-icon {
  width: 11.52px;
  position: absolute;
  top: 178px;
  left: 143px;
}
.prize__card-title-icon img {
  display: block;
}
@media screen and (min-width: 1025px) {
  .prize__card-title-icon {
    width: 20.48px;
    top: 290px;
    left: 248px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prize__card-title-icon {
    left: 182px;
  }
}

.prize__card-title-icon-pc {
  display: none;
}
@media screen and (min-width: 1025px) {
  .prize__card-title-icon-pc {
    display: block;
    position: absolute;
    top: 410px;
    left: 395px;
  }
  .prize__card-title-icon-pc img {
    display: block;
    width: 32px;
  }
}

.prize__button {
  margin-top: 58px;
}
@media screen and (min-width: 1025px) {
  .prize__button {
    margin-top: 40px;
    width: 437px;
    height: 56px;
    font-size: 20px;
    padding: 10px 40px 12px 40px;
  }
}

.prize__bg-img {
  position: absolute;
  top: 979px;
  z-index: -5;
}
.prize__bg-img img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}
@media screen and (min-width: 1025px) {
  .prize__bg-img {
    top: 1323px;
    width: 100%;
  }
  .prize__bg-img img {
    height: 640px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .prize__bg-img {
    width: 100%;
  }
}

.card-00-modal {
  position: fixed;
  width: 336px;
  inset: 0;
  padding: 0;
  overflow: auto;
  border-radius: 20px;
  background: #FFF;
  border: none;
  z-index: 60;
  overscroll-behavior-y: none;
  padding-top: 0;
  padding-bottom: 56px;
}
.card-00-modal::-ms-backdrop {
  opacity: 0.5;
  background: #000;
}
.card-00-modal::backdrop {
  opacity: 0.5;
  background: #000;
}

.card-00-modalimg img {
  display: block;
  width: 100%;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-00-title-wrap {
  text-align: center;
  margin-top: 39px;
  margin-left: 20px;
  margin-right: 20px;
}

.card-00-title p {
  color: var(--LP-Blown, #4A3636);
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.card-00-text {
  margin-top: 12px;
}
.card-00-text p {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.card-modal-close-button {
  margin-top: 16px;
}

.spots {
  margin-top: 172px;
}
@media screen and (min-width: 1025px) {
  .spots {
    margin-top: 509px;
  }
}

.spots__inner {
  display: block;
}
.spots__inner::before {
  content: "";
  display: block;
  background-image: url(../img/sp/spots-deco-head.svg);
  background-repeat: repeat-x;
  background-size: auto 100%;
  width: 100%;
  height: 45.714px;
}
@media screen and (min-width: 1025px) {
  .spots__inner::before {
    background-image: url(../img/pc/spots-deco-head-pc.png);
    height: 120px;
  }
}
.spots__inner::after {
  content: "";
  display: block;
  background-image: url(../img/sp/spots-deco-bottom-sp.png);
  background-repeat: repeat-x;
  background-size: auto 100%;
  height: 45.714px;
}
@media screen and (min-width: 1025px) {
  .spots__inner::after {
    background-image: url(../img/sp/spots-deco-bottom-sp.png);
    width: 100%;
    height: 120px;
  }
}

.spots__container {
  background-color: #67B0C7;
  text-align: center;
  padding-bottom: 19.84px;
}
@media screen and (min-width: 1025px) {
  .spots__container {
    position: relative;
    text-align: right;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .spots__container {
    position: relative;
  }
}

@media screen and (min-width: 1025px) {
  .spots__bg-deco {
    position: absolute;
    top: 493px;
    left: calc(50% - 724px);
  }
  .spots__bg-deco img {
    display: block;
    width: 93%;
  }
}

@media screen and (min-width: 1025px) {
  .spots__recommend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: calc(50% - 512px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .spots__recommend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 20px;
  }
}

.spots__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1025px) {
  .spots__title {
    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;
    margin-bottom: 58px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .spots__title {
    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;
  }
}

.spots__title-icon {
  padding: 4.17px 4.02px 4.75px 4.02px;
}
.spots__title-icon img {
  display: block;
  width: 19.966px;
  height: 19.082px;
}
@media screen and (min-width: 1025px) {
  .spots__title-icon {
    padding: 0;
  }
  .spots__title-icon img {
    width: 56px;
    height: 56px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .spots__title-icon {
    width: 19.966px;
    height: 19.082px;
    padding: 0;
  }
}

.spots__title-text {
  color: var(--LP-White, #FFF);
  text-align: center;
  -webkit-font-feature-settings: "pwid" on;
          font-feature-settings: "pwid" on;
  font-family: "Kiwi Maru";
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 1025px) {
  .spots__title-text {
    font-size: 40px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    letter-spacing: 11px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .spots__title-text {
    font-size: 32px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    letter-spacing: 9px;
  }
}

.spots__swiper {
  margin-top: 24px;
}
@media screen and (min-width: 1025px) {
  .spots__swiper {
    margin-top: 0;
    margin-left: 32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .spots__swiper {
    margin-top: 0;
    margin-left: 32px;
  }
}

.spots__swiper-wrapper {
  gap: 0;
}
@media screen and (min-width: 1025px) {
  .spots__swiper-wrapper {
    overflow: visible;
  }
}

.swiper-slide-card {
  background: #FFF;
  padding-bottom: 31.159px;
  border-radius: 12px;
}
@media screen and (min-width: 1025px) {
  .swiper-slide-card {
    border-radius: 24px;
    padding-bottom: 40px;
    min-width: 22.7513227513%;
  }
}

.swiper-slide-card-img img {
  display: block;
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 1025px) {
  .swiper-slide-card-img img {
    border-radius: 24px 24px 0 0;
    height: 240px;
  }
}

.swiper-slide-card-title-wrap {
  padding-right: 24px;
  padding-left: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 16px;
}
@media screen and (min-width: 1025px) {
  .swiper-slide-card-title-wrap {
    padding-right: 32px;
    padding-left: 32px;
    gap: 24px;
  }
}

.swiper-slide-card-title {
  margin-top: 16px;
}
.swiper-slide-card-title p {
  color: var(--LP-Blown, #4A3636);
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  /* JP/Text 16px Bold */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .swiper-slide-card-title {
    margin-top: 24px;
  }
  .swiper-slide-card-title p {
    font-size: 20px;
  }
}

.swiper-slide-card-text {
  height: 133px;
  text-align: left;
}
.swiper-slide-card-text p {
  color: var(--LP-Blown, #4A3636);
  /* JP/Text 12px Regular */
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .swiper-slide-card-text {
    height: 182px;
  }
}
@media screen and (min-width: 1025px) and (min-width: 1025px) {
  .swiper-slide-card-text p {
    font-size: 16px;
  }
}

@media screen and (min-width: 1025px) {
  .spots__swiper-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 1025px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 80px;
    height: 80px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 50px;
    height: 50px;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    display: none;
  }
}

.swiper-button-prev {
  display: none;
}
@media screen and (min-width: 1025px) {
  .swiper-button-prev {
    position: absolute;
    display: inline-block;
    left: calc(50% - 471px);
    background-image: url(../img/pc/spots-arrow-prev.png);
    background-size: contain;
    top: 508px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .swiper-button-prev {
    position: absolute;
    display: inline-block;
    left: calc(50% - 303px);
    background-image: url(../img/pc/spots-arrow-prev.png);
    background-size: contain;
    top: 414px;
  }
}

.swiper-button-next {
  display: none;
}
@media screen and (min-width: 1025px) {
  .swiper-button-next {
    right: 0;
    display: inline-block;
    background-image: url(../img/pc/spots-arrow-next.png);
    background-size: contain;
    top: 508px;
    left: calc(50% + 393px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .swiper-button-next {
    right: 0;
    display: inline-block;
    background-image: url(../img/pc/spots-arrow-next.png);
    background-size: contain;
    top: 414px;
    left: calc(50% + 202px);
  }
}

.spots__bg-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.spots__bg-logo img {
  display: block;
  width: 254.439px;
  height: 55px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .spots__bg-logo {
    display: block;
  }
  .spots__bg-logo img {
    width: 495px;
    height: 107px;
  }
}

.spots__lead {
  color: var(--LP-White, #FFF);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11.444px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 16px;
}
@media screen and (min-width: 1025px) {
  .spots__lead {
    font-size: 16px;
    margin-top: 0;
  }
}

.spots__button {
  margin-top: 24px;
}
@media screen and (min-width: 1025px) {
  .spots__button {
    width: 437px;
    height: 56px;
    font-size: 20px;
    padding: 10px 40px 12px 40px;
  }
}

@media screen and (min-width: 1025px) {
  .spots__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 81px;
    margin-top: 66px;
  }
}

@media screen and (min-width: 1025px) {
  .spots__contents-right {
    gap: 24px;
  }
}

.section__qa {
  padding-top: 40px;
  padding-bottom: 28px;
}
@media screen and (min-width: 1025px) {
  .section__qa {
    padding-top: 125px;
  }
}

.qa__inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (min-width: 768px) and (max-width: 1024px) {
  .qa__inner {
    padding-left: 80px;
    padding-right: 80px;
  }
}

.qa__boxes {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
}
@media screen and (min-width: 1025px) {
  .qa__boxes {
    padding-top: 40px;
    gap: 25px;
    max-width: 1024px;
    margin: 0 auto;
  }
}

.qa__box {
  border-radius: 12px;
  border: 2px solid var(--LP-Blown, #4A3636);
  background: var(--LP-White, #FFF);
}
@media screen and (min-width: 1025px) {
  .qa__box {
    border-radius: 16px;
  }
}

.qa-box__head {
  padding: 12px 16px;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .qa-box__head {
    padding: 24px;
  }
}

.qa__box-q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 1025px) {
  .qa__box-q {
    position: relative;
    gap: 15px;
  }
}

.qa-box__head-icon {
  color: var(--LP-Blue, #9ED0E0);
  font-family: "Josefin Sans";
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 1025px) {
  .qa-box__head-icon {
    font-size: 32px;
  }
}

.qa-box__head-text {
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .qa-box__head-text {
    font-size: 20px;
  }
}

.qa__box-button-icon {
  display: block;
  position: relative;
  background-color: #9ED0E0;
  width: 26.182px;
  height: 26.182px;
  border-radius: 50%;
}
.qa__box-button-icon.is-checked .qa__box-button-icon-bar:nth-child(1) {
  display: none;
}
@media screen and (min-width: 1025px) {
  .qa__box-button-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    left: calc(100% - 44px);
    top: -4px;
  }
}

.qa__box-button-icon-bar {
  position: absolute;
  width: 10.182px;
  height: 1.455px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #fff;
  border-radius: 6px;
  top: 12px;
  left: calc(50% - 5px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.qa__box-button-icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (min-width: 1025px) {
  .qa__box-button-icon-bar {
    width: 18.667px;
    height: 2.667px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    top: 22px;
    left: calc(50% - 9.333px);
  }
}

.qa-box__body {
  background: var(--LP-Gray, #F5F5F5);
  border-radius: 0 0 12px 12px;
}

.qa-box-body {
  display: none;
  border-radius: 0 0 12px 12px;
}
@media screen and (min-width: 1025px) {
  .qa-box-body {
    border-radius: 0 0 24px 24px;
  }
}

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

.qa-box__a-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .qa-box__a-text {
    font-size: 16px;
  }
}

.qa__deco {
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  text-decoration-line: underline;
}

.entry__inner {
  padding-right: 20px;
  padding-left: 20px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .entry__inner {
    margin-top: 92px;
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .entry__inner {
    padding-left: 80px;
    padding-right: 80px;
  }
}

.entry__contents {
  border: 8px solid var(--LP-White, #FFF);
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 1025px) {
  .entry__contents {
    margin: 0 auto;
    padding: 22px 48px;
    width: 1024px;
    height: auto;
  }
}

.entry__heading {
  margin-top: 16px;
}
@media screen and (min-width: 1025px) {
  .entry__heading {
    margin-top: 8px;
  }
}

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

.entry__content {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--LP-Dark-Gray, #CCC);
  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;
  margin-left: 17px;
  margin-right: 17px;
}
@media screen and (min-width: 1025px) {
  .entry__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 11px;
    margin-right: 0;
  }
}

.entry__content-bottom {
  padding-bottom: 15px;
  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;
  margin-left: 17px;
  margin-right: 17px;
}
@media screen and (min-width: 1025px) {
  .entry__content-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 15px;
    margin-right: 1px;
  }
}

.entry__content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.entry__content-title p {
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .entry__content-title {
    min-width: 214px;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .entry__content-title p {
    font-size: 16px;
  }
}

.entry-title-icon {
  width: 8px;
  height: 8px;
}
.entry-title-icon img {
  display: block;
}

.entry__content-text {
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
.entry__content-text ul {
  list-style-type: disc;
  -webkit-padding-start: 17px;
          padding-inline-start: 17px;
}
.entry__content-text ul ::marker {
  font-size: 9px;
}
@media screen and (min-width: 1025px) {
  .entry__content-text ul {
    -webkit-padding-start: 23px;
            padding-inline-start: 23px;
  }
}
.entry__content-text a {
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .entry__content-text {
    font-size: 16px;
    line-height: 1.63;
  }
}

.policy {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.policy:hover {
  color: var(--LP-Dark-Blue, #67B0C7);
}

.entry__bg-img {
  position: absolute;
  margin-top: 32px;
}
.entry__bg-img img {
  display: block;
  width: 100vw;
  height: 99px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1025px) {
  .entry__bg-img {
    margin-top: 119px;
  }
  .entry__bg-img img {
    height: 400px;
  }
}

.contact {
  margin-top: 130px;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  .contact {
    margin-top: 519px;
    padding-top: 120px;
    padding-bottom: 124px;
  }
}

.contact__inner {
  padding-right: 20px;
  padding-left: 20px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .contact__inner {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact__inner {
    padding-left: 80px;
    padding-right: 80px;
  }
}

.contact__lead {
  margin-top: 24px;
}
.contact__lead p {
  color: var(--LP-Blown, #4A3636);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .contact__lead {
    margin-top: 38px;
  }
  .contact__lead p {
    font-size: 16px;
  }
}

.contact__fields {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1025px) {
  .contact__fields {
    margin-top: 40px;
    max-width: 848px;
    height: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

.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: 1025px) {
  .contact__field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 39px;
    height: 56px;
  }
}

.form__field-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 1025px) {
  .form__field-head {
    width: 180px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.form__field-label {
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .form__field-label {
    font-size: 16px;
  }
}

.form__field-tag {
  color: var(--LP-White, #FFF);
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  padding: 4px 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  background: var(--LP-Red, #CE2073);
}

.form__field-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-radius: 8px;
  background: var(--LP-Gray, #F5F5F5);
  border: none;
}
.form__field-input:focus {
  outline: none;
  border-radius: 8px;
  border: 1px solid var(--LP-Blue, #9ED0E0);
  background: var(--LP-Light-Blue, #E9F6F8);
}
@media screen and (min-width: 1025px) {
  .form__field-input {
    width: 628px;
  }
}

.form__field-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #F5F5F5 url(../img/sp/contact-select-icon.png) no-repeat center right 0px/52px 55px;
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.form__field-select:focus {
  outline: none;
}
@media screen and (min-width: 1025px) {
  .form__field-select {
    width: 628px;
  }
}

.form__field-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (min-width: 1025px) {
  .form__field-radios {
    gap: 4px;
  }
}

@media screen and (min-width: 1025px) {
  .form__field-radio {
    height: 56px;
    padding: 16px;
  }
}

.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;
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.form-radio__text::before, .form-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  left: 0;
}
.form-radio__text::before {
  width: 24px;
  height: 24px;
  background: #F5F5F5;
}
.form-radio__text::after {
  width: 10px;
  height: 10px;
  background: #9ED0E0;
  left: 7px;
  opacity: 0;
}
@media screen and (min-width: 1025px) {
  .form-radio__text {
    font-size: 16px;
    padding-left: 19px;
  }
  .form-radio__text::before, .form-radio__text::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-radius: 50%;
    left: -12px;
  }
  .form-radio__text::after {
    left: -5px;
  }
}

@media screen and (min-width: 1025px) {
  .form__field-message {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

.form-textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 162px;
  padding: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-radius: 8px;
  background: var(--LP-Gray, #F5F5F5);
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.form-textarea:focus {
  outline: none;
  border-radius: 8px;
  border: 1px solid var(--LP-Blue, #9ED0E0);
  background: var(--LP-Light-Blue, #E9F6F8);
}
@media screen and (min-width: 1025px) {
  .form-textarea {
    width: 628px;
    height: 160px;
  }
}

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

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

.form-checkbox__text {
  position: relative;
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  padding-left: 36px;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 4px;
  left: 0;
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  background: var(--LP-Gray, #F5F5F5);
  padding: 8px 5px 7px 5px;
}
.form-checkbox__text::after {
  background: url(../img/sp/contact-check-icon.png) no-repeat center center/contain;
  width: 14px;
  height: 9px;
  left: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 0;
}
.form-checkbox__text a {
  text-decoration-line: underline;
}
@media screen and (min-width: 1025px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}

@media screen and (min-width: 1025px) {
  .contact__button {
    padding: 6px 39px 8px 39px;
  }
}

.contact__button-text {
  color: var(--LP-Blown, #4A3636);
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.error {
  border-radius: 8px;
  border: 1px solid var(--LP-Red, #CE2073);
  background: var(--LP-Lpink, #FFF0F7);
}

.error-label {
  color: var(--LP-Red, #CE2073);
}

.error-select {
  border: 1px solid var(--LP-Red, #CE2073);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #FFF0F7 url(../img/sp/contact-select-icon-error.png) no-repeat center right 0px/52px 55px;
}

.error-checkbox::before {
  border-radius: 8px;
  border: 1px solid var(--LP-Red, #CE2073);
  background: var(--LP-Lpink, #FFF0F7);
}

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

.footer__inner {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .footer__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__inner {
    padding-left: 80px;
    padding-right: 80px;
  }
}

.footer__head {
  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-bottom: 48px;
}
@media screen and (min-width: 1025px) {
  .footer__head {
    margin-bottom: 120px;
  }
}

.footer__head-lead h2 {
  color: var(--LP-Blown, #4A3636);
  font-family: "Josefin Sans";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 1025px) {
  .footer__head-lead h2 {
    font-size: 24px;
  }
}

.footer__head-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin: 0 auto;
}

.footer__head-youtube img {
  display: block;
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 1025px) {
  .footer__head-youtube {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .footer__head-youtube :hover {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  .footer__head-youtube img {
    width: 40px;
    height: 40px;
  }
}

.footer__head-instagrum img {
  display: block;
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 1025px) {
  .footer__head-instagrum :hover {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  .footer__head-instagrum img {
    width: 40px;
    height: 40px;
  }
}

.footer__head-twitter img {
  display: block;
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 1025px) {
  .footer__head-twitter :hover {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  .footer__head-twitter img {
    width: 40px;
    height: 40px;
  }
}

.footer__bg-img {
  position: absolute;
  top: 96px;
  left: calc(50% - 170px);
}
.footer__bg-img img {
  width: 333px;
  max-width: 100%;
}
@media screen and (min-width: 1025px) {
  .footer__bg-img {
    top: 129px;
    left: calc(50% - 385px);
  }
  .footer__bg-img img {
    width: 755px;
    max-width: 100%;
  }
}

@media screen and (min-width: 1025px) {
  .footer-bg-img-paw {
    position: absolute;
    top: -54px;
    left: calc(50% + 573px);
  }
  .footer-bg-img-paw img {
    display: block;
  }
}

.footer__main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  border-radius: 24px;
  margin-bottom: 24px;
}
@media screen and (min-width: 1025px) {
  .footer__main-container {
    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: 1024px;
    margin: 0 auto;
  }
}
iframe {
  display: block;
  width: 100%;
  border-radius: 24px 24px 0 0;
}
@media screen and (min-width: 1025px) {
  iframe {
    border-radius: 0 16px 16px 0;
    width: 512px;
    height: 400px;
  }
}

.footer__main-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  padding-top: 28px;
  padding-left: 28px;
  padding-right: 25px;
  padding-bottom: 31px;
}
@media screen and (min-width: 1025px) {
  .footer__main-contents {
    width: 512px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
}

.footer-main-contents-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer-main-contents-logo img {
  display: block;
  width: 153px;
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1025px) {
  .footer-main-contents-logo {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    width: 389px;
  }
  .footer-main-contents-logo img {
    width: 183px;
  }
}

.footer__main-contents-info-container {
  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: 1025px) {
  .footer__main-contents-info-container {
    gap: 12px;
  }
}

.footer__main-contents-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.footer__main-contents-title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80px;
}
@media screen and (min-width: 1025px) {
  .footer__main-contents-title-wrapper {
    width: 120px;
  }
}

.footer__main-contents-info-icon img {
  display: block;
  width: 8px;
  height: 8px;
}

.footer__main-contents-info-title p {
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .footer__main-contents-info-title p {
    font-size: 16px;
  }
}

.footer__main-contents-info-text p {
  color: var(--LP-Blown, #4A3636);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .footer__main-contents-info-text p {
    font-size: 16px;
  }
}

.footer__decoimg-pagetop {
  display: block;
  width: 75px;
  height: 78px;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .footer__decoimg-pagetop {
    display: none;
  }
}

.footer__bottom {
  display: block;
  margin-top: 24px;
}
.footer__bottom::before {
  content: "";
  display: block;
  background-image: url(../img/sp/spots-deco-head.svg);
  background-repeat: repeat-x;
  background-size: auto 100%;
  height: 45px;
}
@media screen and (min-width: 1025px) {
  .footer__bottom {
    margin-top: 120px;
  }
  .footer__bottom::before {
    background-image: url(../img/pc/spots-deco-head-pc.png);
    height: 120px;
  }
}

.footer__copy {
  background-color: #67B0C7;
  padding-bottom: 24px;
  text-align: center;
}
.footer__copy p {
  color: var(--LP-White, #FFF);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 1025px) {
  .footer__copy {
    padding-bottom: 32px;
  }
  .footer__copy p {
    font-size: 14px;
  }
}