@charset "UTF-8";
html {
  overflow-x: hidden;
}

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

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

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

.inner {
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .inner {
    max-width: 1104px;
    padding-inline: 40px;
  }
}

.button {
  display: inline-block;
  text-align: center;
  border-radius: 40px;
  background: #FFF;
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
  color: #4A3636;
  font-weight: 700;
}
.button__small {
  height: 32px;
  padding: 4px 22px 6px 22px;
  border: 2px solid #4A3636;
  font-size: 14px;
}
.button__normal {
  height: 40px;
  padding: 4px 22px 6px 22px;
  border: 2px solid #4A3636;
  font-size: 16px;
}
.button__large {
  height: 56px;
  padding: 8px 38px 10px 38px;
  border: 3px solid #4A3636;
  font-size: 20px;
}
.button:hover {
  background: #FFEE56;
}

.link-underline:hover {
  color: #67B0C7;
  text-decoration-line: underline;
  text-decoration-color: #67B0C7;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
  cursor: pointer;
}

.section__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  place-items: center;
  gap: 6px;
  padding-inline: 15px;
}
@media screen and (min-width: 900px) {
  .section__head {
    gap: 8px;
    padding-inline: 20px;
  }
}

.section__head-icon {
  width: 39px;
  height: 38px;
}
.section__head-icon svg {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .section__head-icon {
    width: 48px;
    height: 48px;
  }
}

.section__head-title-en {
  font-family: "Courgette", cursive;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .section__head-title-en {
    font-size: 20px;
  }
}

.section__head-title-ja {
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  padding-bottom: 16px;
  border-bottom: 6px solid #FFEE56;
}
@media screen and (min-width: 900px) {
  .section__head-title-ja {
    font-size: 32px;
    border-bottom: 8px solid #FFEE56;
    -webkit-font-feature-settings: "pwid" on;
            font-feature-settings: "pwid" on;
  }
}

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

@media screen and (min-width: 900px) {
  .header__inner {
    padding-inline: 24px;
    margin: 0;
    max-width: 100%;
  }
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 64px;
  padding-block: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 900px) {
  .header__container {
    margin-top: -1px;
  }
}

.header__logo {
  z-index: 52;
  padding-top: 2px;
}
.header__logo svg, .header__logo g {
  display: block;
  width: 210px;
  height: 27px;
}
@media screen and (min-width: 900px) {
  .header__logo svg, .header__logo g {
    width: 183px;
    height: 24px;
  }
}

.drawer-icon {
  width: 32px;
  height: 28px;
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 17px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1), .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(4) {
  top: 17px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 900px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  position: absolute;
  top: 2.5px;
  right: 0;
  width: 32px;
  height: 3px;
  border-radius: 6px;
  background: #4A3636;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-child(1) {
  width: 25.6px;
  left: 0;
}
.drawer-icon__bar:nth-child(2) {
  width: 4.8px;
}
.drawer-icon__bar:nth-child(3) {
  top: 14.5px;
}
.drawer-icon__bar:nth-child(4) {
  top: 26.5px;
}
@media screen and (min-width: 900px) {
  .drawer-icon__bar {
    display: none;
  }
}

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

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

.header__nav-list {
  display: none;
}
@media screen and (min-width: 900px) {
  .header__nav-list {
    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 {
  font-size: 12px;
}

.header__button {
  height: 36px;
}

.drawer__content {
  width: 100%;
  height: calc(100% - 64px);
  top: 64px;
  right: 0;
  background: #FFFFFF;
  position: fixed;
  z-index: 99;
  -webkit-transform: translateY(-200%);
          transform: translateY(-200%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  text-align: center;
}
.drawer__content.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 900px) {
  .drawer__content {
    display: none;
  }
}

.drawer__content-list {
  margin-top: 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 37px;
  place-items: center;
}

.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;
}

.drawer__content-link {
  font-size: 14px;
}

.fv {
  margin-top: 64px;
}

.fv__bg {
  position: relative;
  background: url(../img/SP/fv-bg_sp.jpg) no-repeat center center/cover;
  width: 100%;
  height: 554px;
  border-radius: 0px 0px 24px 24px;
}
@media screen and (min-width: 900px) {
  .fv__bg {
    background: url(../img/fv-bg_pc.jpg) no-repeat center center/cover;
    height: 740px;
    border-radius: 0px 0px 40px 40px;
  }
}

.fv__inner {
  height: auto;
  overflow: hidden;
}

.fv__contents {
  position: absolute;
  top: 81px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .fv__contents {
    top: 98px;
  }
}

.fv__contents-title {
  text-align: center;
  text-shadow: 0px 0px 30px #FFF;
  font-family: "Kiwi Maru", serif;
  font-size: 14px;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .fv__contents-title {
    font-size: 24px;
    font-weight: 500;
  }
}

.fv__contents-campaign {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .fv__contents-campaign {
    margin-top: 24px;
    gap: 16px;
  }
}
.fv__contents-campaign svg {
  display: block;
  width: 335px;
}
@media screen and (min-width: 900px) {
  .fv__contents-campaign svg {
    width: 520px;
  }
}
.fv__contents-campaign svg:nth-child(1) {
  height: 53px;
}
@media screen and (min-width: 900px) {
  .fv__contents-campaign svg:nth-child(1) {
    height: 82px;
  }
}
.fv__contents-campaign svg:nth-child(2) {
  width: 240px;
  height: 40px;
}
@media screen and (min-width: 900px) {
  .fv__contents-campaign svg:nth-child(2) {
    width: 356px;
    height: 61px;
  }
}

.fv-img-smartphone {
  margin-top: 113px;
}
@media screen and (min-width: 900px) {
  .fv-img-smartphone {
    margin-top: 33px;
  }
}

.fv-img-smartphone-picture {
  position: absolute;
  top: 274px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
  height: 408px;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .fv-img-smartphone-picture {
    top: 274px;
    width: 250px;
    height: 510px;
  }
}

.fv-img-box {
  position: absolute;
  top: 397px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 12.8px;
  background: #FFFFFF;
  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;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  gap: 12.8px;
  width: 160px;
  margin-bottom: 19.2px;
  z-index: 99;
}
@media screen and (min-width: 900px) {
  .fv-img-box {
    width: 200px;
    gap: 16px;
    top: 427px;
  }
}

.fv-img-box-tag {
  background: linear-gradient(265deg, #AC3790 -3.52%, #D65A5C 44.94%, #F4C06D 92.38%);
  color: #FFFFFF;
  font-size: 12.8px;
  font-weight: 700;
  padding: 6px 9.6px;
  -ms-flex-item-align: inherit;
      align-self: inherit;
  text-align: center;
  border-top-left-radius: 12.8px;
  border-top-right-radius: 12.8px;
}
@media screen and (min-width: 900px) {
  .fv-img-box-tag {
    padding: 8px 12px;
    font-size: 16px;
  }
}

.fv-img-box-container {
  padding-inline: 14px;
  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;
}
@media screen and (min-width: 900px) {
  .fv-img-box-container {
    padding-inline: 12px;
  }
}

.fv-img-box-between {
  font-size: 12px;
  border-bottom: 2.4px solid #CE2073;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 900px) {
  .fv-img-box-between {
    font-size: 14px;
    border-bottom: 3px solid #CE2073;
  }
}

.fv-img-box-date {
  margin-top: 5px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .fv-img-box-date {
    margin-top: 6px;
    font-size: 16px;
  }
}

.fv__button {
  margin-top: 10.5px;
  margin-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .fv__button {
    margin-top: 16px;
    margin-bottom: 24px;
    height: 40px;
    font-size: 16px;
  }
}

.fv-img-fukidashi {
  position: absolute;
  top: 178px;
  left: -2px;
  width: 142px;
  height: 80px;
}
@media screen and (min-width: 900px) {
  .fv-img-fukidashi {
    top: 242px;
    left: -127px;
    width: 242px;
    height: 130px;
  }
}

.fv-img-present {
  position: absolute;
  top: 170px;
  right: 25px;
  z-index: 5;
  width: 110px;
  height: 110px;
}
@media screen and (min-width: 900px) {
  .fv-img-present {
    top: 260px;
    right: -37px;
    width: 180px;
    height: 180px;
  }
}

.fv-img-food {
  width: 90px;
  height: 141px;
  z-index: 20;
  position: absolute;
  top: 552px;
  left: 0;
  z-index: 20;
}
@media screen and (min-width: 900px) {
  .fv-img-food {
    top: 470px;
    left: -163px;
    width: 210px;
  }
}
.fv-img-food img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .fv-img-food img {
    height: 332px;
  }
}

.fv-img-cats {
  z-index: 20;
  width: 107px;
  position: absolute;
  top: 566px;
  right: 0;
  z-index: 20;
}
@media screen and (min-width: 900px) {
  .fv-img-cats {
    top: 550px;
    right: -164px;
    width: 233px;
  }
  .fv-img-cats img {
    height: 294px;
  }
}

.about {
  margin-top: 188px;
  padding-bottom: 100px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .about {
    margin-top: 177px;
    padding-bottom: 194px;
  }
}

.about__inner {
  position: relative;
  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;
  max-width: 375px;
}
@media screen and (min-width: 900px) {
  .about__inner {
    max-width: 1512px;
  }
}

.about__container {
  position: relative;
  padding-block: 40px;
  padding-inline: 12px;
  border-radius: 24px;
  background: #FFF;
  text-align: center;
  overflow: visible;
  z-index: 50;
  width: 335px;
}
@media screen and (min-width: 900px) {
  .about__container {
    width: 848px;
    margin-inline: auto;
    padding-block: 40px;
    padding-inline: 114px;
  }
}

.about__heading {
  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;
}

.about__head-left {
  position: absolute;
  top: 31px;
  left: 33px;
}
@media screen and (min-width: 900px) {
  .about__head-left {
    top: 36px;
    left: 86px;
  }
}
.about__head-left img {
  display: block;
  width: 88px;
  height: 71px;
}
@media screen and (min-width: 900px) {
  .about__head-left img {
    width: 144px;
    height: 122px;
  }
}

.about__head-right {
  position: absolute;
  top: 30px;
  right: 20px;
}
@media screen and (min-width: 900px) {
  .about__head-right {
    top: 44px;
    right: 86px;
  }
}
.about__head-right img {
  display: block;
  width: 88px;
  height: 71px;
}
@media screen and (min-width: 900px) {
  .about__head-right img {
    width: 144px;
    height: 122px;
  }
}

.section__head-title-ja {
  padding-bottom: 6px;
}

.about__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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .about__contents {
    gap: 32px;
    margin-top: 34px;
  }
}

.about__contents-title--sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .about__contents-title--sp {
    display: none;
  }
}

.about__contents-title--pc {
  display: none;
}
@media screen and (min-width: 900px) {
  .about__contents-title--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
  }
}

.about__contents-text {
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .about__contents-text {
    font-size: 16px;
  }
}
.about__contents-text:nth-child(n+2) {
  margin-top: 18px;
}
@media screen and (min-width: 900px) {
  .about__contents-text:nth-child(n+2) {
    margin-top: 27px;
  }
}
.about__contents-text:nth-child(4) {
  line-height: 1.55;
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .about__contents-text:nth-child(4) {
    margin-top: 27px;
  }
}
.about__contents-text--underline {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
  cursor: pointer;
}
.about__contents-text--underline:hover {
  color: #67B0C7;
}
.about__contents-text--bold {
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .about__contents-text--bold {
    font-size: 16px;
  }
}

.about__contents-present {
  font-size: 14px;
  font-weight: 700;
  padding: 8px 0px 6px;
  border-bottom: 2px dashed #9ED0E0;
  margin-top: 4px;
}
@media screen and (min-width: 900px) {
  .about__contents-present {
    font-size: 20px;
    padding: 12px 0px 11px;
  }
}

.about__contents-button {
  margin-top: 1px;
}
@media screen and (min-width: 900px) {
  .about__contents-button {
    margin-top: -2px;
    height: 56px;
    padding: 8px 38px 10px 38px;
    border: 3px solid #4A3636;
    font-size: 20px;
  }
}

.about-img-upper {
  position: absolute;
  top: -10px;
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (min-width: 900px) {
  .about-img-upper {
    top: -40px;
    right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .about-img-upper {
    top: -80px;
    right: 166px;
  }
}
.about-img-upper picture img {
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .about-img-upper picture img {
    width: 100px;
    height: 220px;
  }
}

.about-img-body-left {
  position: absolute;
  top: 395px;
  left: -140px;
  width: 200px;
  height: 200px;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .about-img-body-left {
    width: 480px;
    height: 480px;
    top: 74px;
    left: -339px;
  }
}

.about-img-body-right {
  position: absolute;
  top: 273px;
  right: -140px;
  width: 200px;
  height: 200px;
}
@media screen and (min-width: 900px) {
  .about-img-body-right {
    width: 480px;
    height: 480px;
    top: 73px;
    right: -284px;
  }
}

.about-img-body-upper {
  display: none;
}
@media screen and (min-width: 900px) {
  .about-img-body-upper {
    display: block;
    position: absolute;
    top: -20px;
    left: -20px;
  }
}

.about-img-bottom-load {
  position: absolute;
  bottom: 62px;
  left: 0;
  width: 138px;
  height: 215px;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .about-img-bottom-load {
    bottom: 255px;
  }
}
@media screen and (min-width: 1200px) {
  .about-img-bottom-load {
    width: 427px;
    height: 817px;
    top: 320px;
    left: -103px;
  }
}

.about-img-bottom-arrow {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -37px;
}
@media screen and (min-width: 900px) {
  .about-img-bottom-arrow {
    bottom: -50px;
  }
}

.about-img-bottom-goods {
  position: absolute;
  width: 133px;
  height: 65.003px;
  bottom: 159px;
  right: 57px;
}
@media screen and (min-width: 900px) {
  .about-img-bottom-goods {
    bottom: calc(50% - 290px);
  }
}
@media screen and (min-width: 1200px) {
  .about-img-bottom-goods {
    width: 308px;
    height: 150.604px;
    bottom: 386px;
    right: calc(50% - 681px);
  }
}

.about-img-bottom-button {
  position: absolute;
  width: 48px;
  height: 48px;
  right: 21px;
  bottom: 218px;
}
@media screen and (min-width: 900px) {
  .about-img-bottom-button {
    bottom: calc(50% - 230px);
  }
}
@media screen and (min-width: 1200px) {
  .about-img-bottom-button {
    width: 101px;
    height: 100.047px;
    bottom: 592px;
    right: calc(50% - 605px);
    z-index: 10;
  }
}

.about-img-bottom-waveline {
  display: none;
}
@media screen and (min-width: 900px) {
  .about-img-bottom-waveline {
    display: block;
    z-index: 1;
  }
  .about-img-bottom-waveline svg {
    position: absolute;
  }
  .about-img-bottom-waveline svg:nth-child(1) {
    bottom: 175px;
    right: -499px;
  }
  .about-img-bottom-waveline svg:nth-child(2) {
    bottom: 209px;
    right: -566px;
  }
}

.about__gallery {
  position: relative;
  margin-top: 138px;
  z-index: 20;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .about__gallery {
    margin-top: 167px;
  }
}

.about__gallery-title {
  width: 100%;
  height: auto;
  display: block;
  padding-right: 9px;
  padding-left: 10.68px;
}
.about__gallery-title img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 900px) {
  .about__gallery-title {
    width: 891px;
    height: 97px;
    padding-inline: 0;
    display: inline-block;
    text-align: center;
  }
}

.about__gallery-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

.about__gallery-swiper {
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: -99px;
}
@media screen and (min-width: 900px) {
  .about__gallery-swiper {
    height: 200px;
    bottom: -187px;
    left: 0;
    z-index: 30;
  }
}

.about__gallery-slide {
  width: auto;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .about__gallery-slide {
    width: 200px;
  }
}
.about__gallery-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 900px) {
  .about__gallery-slide img {
    width: 200px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.step {
  margin-top: 64.8px;
  padding-bottom: 17.67px;
}
@media screen and (min-width: 900px) {
  .step {
    margin-top: 113px;
    padding-bottom: 124px;
  }
}

.step__inner {
  padding-bottom: 20px;
  max-width: 375px;
}
@media screen and (min-width: 900px) {
  .step__inner {
    max-width: 1200px;
    padding: 10px;
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .step__inner {
    padding: 0;
    max-width: 1512px;
  }
}

.step__container {
  margin-top: 30px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .step__container {
    position: relative;
    margin-top: 40px;
    z-index: 60;
    max-width: 1024px;
    margin-inline: auto;
  }
}

@media screen and (min-width: 900px) {
  .step__head-icon img {
    width: 48px;
    height: 48px;
  }
}

.step-img-map {
  position: absolute;
  top: -138.33px;
  left: -20px;
}
@media screen and (min-width: 900px) {
  .step-img-map img {
    width: 460px;
    height: 689px;
  }
}
@media screen and (min-width: 900px) {
  .step-img-map {
    position: absolute;
    top: -245px;
    left: -208px;
    z-index: 50;
  }
}

.step-img__cat-brown {
  position: absolute;
  top: -138.33px;
  right: 4px;
  width: 105px;
  height: 63px;
}
@media screen and (min-width: 900px) {
  .step-img__cat-brown {
    width: 238px;
    height: 141px;
    top: -210px;
    right: -12px;
  }
}

.step-img__cat-black {
  position: absolute;
  top: -133.33px;
  right: -51px;
  width: 94px;
  height: 80px;
}
@media screen and (min-width: 900px) {
  .step-img__cat-black {
    width: 214px;
    height: 181px;
    top: -200px;
    right: -138px;
  }
}

@media screen and (min-width: 900px) {
  .step-img__pawpads img {
    width: 100px;
    height: 220px;
  }
}
.step-img__pawpads-top {
  position: absolute;
  top: -64.33px;
  right: 0;
}
@media screen and (min-width: 900px) {
  .step-img__pawpads-top {
    top: -35px;
    right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .step-img__pawpads-top {
    top: -35px;
    right: -208px;
  }
}
.step-img__pawpads-middle {
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
  position: absolute;
  top: 411px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .step-img__pawpads-middle {
    top: 0;
    bottom: -210px;
    left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .step-img__pawpads-middle {
    top: 0;
    bottom: -57px;
    left: -208px;
  }
}
.step-img__pawpads-bottom {
  position: absolute;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
  top: 741px;
  right: 0;
}
@media screen and (min-width: 900px) {
  .step-img__pawpads-bottom {
    display: none;
  }
}

.step__cards {
  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;
}
@media screen and (min-width: 900px) {
  .step__cards {
    -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: 4px;
  }
}
@media screen and (min-width: 1200px) {
  .step__cards {
    -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;
  }
}

.step__card {
  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;
  z-index: 90;
}
@media screen and (min-width: 900px) {
  .step__card {
    gap: 0;
  }
}
@media screen and (min-width: 1200px) {
  .step__card {
    width: 320px;
    gap: 0;
  }
}

.step-card:nth-child(2) {
  margin-top: -1px;
}
@media screen and (min-width: 900px) {
  .step-card:nth-child(1), .step-card:nth-child(3) {
    margin-top: 2px;
  }
  .step-card:nth-child(2) {
    margin-top: 70px;
  }
}

.step-card__img {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 216px;
  height: 210px;
}
@media screen and (min-width: 1200px) {
  .step-card__img {
    width: 280px;
    height: 300px;
  }
}

.step-card__img-wave {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 216px;
  height: 210px;
}
@media screen and (min-width: 900px) {
  .step-card__img-wave {
    position: relative;
  }
  .step-card__img-wave::before {
    content: "";
    position: absolute;
    background: url(../img/step-wave_pc.svg) no-repeat center center;
    width: 100px;
    height: 24px;
    left: -96px;
    top: 90px;
  }
  .step-card__img-wave::after {
    content: "";
    position: absolute;
    background: url(../img/step-wave_pc.svg) no-repeat center center;
    width: 100px;
    height: 24px;
    right: -78px;
    top: 82px;
  }
}
@media screen and (min-width: 1200px) {
  .step-card__img-wave {
    position: relative;
    width: 280px;
    height: 300px;
    z-index: 50;
  }
  .step-card__img-wave::before {
    content: "";
    position: absolute;
    background: url(../img/step-wave_pc.svg) no-repeat center center;
    width: 113px;
    height: 24px;
    left: -116px;
    top: 138px;
  }
  .step-card__img-wave::after {
    content: "";
    position: absolute;
    background: url(../img/step-wave_pc.svg) no-repeat center center;
    width: 113px;
    height: 24px;
    right: -76px;
    top: 138px;
  }
}

.step-card__title {
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .step-card__title {
    margin-top: 26px;
    font-size: 20px;
  }
}

.step-card__text {
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .step-card__text {
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .step-card__text {
    font-size: 16px;
    padding-block: 16px;
  }
}
.step-card__text--underline {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
  cursor: pointer;
}
.step-card__text--underline:hover {
  color: #67B0C7;
}
@media screen and (min-width: 900px) {
  .step-card__text--underline {
    font-size: 16px;
  }
}
.step-card__text--bold {
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .step-card__text--bold {
    font-size: 16px;
    margin-left: -3px;
  }
}
.step-card__text--sp {
  display: block;
}
@media screen and (min-width: 900px) {
  .step-card__text--sp {
    display: none;
  }
}
.step-card__text--pc {
  display: none;
}
@media screen and (min-width: 900px) {
  .step-card__text--pc {
    display: block;
  }
}

.step-card__instagram {
  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;
  padding: 8px 12px;
  gap: 8px;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .step-card__instagram {
    margin-top: 2px;
  }
}

.step-card__instagram-icon {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 900px) {
  .step-card__instagram-icon {
    width: 24px;
    height: 24px;
  }
}

.step-card__instagram-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .step-card__instagram-text {
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .step-card__wave-1, .step-card__wave-2 {
    display: none;
  }
}

.step__button {
  margin-top: 16px;
  margin-inline: auto;
  height: auto;
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .step__button {
    margin-top: 34px;
    height: 56px;
    padding: 8px 38px 10px 38px;
    border: 3px solid #4A3636;
    font-size: 20px;
  }
}

.prizes__inner {
  max-width: 375px;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .prizes__inner {
    max-width: 100%;
  }
}

.prizes__container {
  max-width: 375px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .prizes__container {
    max-width: 1024px;
    margin: 0 auto;
  }
}

.prizes__head {
  padding-top: 14px;
}
@media screen and (min-width: 900px) {
  .prizes__head {
    padding-top: 22px;
  }
}

.prizes__head-triangle-left {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes__head-triangle-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 28px;
    left: 0;
    -webkit-transform: scale(1, -1);
            transform: scale(1, -1);
  }
}
.prizes__head-triangle-right {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes__head-triangle-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 28px;
    right: 0;
  }
}

.prizes__head-bg {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 237.6px;
  height: 83px;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .prizes__head-bg img {
    width: 365.624px;
    height: 148.967px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__head-bg {
    width: 365.624px;
    height: 148.967px;
  }
}

.prizes__head-icon {
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .prizes__head-icon img {
    width: 48px;
    height: 48px;
  }
}

.prizes__head-title-en {
  z-index: 10;
}

.prizes__head-title-ja {
  z-index: 10;
}

.prizes__contents::before {
  content: "";
  position: absolute;
  top: 83px;
  left: 0;
  z-index: 5;
  width: 100%;
  height: calc(100% - 83px);
  z-index: 0;
  border-radius: 24px;
  background: #FFF;
  max-width: 375px;
}
@media screen and (min-width: 900px) {
  .prizes__contents::before {
    top: 148px;
    max-width: 1024px;
    height: calc(100% - 148px);
    margin: 0 auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.prizes__container-inner {
  padding-top: 16px;
  padding-bottom: 35px;
  padding-inline: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .prizes__container-inner {
    padding-top: 41px;
    padding-bottom: 53px;
    padding-inline: 56px;
  }
}

.prizes__container-text {
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prizes__container-text {
    font-size: 16px;
  }
}

.prizes__container-boxes {
  padding-top: 46px;
}
@media screen and (min-width: 900px) {
  .prizes__container-boxes {
    padding-top: 82px;
  }
}

.prizes-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 39px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .prizes-boxes {
    gap: 0;
  }
}

.prizes-box {
  position: relative;
  border-radius: 8px;
  z-index: 1;
  width: calc(50% - 7.5px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .prizes-box_large {
    width: calc(50% - 16px);
    border-radius: 24px;
  }
  .prizes-box_large:hover::before {
    border-radius: 24px;
  }
  .prizes-box_large .prizes-box__body-textbox {
    min-height: 120px;
    border-radius: 0 0 24px 24px;
  }
  .prizes-box_large .prizes-box__body-image {
    border-radius: 24px 24px 0 0;
  }
  .prizes-box_large .prizes-box__body-text {
    font-size: 20px;
  }
  .prizes-box_large .prizes-box-body-zoom svg {
    border-bottom-right-radius: 24px;
    width: 100px;
    height: 100px;
  }
  .prizes-box_large .prizes-box__head {
    top: -50px;
  }
}
@media screen and (min-width: 900px) and (min-width: 900px) {
  .prizes-box_large .prizes-box__head img {
    width: 100px;
    height: 100px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-box_small {
    width: calc(33.333333333% - 24px);
    margin-top: 79px;
    border-radius: 16px;
  }
  .prizes-box_small:hover::before {
    border-radius: 16px;
  }
  .prizes-box_small .prizes-box__body-textbox {
    min-height: 80px;
  }
  .prizes-box_small .prizes-box__body-image {
    border-radius: 16px 16px 0 0;
  }
  .prizes-box_small .prizes-box__body-text {
    font-size: 16px;
  }
  .prizes-box_small .prizes-box-body-zoom svg {
    border-bottom-right-radius: 16px;
    width: 64px;
    height: 64px;
  }
  .prizes-box_small .prizes-box__head {
    top: -40px;
  }
  .prizes-box_small .prizes-box__head img {
    width: 80px;
    height: 80px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-radius: 16px;
    -webkit-transition: border-color 0.3s linear;
    transition: border-color 0.3s linear;
    z-index: 2;
  }
  .prizes-box:hover::before {
    border-color: #9ED0E0;
  }
  .prizes-box:hover .prizes-box-body-zoom svg {
    fill: #9ED0E0;
  }
  .prizes-box:hover .prizes-box__body-image img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .prizes-box:nth-of-type(2) {
    margin-left: 32px;
  }
  .prizes-box:nth-of-type(4), .prizes-box:nth-of-type(5) {
    margin-left: 36px;
  }
}

.prizes-box__head {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 50;
}

.prizes-box__body-image {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  display: block;
}
.prizes-box__body-image img {
  border-radius: inherit;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.prizes-box__body-textbox {
  position: relative;
  min-height: 56px;
  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;
  background: #F5F5F5;
  border-radius: 0 0 8px 8px;
  padding: 5px;
}

.prizes-box__body-text {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.prizes-box-body-zoom {
  position: absolute;
  right: 0;
  bottom: -7px;
  overflow: hidden;
  display: block;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.prizes-box-body-zoom svg {
  border-bottom-right-radius: 8px;
  width: 36px;
  height: 36px;
  fill: #67B0C7;
}

.prizes__button {
  margin-top: 18px;
  height: auto;
  white-space: nowrap;
  position: relative;
}
@media screen and (min-width: 900px) {
  .prizes__button {
    margin-top: 40px;
    height: 56px;
    padding: 8px 38px 10px 38px;
    border: 3px solid #4A3636;
    font-size: 20px;
  }
}

.prizes-modal {
  position: fixed;
  inset: 0;
  padding: 0;
  margin: auto;
  width: 336px;
  min-height: 480px;
  overflow: hidden;
  padding-bottom: 56px;
  border-radius: 24px;
  background: #FFF;
  border: none;
  z-index: 60;
  overscroll-behavior-y: none;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prizes-modal {
    width: 480px;
    min-height: 650px;
    padding-bottom: 54px;
  }
}
.prizes-modal::-ms-backdrop {
  opacity: 0.2;
  background: #000;
}
.prizes-modal::backdrop {
  opacity: 0.2;
  background: #000;
}

.prizes-modal__image img {
  width: 336px;
  height: 210px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__image img {
    width: 480px;
    height: 300px;
  }
}

.prizes-modal__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__inner {
    padding-inline: 40px;
  }
}

.prizes-modal__body {
  text-align: center;
}

.prizes-modal__body-title {
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .prizes-modal__body-title {
    font-size: 20px;
  }
}

.prizes-modal__body {
  margin-top: 39px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__body {
    margin-top: 32px;
  }
}

.prizes-modal__body-text {
  margin-top: 12px;
  color: #000;
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__body-text {
    font-size: 16px;
  }
}

.prizes-modal__close-button {
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__close-button {
    margin-top: 24px;
  }
}

.prizes-background-picture {
  margin-top: -44px;
}
.prizes-background-picture img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 900px) {
  .prizes-background-picture img {
    height: 640px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-background-picture {
    margin-top: 0;
  }
}

.spots {
  background: #67B0C7;
  position: relative;
  padding-bottom: 19px;
}
@media screen and (min-width: 900px) {
  .spots {
    padding-bottom: 2px;
  }
}
.spots::before, .spots::after {
  content: "";
  background: url(../img/SP/spots-wave_sp.svg) repeat top center;
  position: absolute;
  width: 100%;
  height: 45.741px;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .spots::before, .spots::after {
    background: url(../img/spots-wave_pc.svg) repeat top center;
    height: 120px;
  }
}
.spots::before {
  top: -46px;
}
@media screen and (min-width: 900px) {
  .spots::before {
    top: -120px;
  }
}
.spots::after {
  bottom: -46px;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}
@media screen and (min-width: 900px) {
  .spots::after {
    bottom: -120px;
  }
}

@media screen and (min-width: 900px) {
  .spots__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 35px;
    padding-left: 16.1375661376%;
  }
}

.spots__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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .spots__head {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 14px;
  }
}

.spots__head-icon {
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 900px) {
  .spots__head-icon {
    width: 56px;
    height: 56px;
  }
}
.spots__head-icon svg {
  width: 100%;
}

.spots__head-title {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  font-family: "Kiwi Maru", serif;
}
@media screen and (min-width: 900px) {
  .spots__head-title {
    font-size: 40px;
    letter-spacing: 0.26em;
  }
}

.spots__slider {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .spots__slider {
    margin-top: 0;
    position: relative;
    overflow: hidden;
    z-index: 50;
  }
}

.spots-swiper__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 900px) {
  .spots-swiper__wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.spots__slide {
  width: auto;
}
@media screen and (min-width: 900px) {
  .spots__slide {
    width: 344px;
  }
}

.spots-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 240px;
  min-height: 402px;
  padding-bottom: 31.159px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  border-radius: 12px;
  background: #FFFFFF;
}
@media screen and (min-width: 900px) {
  .spots-card {
    width: 344px;
    min-height: 542px;
    padding-bottom: 40px;
    gap: 25px;
    border-radius: 24px;
  }
}

@media screen and (min-width: 900px) {
  .spots-card__image {
    width: 100%;
    height: 240px;
  }
}
.spots-card__image img {
  display: block;
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 900px) {
  .spots-card__image img {
    display: block;
    border-radius: 24px 24px 0 0;
    height: 240px;
    width: 100%;
  }
}

.spots-card__title {
  padding-inline: 24px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .spots-card__title {
    padding-inline: 32px;
    font-size: 20px;
  }
}

.spots-card__text {
  padding-inline: 24px;
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .spots-card__text {
    padding-inline: 32px;
    font-size: 16px;
  }
}

.spots__container {
  text-align: center;
}

.spots__arrow {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots__arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
    max-width: 700px;
    margin-top: -35px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__arrow {
    max-width: 944px;
  }
}

@media screen and (min-width: 1200px) {
  .spots__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1024px;
    margin-top: 40px;
    padding: 0;
  }
}

.spots__prev,
.spots__next {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots__prev,
  .spots__next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: static;
    width: 80px;
    height: 80px;
    z-index: 60;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .spots__prev::after,
  .spots__next::after {
    display: none;
  }
}

@media screen and (min-width: 900px) {
  .spots__prev {
    background: url(../img/spots__prev.svg) no-repeat center center/contain;
    left: 0;
  }
}

@media screen and (min-width: 900px) {
  .spots__next {
    background: url(../img/spots__next.svg) no-repeat center center/contain;
    right: 0;
  }
}

.spots__container-pawpads {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots__container-pawpads {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    left: 36px;
    bottom: 0;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
    width: 80px;
    height: 176px;
  }
  .spots__container-pawpads img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .spots__container-pawpads {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    left: 36px;
    bottom: 0;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
    width: 100px;
    height: 220px;
  }
  .spots__container-pawpads img {
    width: 100%;
    height: 100%;
  }
}

.spots__container-logo {
  display: block;
  width: 254.439px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .spots__container-logo {
    width: 360px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__container-logo {
    width: 495px;
    margin: 0;
  }
}
.spots__container-logo img {
  width: 100%;
}

.spots__contents-text {
  margin-top: 15px;
  font-size: 11.444px;
  color: #FFFFFF;
}
@media screen and (min-width: 900px) {
  .spots__contents-text {
    margin-top: 15px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__contents-text {
    margin-top: 1px;
    font-size: 16px;
  }
}

.spots__contents-button {
  margin-top: 24px;
  white-space: nowrap;
}
@media screen and (min-width: 900px) {
  .spots__contents-button {
    width: 437px;
    height: 56px;
    padding: 8px 38px 10px 38px;
    border: 3px solid #4A3636;
    font-size: 20px;
    margin-left: 9px;
    margin-top: 27px;
  }
}

.qa {
  margin-top: 87px;
  padding-bottom: 30px;
}
@media screen and (min-width: 900px) {
  .qa {
    margin-top: 240px;
    padding-bottom: 0;
  }
}

details {
  max-height: 100px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
details[open] {
  max-height: 1000px;
}

.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: 13px;
}
@media screen and (min-width: 900px) {
  .qa__boxes {
    margin-top: 43px;
    gap: 22px;
  }
}

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

.qa-box[open] .qa-box__head-accordion {
  background: url(../img/SP/qa-head-close.svg) no-repeat center center;
  background-size: 27px 27px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 27px;
  height: 27px;
}
@media screen and (min-width: 900px) {
  .qa-box[open] .qa-box__head-accordion {
    background: url(../img/qa-head-close_pc.svg) no-repeat center center;
    width: 48px;
    height: 48px;
    background-size: 48px 48px;
  }
}

.qa-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding: 9px 47px 9px 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .qa-box__head {
    padding: 24px;
    gap: 16px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.qa-box__head-icon {
  padding-top: 2px;
}

.qa-box__head-text {
  font-weight: 700;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .qa-box__head-text {
    font-size: 20px;
  }
}

.qa-box__head-accordion {
  position: absolute;
  background: url(../img/SP/qa-box__head-open.svg) no-repeat center center;
  background-size: 27px 27px;
  width: 27px;
  height: 27px;
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background 0.2s ease;
  transition: transform 0.2s ease, background 0.2s ease, -webkit-transform 0.2s ease;
  right: 13px;
}
@media screen and (min-width: 900px) {
  .qa-box__head-accordion {
    background: url(../img/qa-head-open_pc.svg) no-repeat center center;
    width: 44px;
    height: 44px;
    background-size: 44px 44px;
    right: 22px;
  }
}

.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  padding: 19px 15px 13px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F5F5F5;
  border-radius: 0 0 12px 12px;
}
@media screen and (min-width: 900px) {
  .qa-box__a {
    padding-inline: 24px;
    padding-top: 23px;
    padding-bottom: 24px;
    gap: 16px;
    border-radius: 0 0 16px 16px;
  }
}

.qa-box__head-icon,
.qa-box__a-icon {
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  line-height: 1.25;
  color: #67B0C7;
}
@media screen and (min-width: 900px) {
  .qa-box__head-icon,
  .qa-box__a-icon {
    font-size: 32px;
  }
}

.qa-box__a-text {
  font-size: 14px;
}
.qa-box__a-text-underline {
  text-decoration-line: underline;
  text-underline-position: from-font;
  cursor: pointer;
}
.qa-box__a-text-underline:hover {
  color: #67B0C7;
}
@media screen and (min-width: 900px) {
  .qa-box__a-text {
    font-size: 16px;
  }
}

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

.entry-requirements__container {
  padding: 17px 15.5px 16px 16px;
  border: 8px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 900px) {
  .entry-requirements__container {
    padding: 32px 48px;
  }
}

.entry-requirements__contents {
  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;
  padding-top: 23px;
}
@media screen and (min-width: 900px) {
  .entry-requirements__contents {
    padding-top: 40px;
    gap: 12px;
  }
}

.entry-requirements__box {
  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;
  padding-bottom: 15px;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (min-width: 900px) {
  .entry-requirements__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
    padding-bottom: 12px;
  }
}

.entry-requirements__box-is-option {
  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;
  padding-bottom: 15px;
  border-bottom: 1px solid #CCCCCC;
  margin-top: -1px;
}
@media screen and (min-width: 900px) {
  .entry-requirements__box-is-option {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
    padding-bottom: 12px;
    margin: 0;
  }
}

.entry-requirements__box-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
  padding-bottom: 15px;
  margin-top: -1px;
}
@media screen and (min-width: 900px) {
  .entry-requirements__box-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}
.entry-requirements__box-list ul li {
  position: relative;
  padding-left: 18px;
  line-height: 19px;
}
@media screen and (min-width: 900px) {
  .entry-requirements__box-list ul li {
    line-height: 26px;
    padding-left: 23px;
  }
}
.entry-requirements__box-list ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
}
@media screen and (min-width: 900px) {
  .entry-requirements__box-list ul li::before {
    left: 9px;
  }
}

.entry-requirements__box-title {
  font-size: 14px;
  font-weight: 700;
  padding-left: 16px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .entry-requirements__box-title {
    font-size: 16px;
    min-width: 240px;
    padding-left: 32px;
  }
}
.entry-requirements__box-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #9ED0E0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}
@media screen and (min-width: 900px) {
  .entry-requirements__box-title::before {
    left: 16px;
  }
}

.entry-requirements__box-text {
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .entry-requirements__box-text {
    font-size: 16px;
  }
}
.entry-requirements__box-text--underline {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
  text-underline-offset: 0.5px;
  cursor: pointer;
}
.entry-requirements__box-text--underline:hover {
  color: #67B0C7;
}

.entry-requirements-bottom-bg {
  padding-top: 31px;
}
@media screen and (min-width: 900px) {
  .entry-requirements-bottom-bg {
    padding-top: 119px;
  }
}

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

@media screen and (min-width: 900px) {
  .contact__inner {
    max-width: 848px;
    padding: 0;
    margin: 0 auto;
  }
}

.contact__text {
  font-size: 12px;
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact__text {
    margin-top: 34px;
    font-size: 16px;
  }
}

.contact__fields {
  margin-top: 23px;
  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: 900px) {
  .contact__fields {
    margin-top: 41px;
  }
}

.contact__field-magazine {
  margin-top: -1px;
}

.form-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: 900px) {
  .form-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}

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

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

.form-field__tag {
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  background: #CE2073;
  color: #FFFFFF;
  padding: 4px 8px;
}

.form-text__input {
  padding: 15px 16px 16px 16px;
  border-radius: 8px;
  background: #F5F5F5;
  border: none;
  outline: none;
  font-size: 14px;
  width: 100%;
  height: 56px;
  color: #4A3636;
  position: relative;
  z-index: 1;
}
.form-text__input::-webkit-input-placeholder {
  color: #CCCCCC;
}
.form-text__input::-moz-placeholder {
  color: #CCCCCC;
}
.form-text__input:-ms-input-placeholder {
  color: #CCCCCC;
}
.form-text__input::-ms-input-placeholder {
  color: #CCCCCC;
}
.form-text__input::placeholder {
  color: #CCCCCC;
}
.form-text__input:focus {
  background: #E9F6F8;
  border: 1px solid #9ED0E0;
}
.form-text__input.error {
  background: #FFF0F7;
  border: 1px solid #CE2073;
}
@media screen and (min-width: 900px) {
  .form-text__input {
    width: 628px;
    font-size: 16px;
    padding: 20px 16px 16px 16px;
  }
}

.form-select {
  vertical-align: top;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
  background: #F5F5F5;
  padding: 16px;
  padding-right: 52px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  position: relative;
  height: 100%;
  height: 56px;
  background-image: url(../img/form-select-arrow.svg), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat, no-repeat;
  background-size: 33px 33px, cover;
  background-position: center right 10px, center center;
}
.form-select:focus {
  background-image: url(../img/form-select-arrow.svg), linear-gradient(to left, #9ED0E0 52px, #f5f5f5 52px);
  border: 1px solid #9ED0E0;
}
.form-select.error {
  background-image: url(../img/form-select-arrow.svg), linear-gradient(to left, #CE2073 52px, #FFF0F7 52px);
  border: 1px solid #CE2073;
}
@media screen and (min-width: 900px) {
  .form-select {
    width: 628px;
    font-size: 16px;
    padding: 17px 16px 16px 16px;
  }
}

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

.form-radio {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  cursor: pointer;
}

.form-radio__input:checked + .form-field__radio-text::after {
  opacity: 1;
}

.form-radio__input:checked + .form-field__radio-text {
  font-weight: 700;
}

.form-field__radio-text {
  font-size: 14px;
  padding-left: 32px;
  position: relative;
}
.form-field__radio-text::before, .form-field__radio-text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.form-field__radio-text::before {
  width: 24px;
  height: 24px;
  background: #F5F5F5;
  left: 0;
  opacity: 1;
  border: 1px solid transparent;
}
.form-field__radio-text::after {
  width: 12px;
  height: 12px;
  background: #9ED0E0;
  left: 6px;
  opacity: 0;
}
@media screen and (min-width: 900px) {
  .form-field__radio-text {
    font-size: 16px;
    padding-left: 33px;
  }
}

.form-radio__input:focus + .form-field__radio-text::before {
  border: 1px solid #9ED0E0;
}

.form-radio__input:focus + .form-field__radio-text::after {
  background: transparent;
}

.form-textarea {
  font-size: 14px;
  width: 100%;
  height: 160px;
  border-radius: 8px;
  border: none;
  background: #F5F5F5;
  padding: 15px 16px 16px;
  outline: none;
}
.form-textarea::-webkit-input-placeholder {
  color: #CCCCCC;
}
.form-textarea::-moz-placeholder {
  color: #CCCCCC;
}
.form-textarea:-ms-input-placeholder {
  color: #CCCCCC;
}
.form-textarea::-ms-input-placeholder {
  color: #CCCCCC;
}
.form-textarea::placeholder {
  color: #CCCCCC;
}
.form-textarea:focus {
  border: 1px solid #9ED0E0;
  background: #E9F6F8;
  color: #4A3636;
}
.form-textarea.error {
  background: #FFF0F7;
  border: 1px solid #CE2073;
}
@media screen and (min-width: 900px) {
  .form-textarea {
    width: 628px;
    font-size: 16px;
    padding: 18px 16px 16px;
  }
}

.contact__bottom {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -3px;
}
@media screen and (min-width: 900px) {
  .contact__bottom {
    gap: 40px;
    margin-top: 18px;
  }
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input.error {
  background: #FFF0F7;
  border: 1px solid #CE2073;
}

.form-checkbox__input.error + .form-checkbox__text::before {
  background: #FFF0F7;
  border: 1px solid #CE2073;
}

.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}

.form-checkbox__input:focus + .form-checkbox__text::before {
  border: 1px solid #9ED0E0;
}

.form-checkbox__input:focus {
  opacity: 1;
}

.form-checkbox__text {
  font-size: 14px;
  position: relative;
  padding-left: 36px;
}
.form-checkbox__text--underline {
  text-decoration-line: underline;
  text-underline-position: from-font;
  cursor: pointer;
}
.form-checkbox__text--underline:hover {
  color: #67B0C7;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
}
.form-checkbox__text::before {
  background: #F5F5F5;
  border-radius: 4px;
  border: none;
}
.form-checkbox__text::after {
  background: url(../img/SP/contact-form-checkbox.svg) no-repeat center center/contain;
  opacity: 0;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .contact__button-submit {
    width: 240px;
  }
}

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

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

.footer__pawpads {
  display: none;
}
@media screen and (min-width: 900px) {
  .footer__pawpads {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 20px;
    top: -100px;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
  .footer__pawpads svg {
    width: 100px;
    height: 220px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__pawpads {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 80px;
    top: -42px;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
  .footer__pawpads svg {
    width: 100px;
    height: 220px;
  }
}

.footer__sns-items {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__sns-link {
  width: 33px;
  height: 32px;
  display: block;
}
@media screen and (min-width: 900px) {
  .footer__sns-link {
    width: 40px;
    height: 40px;
  }
  .footer__sns-link svg {
    width: 100%;
    height: 100%;
  }
}

.footer__logo {
  display: block;
  margin-top: 14px;
  max-width: 328px;
  height: 34.4px;
  margin-inline: auto;
}
.footer__logo svg {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .footer__logo {
    display: block;
    max-width: 755px;
    height: 82.231px;
    margin-top: 40px;
  }
}

.footer__map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 16px;
  background: #FFFFFF;
}
@media screen and (min-width: 900px) {
  .footer__map {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-top: -2px;
  }
}

.footer__map-image iframe {
  width: 100%;
  border-radius: 16px 16px 0 0;
}
@media screen and (min-width: 900px) {
  .footer__map-image {
    width: 512px;
    height: 400px;
  }
  .footer__map-image iframe {
    height: 100%;
  }
}

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

.footer__map-body_inner {
  padding-top: 12px;
  padding-bottom: 29px;
  padding-inline: 6.4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 900px) {
  .footer__map-body_inner {
    gap: 24px;
    max-width: 389px;
    margin: 0 auto;
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__map-body_logo {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer__map-body_logo {
    text-align: left;
    margin-top: -6px;
  }
  .footer__map-body_logo img {
    width: 183px;
    height: 24px;
  }
}

.footer__map-body_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: 900px) {
  .footer__map-body_container {
    gap: 12px;
  }
}

.map-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.map-contents__title {
  width: 86px;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  padding-left: 22px;
}
@media screen and (min-width: 900px) {
  .map-contents__title {
    font-size: 16px;
    width: 120px;
    padding-left: 16px;
  }
}
.map-contents__title::before {
  position: absolute;
  content: "";
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #9ED0E0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}
@media screen and (min-width: 900px) {
  .map-contents__title::before {
    left: 0;
  }
}

.map-contents__text {
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .map-contents__text {
    font-size: 16px;
  }
}

.pagetop {
  padding-top: 24px;
  padding-bottom: 26px;
  display: block;
  text-align: center;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.pagetop img {
  width: 75px;
  height: 78px;
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .pagetop {
    position: fixed;
    right: 40px;
    bottom: 60px;
    z-index: 99;
    padding: 0;
    opacity: 0;
  }
  .pagetop img {
    width: 100px;
    height: 104px;
  }
}

.footer__bottom {
  margin-top: 44px;
  padding-bottom: 24px;
  color: #FFFFFF;
  background: #67B0C7;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    font-size: 17px;
    padding-bottom: 32px;
    margin-top: 239px;
  }
}
.footer__bottom::before {
  content: "";
  background: url(../img/SP/spots-wave_sp.svg) repeat top center;
  position: absolute;
  width: 100%;
  height: 45.71px;
  top: -45.71px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .footer__bottom::before {
    background: url(../img/spots-wave_pc.svg) repeat top center;
    height: 120px;
    top: -120px;
  }
}

.footer__copyright {
  display: block;
  font-size: 10px;
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    font-size: 14px;
  }
}