@charset "UTF-8";
body {
  font-size: 16px;
  line-height: 1.6;
  color: #4A3636;
  font-family: "Noto Sans JP";
  background: #E9F6F8;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  padding-top: 64px;
}
body.no-scroll {
  overflow: hidden;
}

.inner {
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 1200px) {
  .inner {
    padding-inline: 24px;
  }
}

.button {
  padding: 4px 22px;
  display: inline-block;
  text-align: center;
  border-radius: 40px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  color: #4A3636;
  border: 2px solid currentColor;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.button:hover {
  background-color: #FFEE56;
}

.heading {
  text-align: center;
}
.heading-image img {
  width: 37.333px;
  height: 37.333px;
}
@media screen and (min-width: 900px) {
  .heading-image img {
    width: 47px;
    height: 47px;
  }
}
.heading-tittle-en {
  margin-top: 6px;
  font-family: Courgette;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .heading-tittle-en {
    font-size: 20px;
    margin-top: 8px;
  }
}
.heading-tittle-ja {
  margin-top: 6px;
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  display: inline-block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 6px solid #FFEE56;
  padding-bottom: 6px;
}
@media screen and (min-width: 900px) {
  .heading-tittle-ja {
    font-size: 32px;
    border-bottom: 8px solid #FFEE56;
    padding-bottom: 8px;
  }
}

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

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

.wrapper {
  overflow: hidden;
}

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

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 20px;
  height: inherit;
}
@media screen and (min-width: 1200px) {
  .header__inner {
    max-width: 100%;
    padding-inline: 24px;
  }
}

.header__logo {
  width: 210px;
  padding-block: 16px;
}
@media screen and (min-width: 1200px) {
  .header__logo {
    width: 183px;
    padding-block: 18px;
  }
}

.header__icon {
  top: 20px;
}
@media screen and (min-width: 1200px) {
  .header__icon {
    display: none;
  }
}

.header__button {
  width: 144px;
  position: fixed;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
@media screen and (min-width: 1200px) {
  .header__button {
    position: static;
    left: auto;
    -webkit-transform: none;
            transform: none;
    margin-top: 0;
    margin-bottom: 2px;
    margin-left: -11px;
    width: 132px;
    font-size: 14px;
  }
}

.drawer-icon {
  width: 32px;
  height: 27px;
  position: relative;
  background: transparent;
  border: none;
  z-index: 6;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1), .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 13px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 32px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1)::after {
  width: 0;
  opacity: 0;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.drawer-icon .drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background-color: #4A3636;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s linear;
  transition: top 0.4s, -webkit-transform 0.4s linear;
  transition: transform 0.4s linear, top 0.4s;
  transition: transform 0.4s linear, top 0.4s, -webkit-transform 0.4s linear;
}
.drawer-icon .drawer-icon__bar:nth-of-type(1) {
  top: 0;
  width: 25px;
}
.drawer-icon .drawer-icon__bar:nth-of-type(1)::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 0;
  height: 100%;
  border-radius: 3px;
  border-right: 5px solid #4A3636;
}
.drawer-icon .drawer-icon__bar:nth-of-type(2) {
  top: 11px;
}
.drawer-icon .drawer-icon__bar:nth-of-type(3) {
  top: 24px;
}

.header__nav {
  background: #fff;
  width: 100%;
  height: calc(100% - 64px);
  position: fixed;
  right: 0;
  top: 64px;
  padding: 55px 114px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  z-index: 5;
}
.header__nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 1200px) {
  .header__nav {
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (min-width: 1200px) {
  .header__lists {
    margin-block: 14px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 13px;
  }
}

.header__link {
  display: inline-block;
  padding-block: 8.5px;
  color: #4A3636;
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans JP";
}
@media screen and (min-width: 1200px) {
  .header__link {
    color: #4A3636;
    font-size: 12px;
    text-decoration: none;
    /* デフォルトのアンダーラインを削除 */
    border-bottom: 1px solid transparent;
    /* 透明な下線を追加 */
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__link:hover {
    color: #9ED0E0;
    border-color: #9ED0E0;
  }
}

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

.fv {
  background: url(../img/fv/Onomichi_bg_sp.png) no-repeat center center/cover;
  z-index: -1;
  height: 554px;
  border-radius: 0px 0px 24px 24px;
}
@media screen and (min-width: 900px) {
  .fv {
    background: url(../img/fv/Onomichi_bg.jpg) no-repeat center center/cover;
    height: 740px;
    border-radius: 0px 0px 40px 40px;
  }
}

.fv__inner {
  margin-right: auto;
  margin-left: auto;
  z-index: 1;
}

.fv__contents {
  padding-top: 17px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .fv__contents {
    padding-top: 35px;
  }
}

.fv__primary-lead {
  text-shadow: 0px 0px 30px #FFF;
  font-family: "Kiwi Maru";
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .fv__primary-lead {
    font-size: 24px;
    font-weight: 500;
  }
}

.fv__primary-logo img {
  margin-top: 20px;
  max-width: 100%;
  width: 335px;
}
@media screen and (min-width: 900px) {
  .fv__primary-logo img {
    margin-top: 24px;
    width: 520px;
  }
}

.fv__secondary {
  position: relative;
  height: 410px;
  width: 335px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .fv__secondary {
    height: 560px;
    width: 846px;
  }
}

.fv-body {
  padding-top: 113px;
  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;
}
@media screen and (min-width: 900px) {
  .fv-body {
    padding-top: 33px;
  }
}
.fv-device {
  z-index: 2;
}
.fv-device img {
  width: 200px;
}
@media screen and (min-width: 900px) {
  .fv-device img {
    width: 250px;
  }
}

.fv-desc {
  position: absolute;
  padding-bottom: 19.2px;
  width: 160px;
  height: 154px;
  background-color: #fff;
  border-radius: 12.8px;
  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: 12.8px;
  overflow: hidden;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 3;
  top: 237px;
}
@media screen and (min-width: 900px) {
  .fv-desc {
    width: 200px;
    height: auto;
    gap: 16px;
    padding-bottom: 24px;
    top: 186px;
  }
}

.fv-desc-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6.4px 9.6px;
  text-align: center;
  -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;
  background: linear-gradient(265deg, #AC3790 -3.52%, #D65A5C 44.94%, #F4C06D 92.38%);
}
@media screen and (min-width: 900px) {
  .fv-desc-head {
    padding: 8px 23px;
    font-weight: 700;
  }
}

.mv-tag {
  color: #fff;
  font-size: 12.8px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .mv-tag {
    font-size: 16px;
  }
}

.fv-desc-foot-text {
  font-size: 12px;
  font-weight: 400;
  -webkit-text-decoration: underline 3px #CE2073;
          text-decoration: underline 3px #CE2073;
  text-underline-offset: 5px;
}
@media screen and (min-width: 900px) {
  .fv-desc-foot-text {
    font-size: 14px;
    text-underline-offset: 6px;
  }
}

.fv-desc-foot-date {
  margin-top: 6.4px;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .fv-desc-foot-date {
    font-size: 16px;
    margin-top: 8px;
  }
}

.fv-button {
  margin-top: 12.8px;
}
@media screen and (min-width: 900px) {
  .fv-button {
    margin-top: 16px;
  }
}
.fv-button a {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .fv-button a {
    font-size: 16px;
  }
}

.fv-fukidashi {
  position: absolute;
  top: 17px;
}
@media screen and (min-width: 900px) {
  .fv-fukidashi {
    top: 0;
    left: 37px;
  }
}
.fv-fukidashi img {
  width: 142px;
}
@media screen and (min-width: 900px) {
  .fv-fukidashi img {
    width: 244px;
  }
}

.fv-present {
  position: absolute;
  top: 10px;
  right: 25px;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .fv-present {
    top: 17px;
    right: 127px;
  }
}
.fv-present img {
  width: 110px;
}
@media screen and (min-width: 900px) {
  .fv-present img {
    width: 180px;
  }
}

.fv-food {
  position: absolute;
  top: 391px;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .fv-food {
    top: 227px;
  }
}
.fv-food img {
  width: 90px;
  height: 141px;
}
@media screen and (min-width: 900px) {
  .fv-food img {
    width: 212px;
    height: 332px;
  }
}

.fv-cat-black {
  position: absolute;
  top: 405px;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .fv-cat-black {
    top: 309px;
    right: 63px;
  }
}
.fv-cat-black img {
  width: 62px;
}
@media screen and (min-width: 900px) {
  .fv-cat-black img {
    width: 170px;
  }
}

.fv-cat-brown {
  position: absolute;
  top: 460px;
  right: 9px;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .fv-cat-brown {
    top: 429px;
    right: 0px;
  }
}
.fv-cat-brown img {
  width: 98px;
}
@media screen and (min-width: 900px) {
  .fv-cat-brown img {
    width: 233px;
  }
}

.about {
  background: #E9F6F8;
  margin-top: 32px;
  padding-top: 156px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .about {
    padding-top: 148px;
  }
}

.about__contents {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 335px;
  padding: 40px 12px;
  margin-inline: auto;
  -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;
  background: #fff;
  border-radius: 24px;
  text-align: center;
  z-index: 5;
}
@media screen and (min-width: 600px) {
  .about__contents {
    max-width: 477px;
  }
}
@media screen and (min-width: 900px) {
  .about__contents {
    max-width: 550px;
  }
}
@media screen and (min-width: 1200px) {
  .about__contents {
    max-width: 848px;
    padding-inline: 114px;
  }
}
.about__contents::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 36px;
  background: url(../img/arrow.svg) no-repeat center center/contain;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 100%;
}
@media screen and (min-width: 900px) {
  .about__contents::after {
    width: 140px;
    height: 50px;
  }
}

.about__content-img-left {
  position: absolute;
  top: 32px;
  left: 33px;
}
@media screen and (min-width: 600px) {
  .about__content-img-left {
    left: 102px;
  }
}
@media screen and (min-width: 900px) {
  .about__content-img-left {
    left: -52px;
  }
}
@media screen and (min-width: 1200px) {
  .about__content-img-left {
    left: 86px;
  }
}
.about__content-img-left img {
  width: 87.8px;
  height: 67.8px;
}
@media screen and (min-width: 900px) {
  .about__content-img-left img {
    width: 142px;
    height: 120px;
  }
}

.about__content-img-right {
  position: absolute;
  right: 19.78px;
  top: 32px;
}
@media screen and (min-width: 600px) {
  .about__content-img-right {
    right: 88px;
  }
}
@media screen and (min-width: 900px) {
  .about__content-img-right {
    right: -52px;
    top: 42px;
  }
}
@media screen and (min-width: 1200px) {
  .about__content-img-right {
    right: 87px;
  }
}
.about__content-img-right img {
  width: 87.4px;
  height: 67.4px;
}
@media screen and (min-width: 900px) {
  .about__content-img-right img {
    width: 142px;
    height: 120px;
  }
}

.about__content-tittle {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .about__content-tittle {
    font-size: 16px;
    margin-top: 32px;
  }
}

.about__content-text-wrap {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .about__content-text-wrap {
    margin-top: 32px;
  }
}

.about__content-text {
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .about__content-text {
    font-size: 16px;
  }
}
.about__content-text a {
  text-decoration: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.about__content-text a:hover {
  color: #9ED0E0;
  border-color: #9ED0E0;
}
.about__content-text:not(:first-child) {
  margin-top: 18px;
}
@media screen and (min-width: 900px) {
  .about__content-text:not(:first-child) {
    margin-top: 27px;
  }
}

.bold {
  font-weight: 700;
}

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

.about__button {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .about__button {
    margin-top: 29px;
    padding: 10px 40px 12px;
    font-size: 20px;
  }
}

.about__image-diagonal-top {
  overflow: hidden;
  width: 250px;
}
@media screen and (min-width: 900px) {
  .about__image-diagonal-top {
    position: absolute;
    top: 163px;
    right: calc(50% + 262px);
  }
}
@media screen and (min-width: 1200px) {
  .about__image-diagonal-top {
    right: calc(50% + 528px);
    top: 125px;
  }
}
.about__pawpads-top {
  position: absolute;
  top: 146px;
  right: calc(50% - 187px);
}
@media screen and (min-width: 600px) {
  .about__pawpads-top {
    top: 146px;
    right: calc(50% - 270px);
  }
}
@media screen and (min-width: 900px) {
  .about__pawpads-top {
    right: calc(50% - 359px);
    top: 85px;
  }
}
@media screen and (min-width: 1200px) {
  .about__pawpads-top {
    top: 64px;
    right: calc(50% - 589px);
  }
}
.about__pawpads-top img {
  width: 54px;
  height: 120px;
}
@media screen and (min-width: 900px) {
  .about__pawpads-top img {
    width: 70px;
    height: 154px;
  }
}
@media screen and (min-width: 1200px) {
  .about__pawpads-top img {
    width: 100px;
    height: 220px;
  }
}

.about__image-middle-left {
  position: absolute;
  top: 551px;
  left: calc(50% - 328px);
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .about__image-middle-left {
    top: 217px;
    left: calc(50% - 839px);
  }
}
@media screen and (min-width: 1200px) {
  .about__image-middle-left {
    top: 217px;
    left: calc(50% - 1095px);
  }
}
.about__image-middle-left img {
  width: 200px;
  height: 200px;
}
@media screen and (min-width: 900px) {
  .about__image-middle-left img {
    width: 480px;
    height: 480px;
  }
}

.about__image-middle-right {
  position: absolute;
  top: 430px;
  right: calc(50% - 327px);
  border-radius: 24px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .about__image-middle-right {
    top: 215px;
    right: calc(50% - 840px);
  }
}
@media screen and (min-width: 1200px) {
  .about__image-middle-right {
    top: 215px;
    right: calc(50% - 1035px);
  }
}
.about__image-middle-right img {
  width: 200px;
  height: 200px;
}
@media screen and (min-width: 900px) {
  .about__image-middle-right img {
    width: 480px;
    height: 480px;
  }
}

.about__image-bottom-left {
  position: absolute;
  overflow: hidden;
  top: 865px;
  left: 0;
}
@media screen and (min-width: 600px) {
  .about__image-bottom-left {
    top: 780px;
  }
}
@media screen and (min-width: 900px) {
  .about__image-bottom-left {
    top: 461px;
    right: calc(50% + 169px);
    left: auto;
    width: 427px;
  }
}
@media screen and (min-width: 1200px) {
  .about__image-bottom-left {
    top: 466px;
    right: calc(50% + 433px);
  }
}
.about__image-bottom-left img {
  width: 138px;
  height: auto;
}
@media screen and (min-width: 600px) {
  .about__image-bottom-left img {
    width: 200px;
  }
}
@media screen and (min-width: 900px) {
  .about__image-bottom-left img {
    width: 427px;
    height: 817px;
  }
}

.about__image-bottom-center {
  position: absolute;
  top: 918px;
  right: calc(50% - 130px);
}
@media screen and (min-width: 600px) {
  .about__image-bottom-center {
    top: 895px;
    right: calc(50% - 305px);
  }
}
@media screen and (min-width: 900px) {
  .about__image-bottom-center {
    top: 980px;
    right: calc(50% - 424px);
  }
}
@media screen and (min-width: 1200px) {
  .about__image-bottom-center {
    top: 901px;
    right: calc(50% - 683px);
  }
}
.about__image-bottom-center img {
  width: 133px;
}
@media screen and (min-width: 600px) {
  .about__image-bottom-center img {
    width: 200px;
  }
}
@media screen and (min-width: 900px) {
  .about__image-bottom-center img {
    width: 308px;
  }
}

.about__image-bottom-right {
  position: absolute;
  right: calc(50% - 166px);
  z-index: 1;
  top: 875px;
}
@media screen and (min-width: 600px) {
  .about__image-bottom-right {
    top: 839px;
    right: calc(50% - 377px);
  }
}
@media screen and (min-width: 900px) {
  .about__image-bottom-right {
    top: 755px;
    right: calc(50% - 389px);
  }
}
@media screen and (min-width: 1200px) {
  .about__image-bottom-right {
    top: 743px;
    right: calc(50% - 606px);
  }
}
.about__image-bottom-right img {
  width: 48px;
}
@media screen and (min-width: 600px) {
  .about__image-bottom-right img {
    width: 80px;
  }
}
@media screen and (min-width: 600px) and (min-width: 900px) {
  .about__image-bottom-right img {
    width: 101px;
  }
}

.about__image-bottom-logo {
  position: absolute;
  margin-top: 141px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .about__image-bottom-logo {
    margin-top: 165px;
  }
}
.about__image-bottom-logo img {
  max-width: unset;
  width: 355px;
  height: 37px;
}
@media screen and (min-width: 900px) {
  .about__image-bottom-logo img {
    width: 770px;
    height: auto;
  }
}
@media screen and (min-width: 1200px) {
  .about__image-bottom-logo img {
    width: 891px;
    height: 97px;
  }
}

.about__image-bottom-wave {
  position: absolute;
}
@media screen and (min-width: 900px) {
  .about__image-bottom-wave {
    top: 751px;
    right: calc(50% - 990px);
  }
}
@media screen and (min-width: 1200px) {
  .about__image-bottom-wave {
    top: 751px;
    right: calc(50% - 1320px);
  }
}
@media screen and (min-width: 900px) {
  .about__image-bottom-wave img {
    width: 874px;
    height: 45px;
  }
}

.about-card {
  margin-top: 177px;
}
@media screen and (min-width: 900px) {
  .about-card {
    margin-top: 258px;
  }
}

.about__swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.how-to-enter {
  margin-top: 64.8px;
}
@media screen and (min-width: 1200px) {
  .how-to-enter {
    margin-top: 120.8px;
  }
}

.how-to-enter__inner {
  position: relative;
}

.how-to-enter__content-img-left {
  position: absolute;
  top: 0;
  left: calc(50% - 189px);
}
@media screen and (min-width: 600px) {
  .how-to-enter__content-img-left {
    left: calc(50% - 230px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__content-img-left {
    left: calc(50% - 588px);
    top: -38px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__content-img-left {
    top: -60px;
    left: calc(50% - 719px);
  }
}
.how-to-enter__content-img-left img {
  width: 149px;
  height: 223px;
}
@media screen and (min-width: 600px) {
  .how-to-enter__content-img-left img {
    width: 180px;
    height: 270px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__content-img-left img {
    width: 380px;
    height: 570px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__content-img-left img {
    width: 460px;
    height: 689px;
  }
}

.how-to-enter__cat-brown {
  position: absolute;
  right: calc(50% - 163px);
  top: 0;
}
@media screen and (min-width: 900px) {
  .how-to-enter__cat-brown {
    right: calc(50% - 550px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__cat-brown {
    right: calc(50% - 525px);
    top: -28px;
  }
}
.how-to-enter__cat-brown img {
  width: 105px;
  height: 63px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__cat-brown img {
    width: 238px;
    height: 141px;
  }
}

.how-to-enter__cat-black {
  position: absolute;
  top: 7px;
  right: calc(50% - 218px);
}
@media screen and (min-width: 900px) {
  .how-to-enter__cat-black {
    right: calc(50% - 680px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__cat-black {
    top: -16px;
    right: calc(50% - 652px);
  }
}
.how-to-enter__cat-black img {
  width: 94px;
  height: 80.046px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__cat-black img {
    width: 214px;
    height: 181px;
  }
}

.how-to-enter__pawpads-top {
  position: absolute;
  right: calc(50% - 167px);
  top: calc(0% + 74px);
}
@media screen and (min-width: 900px) {
  .how-to-enter__pawpads-top {
    top: 181px;
    right: calc(50% - 650px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__pawpads-top {
    right: calc(50% - 719px);
  }
}
.how-to-enter__pawpads-top img {
  width: 55px;
  height: 120px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__pawpads-top img {
    width: 100px;
    height: 220px;
  }
}

.how-to-enter__pawpads-middle {
  position: absolute;
  top: 550px;
  left: calc(50% - 167px);
}
@media screen and (min-width: 900px) {
  .how-to-enter__pawpads-middle {
    bottom: 40px;
    left: calc(0% + 20px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__pawpads-middle {
    top: 578px;
    left: calc(50% - 722px);
  }
}
.how-to-enter__pawpads-middle img {
  width: 55px;
  height: 120.12px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__pawpads-middle img {
    width: 100px;
    height: 220px;
  }
}

.how-to-enter__pawpads-bottom {
  position: absolute;
  bottom: 363px;
  right: calc(50% - 167px);
}
.how-to-enter__pawpads-bottom img {
  width: 55px;
  height: 120.12px;
}

.how-to-enter__contents {
  text-align: center;
}

.how-to-enter__heading {
  width: 130px;
  padding-inline: 15px;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .how-to-enter__heading {
    width: 200px;
    padding-inline: 20px;
  }
}
.how-to-enter__steps {
  margin-top: 32px;
  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;
  gap: 34px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__steps {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 42px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__steps {
    gap: 32px;
  }
}

.how-to-enter__step {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .how-to-enter__step {
    width: 320px;
  }
}
.how-to-enter__step:first-of-type:after, .how-to-enter__step:nth-of-type(2):after {
  content: "";
  background: url(../img/how-to-enter/step_line.png) no-repeat center center/contain;
  width: 7px;
  height: 34px;
  position: absolute;
  left: calc(50% - 4px);
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .how-to-enter__step:first-of-type:after, .how-to-enter__step:nth-of-type(2):after {
    background: url(../img/how-to-enter/pc_step_line.png) no-repeat center center/contain;
    width: 70px;
    height: 16px;
    top: 30%;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__step:first-of-type:after, .how-to-enter__step:nth-of-type(2):after {
    background: url(../img/how-to-enter/pc_step_line.png) no-repeat center center/contain;
    width: 113px;
    height: 24px;
    top: 40%;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__step:first-of-type:after {
    left: 235px;
    top: 171px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__step:first-of-type:after {
    left: 252px;
    top: 206px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__step:nth-of-type(2) {
    margin-top: 69px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__step:nth-of-type(2):after {
    top: 113px;
    right: -49px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__step:nth-of-type(2):after {
    top: 136px;
    left: 265px;
  }
}

.how-to-enter__step-img img {
  width: 196px;
  height: 210.519px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__step-img img {
    width: 280px;
    height: 300px;
  }
}

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

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

.how-to-enter__step-textlink {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 2px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.how-to-enter__step-textlink:hover {
  color: #9ED0E0;
  border-color: #9ED0E0;
}

.how-to-enter__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 16px;
  background: #fff;
  padding: 8px 12px;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  width: 226px;
  height: 38px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__link {
    font-size: 16px;
    width: 254px;
    height: 42px;
  }
}

.how-to-enter__link-icon img {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__link-icon img {
    width: 24px;
    height: 24px;
  }
}

.how-to-enter__link-text {
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.how-to-enter__link-text:hover {
  color: #9ED0E0;
  border-color: #9ED0E0;
}
@media screen and (min-width: 900px) {
  .how-to-enter__link-text {
    font-size: 16px;
  }
}

.how-to-enter__button {
  padding-bottom: 6px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__button {
    margin-top: 33px;
    padding: 8px 38px 10px 38px;
    font-size: 20px;
    font-weight: 700;
  }
}

.prizes {
  margin-top: 119px;
}
@media screen and (min-width: 900px) {
  .prizes {
    margin-top: 274px;
  }
}

.prizes__inner {
  margin: 0 auto;
  max-width: 600px;
}
@media screen and (min-width: 900px) {
  .prizes__inner {
    max-width: 1084px;
    padding-right: 30px;
    padding-left: 30px;
  }
}

.prizes__contents {
  border-radius: 24px;
  background: #FFF;
  padding-inline: 20px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prizes__contents {
    padding-inline: 56px;
    margin-bottom: 42px;
  }
}
.prizes__contents::before {
  content: "";
  position: absolute;
  background: url(../img/prizes/deco_prizes1_sp.png) no-repeat center center/cover;
  top: -82px;
  left: 50%;
  width: 238px;
  height: 83px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .prizes__contents::before {
    width: 372px;
    height: 148px;
    background: url(../img/prizes/deco_prizes1_pc.png) no-repeat center center/cover;
    top: -147px;
  }
}

.prizes__tittle-left {
  position: absolute;
  left: 0;
  top: -120px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc((100% - 390px) / 2);
  min-height: 148px;
}
.prizes__tittle-left img {
  width: 315px;
  height: 86px;
}

.prizes__tittle-right {
  position: absolute;
  right: 0;
  top: -120px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc((100% - 390px) / 2);
  min-height: 148px;
}
.prizes__tittle-right img {
  width: 315px;
  height: 86px;
}

.prizes__heading {
  position: absolute;
  width: 190px;
  margin: 0 auto;
  padding-inline: 15px;
  top: -62px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .prizes__heading {
    width: 290px;
    top: -119px;
  }
}

.prizes__text {
  padding-top: 60px;
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .prizes__text {
    padding-top: 64px;
    font-size: 16px;
  }
}

.prizes__details {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 30px;
  -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__details {
    margin-top: 81px;
    row-gap: 76px;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
}

.prizes__detail {
  width: calc(50% - 7.5px);
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .prizes__detail {
    margin: -4px;
    border-width: 4px;
    width: calc(50% - 8px);
  }
  .prizes__detail:nth-child(3), .prizes__detail:nth-child(4), .prizes__detail:nth-child(5) {
    width: calc(33% - 17px);
  }
  .prizes__detail:nth-child(n+3) svg, .prizes__detail.prizes-detail__icon svg {
    width: 64px;
    height: 64px;
  }
  .prizes__detail:nth-child(3), .prizes__detail:nth-child(4) {
    margin-right: 4px;
  }
}
.prizes__detail:hover .prizes-detail__image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.prizes__detail:hover .prizes-detail__icon path.background {
  fill: #9ED0E0;
}

@media screen and (min-width: 900px) {
  .prizes-detail--large .prizes-detail__title {
    font-size: 20px;
    min-height: 120px;
  }
}

.prizes-detail__head {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .prizes-detail__head {
    top: -45px;
  }
}
.prizes-detail__head img {
  width: 48px;
  height: 48px;
}
@media screen and (min-width: 900px) {
  .prizes-detail__head img {
    width: 100px;
    height: 100px;
  }
}

.detail__head-small {
  top: -25px;
}
@media screen and (min-width: 1200px) {
  .detail__head-small {
    top: -41px;
  }
}
@media screen and (min-width: 900px) {
  .detail__head-small img {
    width: 80px;
    height: 80px;
  }
}

.prizes-detail__inner {
  position: relative;
  background-color: #f5f5f5;
  border-radius: 8px;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .prizes-detail__inner {
    border-radius: 24px;
  }
}
.prizes-detail__inner figure {
  margin: 0;
}

.prizes-detail__image {
  display: block;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media screen and (min-width: 900px) {
  .prizes-detail__image {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}
.prizes-detail__image img {
  -o-object-fit: cover;
     object-fit: cover;
  -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-detail__title {
  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;
  min-height: 56px;
  padding: 5px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  margin-block: 4px;
}
@media screen and (min-width: 900px) {
  .prizes-detail__title {
    font-size: 16px;
    padding: 3px 5px 5px 5px;
    min-height: 81px;
  }
}

.prizes-detail__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .prizes-detail__button {
    border: 4px solid transparent;
  }
}
.prizes-detail__button:hover {
  border: 2px solid #9ED0E0;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .prizes-detail__button:hover {
    border-width: 4px;
    border-radius: 24px;
  }
}

.prizes-detail__icon {
  display: inline-block;
}
.prizes-detail__icon svg {
  position: absolute;
  right: -2px;
  bottom: -2px;
  display: block;
  width: 36px;
  height: 36px;
  border-bottom-right-radius: 8px;
}
@media screen and (min-width: 900px) {
  .prizes-detail__icon svg {
    width: 100px;
    height: 100px;
    right: -4px;
    border-bottom-right-radius: 24px;
  }
}

.prizes-modal {
  width: 336px;
  height: 480px;
  text-align: center;
  border-radius: 24px;
  border: none;
  background: #FFF;
}
@media screen and (min-width: 900px) {
  .prizes-modal {
    width: 480px;
    height: 650px;
    padding-bottom: 106px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
  }
}
.prizes-modal figure {
  margin: 0;
  width: 100%;
}

.prizes-modal__image {
  overflow: hidden;
  width: 100%;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.prizes-modal__head {
  margin-top: 39px;
  font-weight: 700;
  color: #4A3636;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__head {
    margin-top: 32px;
    padding-inline: 40px;
    font-size: 20px;
  }
}

.prizes-modal__text {
  margin-top: 12px;
  font-size: 12px;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__text {
    padding-inline: 40px;
    font-size: 16px;
  }
}

.prizes-modal__button {
  margin-top: 16px;
  margin-inline: auto;
  padding-bottom: 6px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .prizes-modal__button {
    margin-top: 24px;
  }
}

.modal-close-btn {
  padding: 6px 22px 6px;
  font-family: "Noto Sans JP";
}

/* 初期設定 */
button {
  background: none;
}

:where(dialog) {
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}

body:has(dialog[open]) {
  overflow: hidden;
}

/* モーダルのスタイル ============ */
dialog::-ms-backdrop {
  opacity: 0;
  -ms-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
dialog::backdrop {
  opacity: 0;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
dialog.js-show.modal__content {
  opacity: 1;
}
dialog.js-show::-ms-backdrop {
  opacity: 1;
  /* 背景画像 */
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}
dialog.js-show::backdrop {
  opacity: 1;
  /* 背景画像 */
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.modal__content {
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.modal__inner {
  overflow-y: scroll;
  height: 100%;
  width: 100%;
  position: relative;
}

.prizes__button {
  margin-top: 13px;
  margin-bottom: 32px;
  padding-bottom: 6px;
}
@media screen and (min-width: 900px) {
  .prizes__button {
    margin-top: 34px;
    font-size: 20px;
    font-weight: 700;
    padding: 9px 38px 9px;
    margin-bottom: 53px;
  }
}

.prizes__bottom-background {
  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;
  margin-top: -43px;
  overflow: hidden;
}
.prizes__bottom-background img {
  display: block;
  width: 100%;
  min-width: 580px;
}

.spots {
  position: relative;
  background-color: #67B0C7;
}
@media screen and (min-width: 900px) {
  .spots {
    padding-bottom: 80px;
  }
}
.spots::before {
  content: "";
  background-image: url(../img/spots/img_bg_wave-sp.png);
  background-repeat: repeat-x;
  background-size: 96px;
  position: absolute;
  top: -45px;
  left: 0;
  width: 100%;
  height: 46px;
}
@media screen and (min-width: 900px) {
  .spots::before {
    background-image: url(../img/spots/img_bg_wave-pc.png);
    background-size: 252px;
    height: 120px;
    top: -120px;
  }
}
.spots::after {
  content: "";
  background-image: url(../img/spots/img_bg_wave-reves-sp.png);
  background-repeat: repeat-x;
  background-size: 96px;
  position: absolute;
  bottom: -45px;
  left: 0;
  width: 100%;
  height: 46px;
}
@media screen and (min-width: 900px) {
  .spots::after {
    background-image: url(../img/spots/img_bg_wave-reves-pc.png);
    background-size: 252px;
    bottom: -34px;
    height: 120px;
  }
}

@media screen and (min-width: 900px) {
  .spots__inner {
    width: 1024px;
    padding-left: calc(50% - 512px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .spots__inner {
    width: 100%;
    padding-left: calc(50vw - 512px);
  }
}

.spots__body {
  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;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .spots__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 17px;
  }
}

.spots__content-icon {
  width: 28px;
}
@media screen and (min-width: 900px) {
  .spots__content-icon {
    width: 56px;
  }
}
.spots__content-tittle {
  color: #fff;
  font-family: "Kiwi Maru";
  font-size: 28px;
  font-weight: 500;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .spots__content-tittle {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 40px;
    letter-spacing: 0.25em;
  }
}

.spots-card {
  overflow: hidden;
  border-radius: 12px;
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .spots-card {
    margin-top: 4px;
    margin-left: -9px;
  }
}

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

.spots-swiper__slide {
  height: auto;
  width: calc(100% - 16px);
}
@media screen and (min-width: 375px) {
  .spots-swiper__slide {
    width: calc(50% - 20px);
  }
}
@media screen and (min-width: 900px) {
  .spots-swiper__slide {
    width: calc(33.33% - 32px);
  }
}

.spots-swiper__card {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  padding-inline: 24px;
  padding-bottom: 30px;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .spots-swiper__card {
    border-radius: 24px;
    padding-inline: 32px;
    padding-bottom: 40px;
  }
}

.spots-swiper__image {
  display: block;
  width: calc(100% + 48px);
  margin-left: -24px;
}
@media screen and (min-width: 900px) {
  .spots-swiper__image {
    width: calc(100% + 64px);
    margin-left: -32px;
    margin-top: -18px;
  }
}
.spots-swiper__body {
  padding-top: 16px;
}
@media screen and (min-width: 900px) {
  .spots-swiper__body {
    padding-top: 24px;
  }
}

.spots-swiper__tittle {
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spots-swiper__tittle {
    font-size: 20px;
  }
}

.spots-swiper__text {
  font-size: 12px;
  margin-top: 16px;
  min-height: 133px;
  width: 100%;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .spots-swiper__text {
    font-size: 16px;
    min-height: 182px;
    margin-top: 24px;
  }
}

.spots__tittle {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .spots__tittle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 60px;
    gap: 30px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1024px;
    margin-inline: auto;
  }
}

.spots__title-logo {
  margin: 0 auto;
  width: 254px;
}
@media screen and (min-width: 900px) {
  .spots__title-logo {
    width: 360px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__title-logo {
    width: 494px;
    margin: 0;
  }
}

.spots__text-wrap {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .spots__text-wrap {
    text-align: right;
  }
}

.spots__tittle-sub {
  margin-top: 16px;
  font-size: 11.444px;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .spots__tittle-sub {
    font-size: 16px;
    margin-top: 2px;
  }
}

.spots__button {
  margin-top: 24px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .spots__button {
    font-size: 20px;
    padding: 8px 37px 10px 37px;
    border: 3px solid;
    font-weight: 700;
    border-radius: 40px;
  }
}

.spots__contents-bottom {
  width: 96px;
  height: 45.714px;
}

.spots__pawpads {
  position: absolute;
}
@media screen and (min-width: 900px) {
  .spots__pawpads {
    top: 75%;
  }
}
@media screen and (min-width: 1200px) {
  .spots__pawpads {
    top: 497px;
    left: 36px;
  }
}
.spots__pawpads img {
  width: 80px;
}
@media screen and (min-width: 1200px) {
  .spots__pawpads img {
    width: 100px;
    height: 220px;
  }
}

/* ================================
   本題のCSS
=============================== */
.spots-card__swiper-container,
.spots__swiper,
.spots-swiper-wrapper,
.spots-swiper-slide {
  position: relative;
}

/* 位置のreset */
.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

/* =============================
   ナビゲーションボタン
============================= */
/* デフォルトのボタンを初期化 */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  /* デフォルトのものを初期化 */
}

/* 各ボタンのカスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  display: none;
}
@media screen and (min-width: 900px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 100%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    width: 80px;
    height: 80px;
  }
}
.swiper-button-prev img,
.swiper-button-next img {
  width: 100%;
  height: 100%;
}

.swiper-button-prev {
  top: 97%;
}
@media screen and (min-width: 900px) {
  .swiper-button-prev {
    right: 19%;
  }
}
@media screen and (min-width: 1200px) {
  .swiper-button-prev {
    right: calc(50% - 472px);
  }
}

.swiper-button-next {
  top: 97%;
}
@media screen and (min-width: 900px) {
  .swiper-button-next {
    left: 19%;
  }
}
@media screen and (min-width: 1200px) {
  .swiper-button-next {
    left: calc(50% - 472px);
  }
}

/* =============================
   ページネーション (bullets)
============================= */
/* 位置の設定 (枠組み) */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: none;
}

.qa {
  margin-top: 90px;
}
@media screen and (min-width: 900px) {
  .qa {
    margin-top: 229px;
  }
}

.qa__inner {
  padding-inline: 20px;
  max-width: 640px;
}
@media screen and (min-width: 900px) {
  .qa__inner {
    padding-inline: 30px;
    max-width: 1084px;
  }
}

.qa__heading {
  width: 170px;
  margin: -5px auto 0;
  font-family: Courgette;
  font-size: 16px;
  font-weight: 500;
  line-height: 125%;
  padding-inline: 15px;
}
.qa__heading .heading-tittle-en {
  margin-top: 7px;
}
@media screen and (min-width: 1200px) {
  .qa__heading .heading-tittle-en {
    margin-top: 8px;
  }
}
@media screen and (min-width: 900px) {
  .qa__heading {
    width: 264px;
    padding-inline: 20px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .qa__heading .heading-tittle-ja {
    margin-top: 8px;
    padding-bottom: 9px;
  }
}

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

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

.qa-card__head {
  cursor: pointer;
  width: 100%;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 12px 15px;
}
@media screen and (min-width: 900px) {
  .qa-card__head {
    gap: 16px;
    padding: 22px 22px 21px 22px;
  }
}
.qa-card__head.is-open .qa__q-button {
  /* 横線（マイナス）の形に変化させる */
}
.qa-card__head.is-open .qa__q-button::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg); /* 縦線を90度回転させて横線に */
}
.qa-card__head.is-open .qa__q-button::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg); /* 横線はそのまま */
}

.qa-q-icon {
  font-family: "Josefin Sans";
  font-size: 24px;
  font-weight: 400;
  line-height: 125%;
  color: #9ED0E0;
}
@media screen and (min-width: 900px) {
  .qa-q-icon {
    font-size: 32px;
  }
}

.qa__q-text {
  color: #4A3636;
  font-size: 14px;
  font-weight: 700;
  font-family: "Noto Sans JP";
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 900px) {
  .qa__q-text {
    font-size: 20px;
  }
}

.qa__q-button {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  background-color: #9ed0e0;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .qa__q-button {
    width: 48px;
    height: 48px;
  }
}
.qa__q-button::before, .qa__q-button::after {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -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;
}
.qa__q-button::before {
  width: 1.455px;
  height: 10.182px;
}
@media screen and (min-width: 900px) {
  .qa__q-button::before {
    width: 2.667px;
    height: 18.667px;
  }
}
.qa__q-button::after {
  width: 10.182px;
  height: 1.455px;
}
@media screen and (min-width: 900px) {
  .qa__q-button::after {
    height: 2.667px;
    width: 18.667px;
  }
}

.qa-card__body {
  background-color: #F5F5F5;
  display: none;
}

.qa__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 17px 16px 14px;
}
@media screen and (min-width: 900px) {
  .qa__answer {
    gap: 16px;
    padding: 22px;
  }
}

.qa-a-icon {
  font-family: "Josefin Sans";
  font-size: 24px;
  font-weight: 400;
  line-height: 125%;
  color: #9ED0E0;
}
@media screen and (min-width: 900px) {
  .qa-a-icon {
    font-size: 32px;
  }
}

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

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

.entry__inner {
  max-width: 640px;
}
@media screen and (min-width: 900px) {
  .entry__inner {
    max-width: 1084px;
    padding-inline: 30px;
  }
}

.entry__contents {
  border: 8px solid #FFF;
  background: rgba(255, 255, 255, 0.5);
  padding-top: 16px;
  padding-bottom: 32px;
  padding-left: 13px;
  padding-right: 15.5px;
}
@media screen and (min-width: 900px) {
  .entry__contents {
    padding-top: 32px;
    padding-bottom: 44px;
    padding-inline: 48px;
  }
}

.entry__heading {
  width: 170px;
  padding-inline: 15px;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .entry__heading {
    width: 214px;
    padding-inline: 20px;
  }
}

.entry-requirements__table {
  margin-top: 12px;
}
@media screen and (min-width: 900px) {
  .entry-requirements__table {
    margin-top: 28px;
  }
}

.entry-repuirements-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 14px;
  padding-top: 12px;
}
.entry-repuirements-table__row:last-child {
  border: none;
}
@media screen and (min-width: 900px) {
  .entry-repuirements-table__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 14px;
    padding-bottom: 11px;
  }
}

.entry-repuirements-table__header {
  text-align: left;
  font-size: 14px;
  font-weight: 700;
}
.entry-repuirements-table__header::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #9ED0E0;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .entry-repuirements-table__header {
    min-width: 224px;
    padding-left: 14px;
    font-size: 16px;
  }
}

.entry-repuirements-table__data {
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .entry-repuirements-table__data {
    font-size: 16px;
  }
}
.entry-repuirements-table__data a {
  text-decoration: underline;
}
.entry-repuirements-table__data ul {
  list-style-type: none;
}
.entry-repuirements-table__data ul li {
  position: relative;
  margin-left: 20px;
  line-height: 19px;
}
@media screen and (min-width: 900px) {
  .entry-repuirements-table__data ul li {
    margin-left: 24px;
    line-height: 26px;
  }
}
.entry-repuirements-table__data ul li::before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 3px;
  height: 3px;
  background-color: #4A3636;
  border-radius: 50%;
  position: absolute;
  top: 0.8em;
  left: -1.2em;
}
@media screen and (min-width: 900px) {
  .entry-repuirements-table__data ul li::before {
    width: 4px;
    height: 4px;
    left: -0.8em;
  }
}

.entry__bg {
  display: block;
  margin-top: 15px;
}
@media screen and (min-width: 900px) {
  .entry__bg {
    margin-top: 107px;
  }
}

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

.contact__inner {
  max-width: 640px;
}
@media screen and (min-width: 900px) {
  .contact__inner {
    max-width: 908px;
    padding-inline: 30px;
  }
}

.contact__messeage {
  margin-top: 24px;
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .contact__messeage {
    font-size: 16px;
    margin-top: 32px;
  }
}

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

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 23px;
}
@media screen and (min-width: 900px) {
  .contact__fields {
    gap: 25px;
  }
}

.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: 40px;
  }
}

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

.top-alignment {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

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

.form-field__tag {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  background: #CE2073;
  padding: 4px 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-field__item {
  text-align: left;
}
@media screen and (min-width: 900px) {
  .form-field__item {
    width: calc(100% - 40px - 180px);
    height: 56px;
  }
}

.form-text {
  border: 1px solid transparent;
  background: #F5F5F5;
  border-radius: 8px;
  width: 100%;
  padding: 16px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .form-text {
    font-size: 16px;
    height: 56px;
  }
}
.form-text:focus, .form-text:hover {
  border-color: #9ED0E0;
  background-color: #E9F6F8;
  outline: none;
}
.form-text.is-error {
  background-color: #fff0f7;
  border-color: #ce2073;
  outline: none;
}

.form-select {
  width: 100%;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background-image: url(../img/contact/select-arrow.svg), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat, no-repeat;
  background-position: center right 18.65px, center center;
  background-size: 14.9px 8.78px, cover;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .form-select {
    font-size: 16px;
    padding: 14.5px 15px;
  }
}
.form-select:focus, .form-select:hover {
  border-color: #9ED0E0;
  background-color: #fff0f7;
  outline: none;
}
.form-select.is-error {
  border-color: #ce2073;
  background-color: #fff0f7;
  background-image: url(../img/contact/select-arrow.svg), linear-gradient(to left, #ce2073 52px, #FFF0F7 52px);
  outline: none;
}

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

.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__input:focus + .form-radio-text::before, .form-radio__input:hover + .form-radio-text::before {
  border-color: #9ED0E0;
}

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

.form-textarea {
  border-radius: 8px;
  border: 1px solid transparent;
  background: #F5F5F5;
  width: 100%;
  height: 160px;
  padding: 15px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  resize: none;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .form-textarea {
    font-size: 16px;
  }
}
.form-textarea:hover, .form-textarea:focus {
  border-color: #9ED0E0;
  outline: none;
  background-color: #E9F6F8;
}
.form-textarea.is-error {
  background-color: #fff0f7;
  border-color: #ce2073;
  outline: none;
}

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

.form-checkbox {
  position: relative;
}

.form-checkbox__input {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  outline: #F5F5F5 auto 1px;
}
.form-checkbox__input.is-error + .form-checkbox__text::before {
  background-color: #fff0f7;
  border-color: #ce2073;
}

.form-checkbox__text {
  font-size: 14px;
  padding-left: 35px;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text a {
  text-decoration-line: underline;
  color: #4A3636;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  left: 0;
  inset-block: 0;
  margin-block: auto;
}
.form-checkbox__text::before {
  width: 22px;
  height: 22px;
  background: #F5F5F5;
  border: 1px solid transparent;
}
.form-checkbox__text::after {
  opacity: 0;
  width: 19.414px;
  height: 14.621px;
  background: url(../img/contact/check.png) no-repeat center center/contain;
  left: 1.29px;
}

.contact__button {
  margin-top: 26px;
}
@media screen and (min-width: 900px) {
  .contact__button {
    margin-top: 40px;
  }
}
.contact__button .button {
  padding: 4px 37px 6px 37px;
}

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

.site-info__inner {
  position: relative;
  max-width: 640px;
}
@media screen and (min-width: 900px) {
  .site-info__inner {
    max-width: 1084px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.site-info-tittle {
  font-size: 20px;
  line-height: 125%;
  text-align: center;
  font-family: "Josefin Sans";
}
@media screen and (min-width: 900px) {
  .site-info-tittle {
    font-size: 24px;
  }
}

.site-info-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
  margin-inline: auto;
}

.site-info-image {
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.site-info-image:hover {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.site-info-image img {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 900px) {
  .site-info-image img {
    width: 40px;
    height: 40px;
  }
}

.site-info-logo {
  margin-top: 15px;
  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: 328px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .site-info-logo {
    margin-top: 41px;
    margin-inline: auto;
    max-width: 755px;
  }
}
.site-info__location {
  width: 100%;
  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;
  overflow: hidden;
  background-color: #FFF;
}
@media screen and (min-width: 900px) {
  .site-info__location {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-height: 400px;
  }
}

.site-info__location-map {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.site-info__location-map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 335/271;
}
@media screen and (min-width: 600px) {
  .site-info__location-map iframe {
    aspect-ratio: 512/400;
    min-height: 540px;
  }
}

.site-info__location-logo {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .site-info__location-logo {
    margin-left: 61.5px;
  }
}
.site-info__location-logo img {
  width: 153px;
}
@media screen and (min-width: 900px) {
  .site-info__location-logo img {
    width: 183px;
  }
}

.site-info__location-body {
  padding-top: 10px;
  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;
}
@media screen and (min-width: 900px) {
  .site-info__location-body {
    padding-top: 100px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    max-width: 512px;
    max-height: 400px;
  }
}

.site-info__location-table {
  margin-top: 27px;
  font-size: 12px;
  padding-inline: 25.5px;
  margin-bottom: 24px;
}
@media screen and (min-width: 900px) {
  .site-info__location-table {
    padding-inline: 40px;
    margin-bottom: 82px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .site-info__location-table {
    padding-inline: 58.5px;
    margin-bottom: 106px;
    font-size: 16px;
  }
}
.site-info__location-table tbody {
  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) {
  .site-info__location-table tbody {
    gap: 12px;
  }
}

.site-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.site-info__tittle {
  font-weight: 700;
  min-width: 64px;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .site-info__tittle {
    min-width: 104px;
  }
}
.site-info__tittle::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #9ED0E0;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.site-info__pawpads {
  position: absolute;
  top: -40px;
  right: calc(50% - 675px);
}
.site-info__pawpads img {
  width: 100px;
  height: 220px;
}

.footer {
  position: relative;
  margin-top: 64px;
}
@media screen and (min-width: 900px) {
  .footer {
    margin-top: 240px;
  }
}
.footer::before {
  content: "";
  background-image: url(../img/spots/img_bg_wave-sp.png);
  background-repeat: repeat-x;
  background-size: 96px;
  position: absolute;
  top: -39px;
  left: 0;
  width: 100%;
  height: 46px;
}
@media screen and (min-width: 900px) {
  .footer::before {
    background-image: url(../img/spots/img_bg_wave-pc.png);
    background-size: 252px;
    height: 120px;
    top: -120px;
  }
}

.footer__inner {
  background-color: #67B0C7;
  text-align: center;
  padding-bottom: 24px;
}
@media screen and (min-width: 900px) {
  .footer__inner {
    padding-bottom: 32px;
  }
}

.footer-copyright {
  font-size: 10px;
  color: #fff;
}
@media screen and (min-width: 900px) {
  .footer-copyright {
    font-size: 14px;
  }
}

.pagetop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 26px;
}
@media screen and (min-width: 900px) {
  .pagetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1;
  }
  .pagetop.is-show {
    opacity: 1;
    visibility: visible;
  }
}
.pagetop img {
  width: 75px;
  height: 78px;
}
@media screen and (min-width: 900px) {
  .pagetop img {
    width: 100px;
    height: 104px;
  }
}