@charset "UTF-8";
html {
  scroll-padding-top: 64px;
}

body {
  color: #4a3636;
  background: #e9f6f8;
  font-weight: 400;
  line-height: 1.6;
}

.button {
  display: inline-block;
  padding: 4px 22px 6px 22px;
  border: 2px solid #4a3636;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  border-radius: 40px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.button:hover {
  background-color: #ffee56;
}

.heading__en {
  font-family: "Courgette", cursive;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width:900px) {
  .heading__en {
    font-size: 20px;
  }
}

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

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

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

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

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

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}

.heading__icon {
  width: 38px;
  height: 38px;
}
@media screen and (min-width:900px) {
  .heading__icon {
    width: 48px;
    height: 48px;
  }
}

.header {
  height: 64px;
  background: #fff;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  padding-inline: 20px;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
@media screen and (min-width:1200px) {
  .header__inner {
    padding-inline: 24px;
  }
}
@media screen and (min-width:1200px) {
  .header__inner {
    max-width: 1512px;
  }
}

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

.drawer-icon {
  width: 32px;
  height: 24px;
  position: relative;
  caret-color: transparent;
}
.drawer-icon.is-checked {
  width: 72px;
  height: 64px;
}
.drawer-icon.is-checked .header-icon-bar {
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.drawer-icon.is-checked .header-icon-bar:nth-of-type(1), .drawer-icon.is-checked .header-icon-bar:nth-of-type(4) {
  top: 32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 32px;
}
.drawer-icon.is-checked .header-icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .header-icon-bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .header-icon-bar:nth-of-type(3) {
  display: none;
}
.drawer-icon.is-checked .header-icon-bar:nth-of-type(4) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width:1200px) {
  .drawer-icon {
    display: none;
  }
}

.header-icon-bar {
  position: absolute;
  left: 0;
  background: #4a3636;
  height: 3px;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.header-icon-bar:nth-child(1) {
  top: -1.5px;
  width: 25.6px;
}
.header-icon-bar:nth-child(2) {
  top: -1.5px;
  left: 27.2px;
  width: 4.8px;
}
.header-icon-bar:nth-child(3) {
  width: 32px;
  top: 10.5px;
}
.header-icon-bar:nth-child(4) {
  width: 32px;
  top: 22.5px;
}

.header__nav {
  display: none;
}
@media screen and (min-width:1200px) {
  .header__nav {
    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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.header__link {
  display: block;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  -webkit-transition: color 0.3s, -webkit-text-decoration 0.3s;
  transition: color 0.3s, -webkit-text-decoration 0.3s;
  transition: color 0.3s, text-decoration 0.3s;
  transition: color 0.3s, text-decoration 0.3s, -webkit-text-decoration 0.3s;
}
.header__link:hover {
  color: #67b0c7;
  text-decoration: underline;
}

.header__button {
  margin-left: 16px;
}

.drawer-content {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background: #fff;
  padding-block: 74px;
  z-index: 50;
}

.drawer-content__lists {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drawer-content__link {
  display: block;
  padding-block: 8px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

.drawer-content__button {
  text-align: center;
  margin-top: 32px;
}

.drawer-content-button {
  font-size: 16px;
}

.fv {
  width: 100%;
  overflow-x: clip;
}

.fv__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.fv__image {
  display: block;
  width: 100%;
  height: 554px;
}
.fv__image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: 100%;
  border-radius: 0px 0px 24px 24px;
}
@media screen and (min-width:768px) {
  .fv__image img {
    border-radius: 0px 0px 40px 40px;
  }
}
@media screen and (min-width:900px) {
  .fv__image {
    height: 740px;
  }
}

.fv__text {
  position: absolute;
  top: 17px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
  text-align: center;
  font-family: "Kiwi Maru", serif;
  text-shadow: 0px 0px 30px #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width:900px) {
  .fv__text {
    font-size: 24px;
    font-weight: 500;
    top: 34px;
  }
}

.fvimg1 {
  position: absolute;
  top: 73px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: min(100% - 10px, 335px);
  height: 53px;
}
@media screen and (min-width:900px) {
  .fvimg1 {
    top: 118px;
    width: 520px;
    height: 82px;
  }
}

.fvimg2 {
  position: absolute;
  top: 138px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 240px;
  height: 40px;
}
@media screen and (min-width:900px) {
  .fvimg2 {
    top: 216px;
    width: 356px;
    height: 60px;
  }
}

.pop {
  position: absolute;
  top: 195px;
  right: calc(50% + 97px);
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 142px;
  height: 80px;
}
@media screen and (min-width:900px) {
  .pop {
    top: 277px;
    right: calc(50% + 125px + 18px + 122px);
    width: 244px;
    height: 130px;
  }
}

.present {
  position: absolute;
  top: 188px;
  left: calc(50% + 87px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 110px;
  height: 110px;
}
@media screen and (min-width:900px) {
  .present {
    top: 293px;
    left: calc(50% + 125px + 82px);
    width: 180px;
    height: 180px;
  }
}

.smartphone {
  position: absolute;
  top: 291px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
  height: 408px;
}
@media screen and (min-width:900px) {
  .smartphone {
    top: 310px;
    width: 250px;
    height: 510px;
  }
}

.smartphone-cta {
  position: absolute;
  top: 413px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 160px;
  background: #fff;
  border-radius: 12.8px;
  overflow: hidden;
}
@media screen and (min-width:900px) {
  .smartphone-cta {
    top: 462.5px;
    width: 200px;
  }
}

.smartphone-cta__title {
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  text-align: center;
  padding: 6.4px 9.6px;
  color: #fff;
  font-size: 12.8px;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width:900px) {
  .smartphone-cta__title {
    font-size: 16px;
    padding: 8px 12px;
  }
}

.smartphone-cta__body {
  padding: 12.8px 14px 19.2px 14px;
  text-align: center;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width:900px) {
  .smartphone-cta__body {
    font-size: 14px;
    padding: 16px 12px 24px 12px;
  }
}

.smartphone-cta__text {
  display: inline-block;
  padding-bottom: 0.8px;
  border-bottom: 2.4px solid #ce2073;
}
@media screen and (min-width:900px) {
  .smartphone-cta__text {
    border-bottom: 3px solid #ce2073;
    padding-bottom: 1px;
  }
}

.smartphone-cta__date {
  margin-top: 3.2px;
  font-weight: 700;
}
@media screen and (min-width:900px) {
  .smartphone-cta__date {
    font-size: 16px;
  }
}

.smartphone-cta__button {
  margin-top: 12.8px;
  padding-top: 2px;
  padding-bottom: 4px;
}
@media screen and (min-width:900px) {
  .smartphone-cta__button {
    margin-top: 16px;
    font-size: 16px;
    padding-top: 4px;
    padding-bottom: 6px;
  }
}

.food {
  position: absolute;
  top: 569px;
  right: calc(50% + 123px);
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 90px;
  height: 141px;
}
@media screen and (min-width:900px) {
  .food {
    top: 503px;
    right: calc(50% + 125px + 97px + 96px);
    width: 212px;
    height: 332px;
  }
}

.cat1 {
  position: absolute;
  top: 583px;
  width: 62px;
  height: 69px;
  left: calc(50% + 100px + 5px + 31px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.cat1 img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width:900px) {
  .cat1 {
    top: 586px;
    left: calc(50% + 125px + 66px + 85px);
    width: 170px;
    height: 190px;
  }
}

.cat2 {
  position: absolute;
  top: 638px;
  width: 98px;
  height: 72px;
  left: calc(50% + 100px + 9px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.cat2 img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width:900px) {
  .cat2 {
    top: 706px;
    left: calc(50% + 125px + 66px + 116.5px);
    width: 233px;
    height: 174px;
  }
}

.about {
  margin-top: 188px;
  position: relative;
  overflow-x: clip;
}
@media screen and (min-width:900px) {
  .about {
    margin-top: 178px;
  }
}

.about__wrapper {
  padding-inline: 20px;
}

.about__inner {
  background: #fff;
  border-radius: 24px;
  padding-block: 40px;
  max-width: 335px;
  margin: 0 auto;
}
@media screen and (min-width:600px) {
  .about__inner {
    max-width: 460px;
  }
}
@media screen and (min-width:900px) {
  .about__inner {
    max-width: 580px;
  }
}
@media screen and (min-width:1200px) {
  .about__inner {
    padding: 40px 114px;
    max-width: 848px;
  }
}

.about__body {
  margin-top: 23px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width:600px) {
  .about__body {
    font-size: 14px;
  }
}
@media screen and (min-width:900px) {
  .about__body {
    font-size: 16px;
    margin-top: 32px;
  }
}

.about__sub-title-sp {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width:600px) {
  .about__sub-title-sp {
    font-size: 24px;
  }
}
@media screen and (min-width:900px) {
  .about__sub-title-sp {
    display: none;
  }
}

.about__sub-title-pc {
  display: none;
}
@media screen and (min-width:900px) {
  .about__sub-title-pc {
    display: block;
    font-size: 16px;
    font-weight: 700;
  }
}

.about__text:first-of-type {
  margin-top: 24px;
  margin-bottom: 18px;
}
@media screen and (min-width:600px) {
  .about__text:first-of-type {
    margin-bottom: 21px;
  }
}
@media screen and (min-width:900px) {
  .about__text:first-of-type {
    margin-top: 35px;
    margin-bottom: 29px;
  }
}
.about__text:nth-of-type(2) {
  margin-bottom: 18px;
}
@media screen and (min-width:600px) {
  .about__text:nth-of-type(2) {
    margin-bottom: 21px;
  }
}
@media screen and (min-width:900px) {
  .about__text:nth-of-type(2) {
    margin-bottom: 27px;
  }
}
.about__text:nth-of-type(3) {
  margin-bottom: 19px;
}
@media screen and (min-width:600px) {
  .about__text:nth-of-type(3) {
    margin-bottom: 21px;
  }
}
@media screen and (min-width:900px) {
  .about__text:nth-of-type(3) {
    margin-bottom: 25px;
  }
}
.about__text:nth-of-type(4) {
  margin-bottom: 31px;
}
@media screen and (min-width:600px) {
  .about__text:nth-of-type(4) {
    margin-bottom: 32px;
  }
}
@media screen and (min-width:900px) {
  .about__text:nth-of-type(4) {
    margin-bottom: 44px;
  }
}

.instagram-link {
  text-decoration-line: underline;
}

.emphasis {
  font-weight: 700;
}

.about__emphasis-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 32px;
  position: relative;
}
.about__emphasis-text:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  top: 28px;
  background-image: linear-gradient(to right, #9ed0e0, #9ed0e0 4px, transparent 4px, transparent 8px);
  background-size: 8px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
@media screen and (min-width:900px) {
  .about__emphasis-text:after {
    top: 44px;
  }
}
@media screen and (min-width:900px) {
  .about__emphasis-text {
    font-size: 20px;
    margin-bottom: 45px;
  }
}

.about__button {
  position: relative;
}
.about__button::after {
  display: block;
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  width: 100px;
  height: 36px;
  background: #cce1e4;
  position: absolute;
  top: calc(100% + 40px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width:900px) {
  .about__button::after {
    width: 140px;
    height: 50px;
  }
}

.about-button {
  font-size: 16px;
}
@media screen and (min-width:900px) {
  .about-button {
    font-size: 20px;
    padding: 8px 38px 10px 38px;
  }
}

.about_bg_pawpads {
  position: absolute;
  top: -10px;
  left: calc(50% + 133px);
  z-index: -10;
  width: 54px;
  height: auto;
}
@media screen and (min-width:600px) {
  .about_bg_pawpads {
    left: calc(50% + 197px);
  }
}
@media screen and (min-width:900px) {
  .about_bg_pawpads {
    top: -60px;
    left: calc(50% + 300px);
    width: 70px;
  }
}
@media screen and (min-width:1200px) {
  .about_bg_pawpads {
    top: -84px;
    left: calc(50% + 490px);
    width: 100px;
    height: 220px;
  }
}

.about__pic1 {
  position: absolute;
  top: 31px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 91px));
          transform: translateX(calc(-50% - 91px));
  display: block;
  width: 88px;
  height: 60px;
}
@media screen and (min-width:900px) {
  .about__pic1 {
    top: 47px;
    width: 134px;
    height: 100px;
    -webkit-transform: translateX(calc(-50% - 265px));
            transform: translateX(calc(-50% - 265px));
  }
}

.about__pic2 {
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 103px));
          transform: translateX(calc(-50% + 103px));
  width: 88px;
  height: 60px;
}
@media screen and (min-width:900px) {
  .about__pic2 {
    top: 47px;
    width: 145px;
    -webkit-transform: translateX(calc(-50% + 264px));
            transform: translateX(calc(-50% + 264px));
  }
}

.about-photo__left {
  position: absolute;
  top: 395px;
  left: calc(50% - 328px);
  z-index: -10;
  width: 200px;
  height: 200px;
}
@media screen and (min-width:600px) {
  .about-photo__left {
    left: calc(50% - 380px);
  }
}
@media screen and (min-width:900px) {
  .about-photo__left {
    top: 75px;
    left: calc(50% - 838px);
    width: 480px;
    height: 480px;
  }
}
@media screen and (min-width:1200px) {
  .about-photo__left {
    top: 72px;
    left: calc(50% - 1094px);
  }
}

.about-photo__right {
  position: absolute;
  top: 273px;
  left: calc(50% + 127px);
  z-index: -10;
  width: 200px;
  height: 200px;
}
@media screen and (min-width:600px) {
  .about-photo__right {
    left: calc(50% + 180px);
  }
}
@media screen and (min-width:900px) {
  .about-photo__right {
    top: 70px;
    left: calc(50% + 357px);
    width: 480px;
    height: 480px;
  }
}
@media screen and (min-width:1200px) {
  .about-photo__right {
    left: calc(50% + 560px);
  }
}

.about-stripe {
  display: none;
}
@media screen and (min-width:900px) {
  .about-stripe {
    display: block;
    position: absolute;
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(calc(-50% - 405px));
            transform: translateX(calc(-50% - 405px));
    width: 250px;
    height: 250px;
    z-index: -20;
  }
}
@media screen and (min-width:1200px) {
  .about-stripe {
    -webkit-transform: translateX(calc(-50% - 652px));
            transform: translateX(calc(-50% - 652px));
  }
}

.about-slope {
  position: absolute;
  top: 709px;
  left: 0;
  z-index: -10;
  width: 138px;
  height: auto;
}
@media screen and (min-width:600px) {
  .about-slope {
    width: 200px;
  }
}
@media screen and (min-width:900px) {
  .about-slope {
    top: 319px;
    width: 427px;
    left: 50%;
    -webkit-transform: translateX(calc(-50% - 368px));
            transform: translateX(calc(-50% - 368px));
  }
}
@media screen and (min-width:1200px) {
  .about-slope {
    left: 50%;
    -webkit-transform: translateX(calc(-50% - 647px));
            transform: translateX(calc(-50% - 647px));
  }
}

.about-goods {
  position: absolute;
  top: 720px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 141px));
          transform: translateX(calc(-50% + 141px));
  width: 48px;
  height: auto;
}
@media screen and (min-width:600px) {
  .about-goods {
    top: 775px;
    -webkit-transform: translateX(calc(-50% + 316px));
            transform: translateX(calc(-50% + 316px));
    width: 80px;
  }
}
@media screen and (min-width:900px) {
  .about-goods {
    top: 600px;
    width: 101px;
    -webkit-transform: translateX(calc(-50% + 355px));
            transform: translateX(calc(-50% + 355px));
  }
}
@media screen and (min-width:1200px) {
  .about-goods {
    top: 600px;
    width: 101px;
    -webkit-transform: translateX(calc(-50% + 555px));
            transform: translateX(calc(-50% + 555px));
  }
}

.about-goods2 {
  position: absolute;
  width: 133px;
  height: auto;
  top: 762px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 63px));
          transform: translateX(calc(-50% + 63px));
  z-index: -10;
}
@media screen and (min-width:600px) {
  .about-goods2 {
    top: 815px;
    -webkit-transform: translateX(calc(-50% + 185px));
            transform: translateX(calc(-50% + 185px));
    width: 200px;
  }
}
@media screen and (min-width:900px) {
  .about-goods2 {
    top: 820px;
    width: 308px;
    -webkit-transform: translateX(calc(-50% + 278px));
            transform: translateX(calc(-50% + 278px));
  }
}
@media screen and (min-width:1200px) {
  .about-goods2 {
    top: 755px;
    -webkit-transform: translateX(calc(-50% + 528px));
            transform: translateX(calc(-50% + 528px));
  }
}

.wave-line {
  display: none;
}
@media screen and (min-width:900px) {
  .wave-line {
    display: block;
    position: absolute;
    top: 584px;
    left: 50%;
    -webkit-transform: translateX(calc(-50% + 577px));
            transform: translateX(calc(-50% + 577px));
    width: 874px;
    z-index: -20;
  }
}
@media screen and (min-width:1200px) {
  .wave-line {
    position: absolute;
    top: 604px;
    left: 50%;
    -webkit-transform: translateX(calc(-50% + 885px));
            transform: translateX(calc(-50% + 885px));
    width: 874px;
    z-index: -20;
  }
}

.about-bottom {
  padding-inline: 0;
  max-width: 100%;
  margin-top: 139px;
}
@media screen and (min-width:1200px) {
  .about-bottom {
    margin-top: 169px;
  }
}

.onomichi-logo {
  margin-right: auto;
  margin-left: auto;
  width: 355px;
  max-width: calc(100% - 10px);
}
.onomichi-logo img {
  width: 100%;
}
@media screen and (min-width:900px) {
  .onomichi-logo {
    width: 770px;
  }
}
@media screen and (min-width:1200px) {
  .onomichi-logo {
    width: 890px;
  }
}

@media screen and (min-width:1200px) {
  .swiper {
    margin-top: -9px;
  }
}

/* スライドの動き等速 */
.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* 画像のサイズ調整 */
.about__swiper-slide {
  margin-right: 10px;
  width: 100px;
  height: 100px;
}
@media screen and (min-width:900px) {
  .about__swiper-slide {
    margin-right: 20px;
    width: 200px;
    height: 200px;
  }
}
.about__swiper-slide img {
  border-radius: 12px;
  width: 100px;
  height: 100px;
  vertical-align: middle;
}
@media screen and (min-width:900px) {
  .about__swiper-slide img {
    border-radius: 24px;
    width: 200px;
    height: 200px;
  }
}

.howto {
  position: relative;
  overflow-x: clip;
  max-width: 1512px;
  margin: 0 auto;
}

.howto__inner {
  padding-top: 64.8px;
  padding-bottom: 37.67px;
  padding-inline: 20px;
}
@media screen and (min-width:1200px) {
  .howto__inner {
    padding: 125px;
  }
}

.howto__boxes {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 49px;
}
@media screen and (min-width:900px) {
  .howto__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32px;
    margin-top: 34px;
  }
}

.howto__box {
  max-width: 320px;
  text-align: center;
  position: relative;
}
.howto__box:not(:first-of-type)::before {
  position: absolute;
  display: block;
  content: "";
  top: -34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/sp/howto_step_line-sp.webp) no-repeat center center/cover;
  width: 7px;
  height: 34px;
}
@media screen and (min-width:900px) {
  .howto__box:not(:first-of-type)::before {
    display: none;
    background: url(../img/howto_step_line.webp) no-repeat center center/cover;
    display: block;
    top: 37%;
    left: -29px;
    width: 113px;
    height: 24px;
  }
}
@media screen and (min-width:900px) {
  .howto__box:nth-of-type(2) {
    margin-top: 75px;
  }
  .howto__box:nth-of-type(2)::before {
    top: 29%;
    left: -40px;
  }
}
@media screen and (min-width:900px) {
  .howto__box:nth-of-type(3) {
    margin-top: -57px;
  }
  .howto__box:nth-of-type(3)::before {
    top: 43%;
    left: -30px;
  }
}

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

.howto__box-title {
  margin-top: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width:900px) {
  .howto__box-title {
    margin-top: 23px;
    font-size: 20px;
  }
}

.howto__box-text {
  margin-top: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width:900px) {
  .howto__box-text {
    margin-top: 18px;
    font-size: 13px;
  }
}
@media screen and (min-width:1200px) {
  .howto__box-text {
    font-size: 16px;
  }
}

.instagram-text-link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  text-decoration-line: underline;
}
@media screen and (min-width:900px) {
  .instagram-text-link {
    font-size: 16px;
  }
}

.howto__instagram {
  margin-top: 15px;
}

.howto__instagram-link {
  display: inline-block;
  padding-block: 8px;
  padding-right: 12px;
  padding-left: 40px;
  background: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  border: solid 1px transparent;
  -webkit-transition: border-color 0.4s;
  transition: border-color 0.4s;
}
.howto__instagram-link::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 12px;
  content: "";
  display: block;
  background: url(../img/Icon-Instagram.webp) no-repeat center center/contain;
  width: 20px;
  height: 20px;
}
@media screen and (min-width:900px) {
  .howto__instagram-link::before {
    width: 24px;
    height: 24px;
  }
}
@media screen and (min-width:900px) {
  .howto__instagram-link {
    font-size: 16px;
    padding-left: 44px;
  }
}
.howto__instagram-link:hover {
  border-color: #9ed0e0;
}

.howto__box-text-emphasis {
  color: #4a3636;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width:900px) {
  .howto__box-text-emphasis {
    font-size: 16px;
  }
}

.howto__box-button {
  text-align: center;
}
@media screen and (min-width:900px) {
  .howto__box-button {
    margin-top: 34px;
  }
}

.howto-button {
  margin-top: 14px;
  font-size: 16px;
}
@media screen and (max-width: 375px) {
  .howto-button {
    font-size: 13px;
  }
}
@media screen and (min-width:900px) {
  .howto-button {
    font-size: 20px;
    padding: 8px 38px 10px 38px;
  }
}

.howto__bg_map {
  position: absolute;
  width: 149px;
  height: 223px;
  top: 64.8px;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 113px));
          transform: translateX(calc(-50% - 113px));
  z-index: -10;
}
@media screen and (min-width:900px) {
  .howto__bg_map {
    top: 60px;
    -webkit-transform: translateX(calc(-50% - 490px));
            transform: translateX(calc(-50% - 490px));
    width: 460px;
    height: 689px;
  }
}

.cat3 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 111px));
          transform: translateX(calc(-50% + 111px));
  top: 65px;
  width: 105px;
  height: 63px;
}
@media screen and (min-width:900px) {
  .cat3 {
    -webkit-transform: translateX(calc(-50% + 407px));
            transform: translateX(calc(-50% + 407px));
    top: 97px;
    width: 238px;
    height: 141px;
  }
}

.cat4 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 172px));
          transform: translateX(calc(-50% + 172px));
  top: 69px;
  width: 94px;
  height: 80px;
}
@media screen and (min-width:900px) {
  .cat4 {
    -webkit-transform: translateX(calc(-50% + 545px));
            transform: translateX(calc(-50% + 545px));
    top: 105px;
    width: 214px;
    height: 181px;
  }
}

.howto__bg_pawpads1 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 140px));
          transform: translateX(calc(-50% + 140px));
  top: 137px;
  width: 55px;
  height: 120px;
}
@media screen and (min-width:900px) {
  .howto__bg_pawpads1 {
    -webkit-transform: translateX(calc(-50% + 670px));
            transform: translateX(calc(-50% + 670px));
    top: 270px;
    width: 100px;
    height: 220px;
  }
}

.howto__bg_pawpads2 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 140px));
          transform: translateX(calc(-50% - 140px));
  top: 613px;
  width: 55px;
  height: 120.12px;
}
@media screen and (min-width:900px) {
  .howto__bg_pawpads2 {
    -webkit-transform: translateX(calc(-50% - 671px));
            transform: translateX(calc(-50% - 671px));
    top: 703px;
    width: 100px;
    height: 220px;
  }
}

.howto__bg_pawpads3 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(calc(-50% + 140px));
          transform: translateX(calc(-50% + 140px));
  top: 943px;
  width: 55px;
  height: 120.12px;
}
@media screen and (min-width:900px) {
  .howto__bg_pawpads3 {
    display: none;
  }
}

.prizes {
  overflow: hidden;
}

.prizes__decoration-triangle-left {
  display: none;
}
@media screen and (min-width:900px) {
  .prizes__decoration-triangle-left {
    display: block;
    position: absolute;
    width: 315px;
    height: 86px;
    left: 0;
    top: 28px;
  }
}

.prizes__decoration-triangle-right {
  display: none;
}
@media screen and (min-width:900px) {
  .prizes__decoration-triangle-right {
    display: block;
    position: absolute;
    width: 315px;
    height: 86px;
    right: 0;
    top: 28px;
  }
}

.prizes__inner {
  position: relative;
  padding-inline: 20px;
  padding-bottom: 34.67px;
  margin: 0 auto;
}
@media screen and (min-width:900px) {
  .prizes__inner {
    padding-bottom: 53px;
  }
}
.prizes__inner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 238px;
  height: 83px;
  background-color: transparent;
  background: url(../img/sp/prizes_deco1-sp.svg) no-repeat center center/cover;
  z-index: -10;
}
@media screen and (min-width:900px) {
  .prizes__inner::before {
    width: 365.624px;
    height: 148.967px;
    background: url(../img/prizes_deco1-pc.svg) no-repeat center center/cover;
  }
}
.prizes__inner::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 1024px;
  height: calc(100% - 83px);
  background-color: #fff;
  border-radius: 24px;
  z-index: -10;
}
@media screen and (min-width:900px) {
  .prizes__inner::after {
    height: calc(100% - 148.967px);
  }
}
@media screen and (min-width:900px) {
  .prizes__inner {
    max-width: 1024px;
    padding-inline: 56px;
  }
}

.prizes__title {
  padding-top: 20px;
}
@media screen and (min-width:900px) {
  .prizes__title {
    padding-top: 33px;
  }
}

.prizes__text {
  margin-top: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width:900px) {
  .prizes__text {
    margin-top: 42px;
    font-size: 16px;
  }
}

.prizes__boxes {
  margin-top: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 39px 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width:900px) {
  .prizes__boxes {
    margin-top: 82px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 80px 32px;
  }
}

@media screen and (min-width:900px) {
  .prizes__box1 {
    grid-area: 1/1/2/4;
  }
}

.prizes__box2 {
  grid-area: 1/4/2/7;
}

.prizes__box3 {
  grid-area: 2/1/3/3;
}

.prizes__box4 {
  grid-area: 2/3/3/5;
}

.prizes__box5 {
  grid-area: 2/5/3/7;
}

.prizes__box {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングやボーダーを含めて幅を計算 */
  width: calc(50% - 7.5px);
}
@media screen and (min-width:900px) {
  .prizes__box {
    width: auto;
    height: auto;
  }
}
@media (hover: hover) {
  .prizes__box:hover .prizes__box-image img {
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .prizes__box:hover .prizes__box-icon-decoration path {
    fill: #9ed0e0;
  }
}

.prizes__box-head {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -24px;
  z-index: 10;
}
@media screen and (min-width:600px) {
  .prizes__box-head {
    top: -37.5px;
  }
}
.prizes__box-head img {
  width: 48px;
  height: 48px;
}
@media screen and (min-width:600px) {
  .prizes__box-head img {
    width: 75px;
    height: 75px;
  }
}
@media screen and (min-width:900px) {
  .prizes__box-head img {
    width: 80px;
    height: 80px;
  }
}

@media screen and (min-width:900px) {
  .prizes__box1 .prizes__box-head img,
  .prizes__box2 .prizes__box-head img {
    width: 100px;
    height: 100px;
  }
}
@media screen and (min-width:900px) {
  .prizes__box1 .prizes__box-head,
  .prizes__box2 .prizes__box-head {
    top: -50px;
  }
}

@media screen and (min-width:900px) {
  .prizes__box3 .prizes__box-head,
  .prizes__box4 .prizes__box-head,
  .prizes__box5 .prizes__box-head {
    top: -40px;
  }
}

.prizes-figure {
  width: 100%;
  margin: 0; /* 必要に応じてマージンをリセット */
  padding: 0; /* 必要に応じてパディングをリセット */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングやボーダーを含めて幅を計算 */
}

.prizes__box-image {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングやボーダーを含めて幅を計算 */
}
.prizes__box-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width:900px) {
  .prizes__box-image {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}

.prizes__box-text {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  text-align: center;
  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-color: #f5f5f5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングやボーダーを含めて幅を計算 */
  min-height: 56px;
}
@media screen and (min-width:900px) {
  .prizes__box-text {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
}

@media screen and (min-width:900px) {
  .prizes__box1 .prizes__box-text,
  .prizes__box2 .prizes__box-text {
    font-size: 20px;
    min-height: 120px;
  }
}

@media screen and (min-width:900px) {
  .prizes__box3 .prizes__box-text,
  .prizes__box4 .prizes__box-text,
  .prizes__box5 .prizes__box-text {
    font-size: 16px;
    min-height: 80px;
  }
}

.prizes-card__button {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
}
@media screen and (min-width:900px) {
  .prizes-card__button {
    border-radius: 24px;
  }
}

@media (hover: hover) {
  .prizes-card__button:hover {
    border-color: #9ed0e0;
  }
}
.prizes-card__button:focus {
  border-color: #9ed0e0;
}

.prizes__box-icon {
  position: absolute;
  bottom: -11px;
  right: -2px;
}

.prizes__box-icon-decoration {
  border-bottom-right-radius: 8px;
}
@media screen and (min-width:900px) {
  .prizes__box-icon-decoration {
    border-bottom-right-radius: 24px;
  }
}

@media screen and (min-width:900px) {
  .prizes__box1 .prizes__box-icon-decoration,
  .prizes__box2 .prizes__box-icon-decoration {
    width: 100px;
    height: 100px;
  }
}

@media screen and (min-width:900px) {
  .prizes__box3 .prizes__box-icon-decoration,
  .prizes__box4 .prizes__box-icon-decoration,
  .prizes__box5 .prizes__box-icon-decoration {
    width: 64px;
    height: 64px;
  }
}

.prizes__box-icon-zoom {
  position: absolute;
  top: 40%;
  right: 5.22px;
  width: 11.52px;
  height: 11.52px;
}

@media screen and (min-width:900px) {
  .prizes__box1 .prizes__box-icon-zoom,
  .prizes__box2 .prizes__box-icon-zoom {
    bottom: 0;
    top: 53px;
    right: 12.5px;
    width: 32px;
    height: 32px;
  }
}

@media screen and (min-width:900px) {
  .prizes__box3 .prizes__box-icon-zoom,
  .prizes__box4 .prizes__box-icon-zoom,
  .prizes__box5 .prizes__box-icon-zoom {
    bottom: 8.96px;
    right: 8px;
    width: 20.48px;
    height: 20.48px;
  }
}

.prizes__button {
  text-align: center;
  margin-top: 18px;
}
@media screen and (min-width:900px) {
  .prizes__button {
    margin-top: 40px;
  }
}

.prizes__button-link,
.spots__button-link {
  display: inline-block;
  font-size: 16px;
}
@media screen and (max-width: 375px) {
  .prizes__button-link,
  .spots__button-link {
    font-size: 13px;
  }
}
@media screen and (min-width:900px) {
  .prizes__button-link,
  .spots__button-link {
    font-size: 20px;
    padding: 8px 38px 10px 38px;
  }
}

.prizes-modal {
  position: fixed;
  inset: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  width: 336px;
  max-width: calc(100% - 20px);
  height: 480px;
  max-height: calc(100% - 20px);
  border: none;
  border-radius: 24px;
  overflow: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  margin: 0; /* 必要に応じてマージンをリセット */
  padding: 0; /* 必要に応じてパディングをリセット */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングやボーダーを含めて幅を計算 */
  margin: auto;
  background-color: #fff;
}
@media screen and (min-width:900px) {
  .prizes-modal {
    font-size: 16px;
    width: 480px;
    height: 650px;
  }
}
.prizes-modal::-ms-backdrop {
  background: #000;
  opacity: 0.7;
}
.prizes-modal::backdrop {
  background: #000;
  opacity: 0.7;
}

.prizes-modal-image {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングやボーダーを含めて幅を計算 */
}
.prizes-modal-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.prizes-modal-title {
  margin-top: 39px;
  font-weight: 700;
  font-size: 16px;
}
@media screen and (min-width:900px) {
  .prizes-modal-title {
    margin-top: 32px;
    font-size: 20px;
  }
}

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

.prizes-modal-button {
  margin-top: 16px;
  margin-bottom: 56px;
}
@media screen and (min-width:900px) {
  .prizes-modal-button {
    margin-top: 24px;
    margin-bottom: 106px;
    font-size: 16px;
  }
}

.prizes__bg {
  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: -46px;
}
.prizes__bg img {
  display: block;
  width: 100%;
  min-width: 580px;
}
@media screen and (min-width:900px) {
  .prizes__bg {
    display: block;
    margin-top: 0;
  }
}

.spots__slider {
  margin-top: 22px;
}
@media screen and (min-width:900px) {
  .spots__slider {
    margin-top: 10px;
    width: calc(100% - 56px - 32px);
  }
}

.spots__swiper {
  height: auto;
}
.spots {
  position: relative;
  padding-top: 45.7px;
  padding-bottom: 45.7px;
  margin-top: -46px;
  overflow: hidden;
}
@media screen and (min-width:900px) {
  .spots {
    padding-top: 120px;
    padding-bottom: 120px;
    margin-top: -120px;
  }
}
.spots::before, .spots::after {
  position: absolute;
  left: -1px;
  width: 101%;
  content: "";
  background-repeat: repeat-x;
  background-size: contain;
  background-position: left center;
  height: 45.7px;
}
@media screen and (min-width:900px) {
  .spots::before, .spots::after {
    height: 120px;
  }
}
.spots::before {
  top: 1px;
  background-image: url(../img/sp/spots_bg_wave-sp.svg), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
}
@media screen and (min-width:900px) {
  .spots::before {
    background-image: url(../img/spots_bg_wave-pc.svg), linear-gradient(to bottom, transparent 33px, #67b0c7 33px);
  }
}
.spots::after {
  bottom: 1px;
  background-image: url(../img/sp/spots_bg_wave-bottom-sp.svg), linear-gradient(to top, transparent 13px, #67b0c7 13px);
}
@media screen and (min-width:768px) {
  .spots::after {
    bottom: 2px;
    background-image: url(../img/spots_bg_wave-bottom-pc.svg), linear-gradient(to top, transparent 33px, #67b0c7 33px);
  }
}

.spots__bg_pawpads {
  position: absolute;
  top: 616px;
  left: 36px;
  width: 100px;
  height: 220px;
}

.spots__outer {
  background: #67b0c7;
  padding-bottom: 20px;
}
@media screen and (min-width:768px) {
  .spots__outer {
    padding-bottom: 0;
  }
}

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

.spots__heading-wrap {
  text-align: center;
}

.spots__heading {
  margin-top: 3px;
  position: relative;
  display: inline-block;
  padding-left: 36px;
  color: #fff;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width:900px) {
  .spots__heading {
    font-size: 40px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    padding-top: 69px;
    padding-left: 0;
    letter-spacing: 0.25em;
  }
}
.spots__heading::before {
  position: absolute;
  content: "";
  background-image: url(../img/Icon-star.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 28px;
  height: 28px;
}
@media screen and (min-width:900px) {
  .spots__heading::before {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 56px;
    height: 56px;
  }
}

.spots-swiper__slide {
  height: auto;
}

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

.spots-figure {
  width: 100%;
  margin: 0; /* 必要に応じてマージンをリセット */
  padding: 0; /* 必要に応じてパディングをリセット */
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* パディングやボーダーを含めて幅を計算 */
}

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

.spots-card__heading {
  color: #4a3636;
  margin-top: 16px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width:900px) {
  .spots-card__heading {
    margin-top: 24px;
    font-size: 20px;
  }
}

.spots-card__text {
  color: #4a3636;
  margin-top: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.05px;
}
@media screen and (min-width:900px) {
  .spots-card__text {
    margin-top: 24px;
    font-size: 16px;
  }
}

.spots-swiper-arrows__prev,
.spots-swiper-arrows__next {
  position: static;
  width: 80px;
  height: 80px;
  background-color: #ffee56;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-size: 16px 27px;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: background-position 0.4s;
  transition: background-position 0.4s;
}

.spots-swiper-arrows__prev::after,
.spots-swiper-arrows__next::after {
  content: "";
}

.spots-swiper-arrows__prev {
  background-image: url(../img/spots-arrows-prev.webp);
}
.spots-swiper-arrows__prev:hover {
  background-position: center left 40%;
}

.spots-swiper-arrows__next {
  background-image: url(../img/spots-arrows-next.webp);
}
.spots-swiper-arrows__next:hover {
  background-position: center right 40%;
}

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

.spots__arrows {
  margin-right: auto;
  margin-left: auto;
  max-width: 700px;
}
@media screen and (min-width:1200px) {
  .spots__arrows {
    max-width: 1084px;
    padding-inline: 30px;
  }
}

.spots-swiper-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 10px;
  margin-top: -30px;
}

.spots__bottom {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width:900px) {
  .spots__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 81px;
    padding-bottom: 3px;
  }
}

.spots__decoration-text {
  margin: 0 auto;
  display: block;
  width: 255px;
}
@media screen and (min-width:900px) {
  .spots__decoration-text {
    margin-top: 40px;
    width: 495px;
  }
}

.spots__text {
  margin-top: 16px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11.444px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  white-space: nowrap;
}
@media screen and (min-width:900px) {
  .spots__text {
    font-size: 16px;
    margin-top: 40px;
    text-align: right;
  }
}

.spots__button {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width:900px) {
  .spots__button {
    text-align: right;
  }
}

.spots__button-link {
  white-space: nowrap;
}

.qa {
  padding-top: 40px;
  padding-bottom: 30.67px;
  padding-inline: 20px;
}
@media screen and (min-width:900px) {
  .qa {
    padding-top: 116px;
    padding-bottom: 120px;
  }
}

@media screen and (min-width:900px) {
  .qa__title {
    margin-top: 7px;
  }
}

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

.qa-box {
  border-radius: 12px;
  border: 2px solid #4a3636;
  overflow: hidden;
}
@media screen and (min-width:900px) {
  .qa-box {
    border-radius: 16px;
  }
}
.qa-box.is-open .qa-toggle::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.qa-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  width: 100%;
  background: #fff;
  padding-block: 10px;
  padding-inline: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:900px) {
  .qa-box__head {
    gap: 16px;
    padding-top: 20.5px;
    padding-bottom: 19.5px;
    padding-right: 20px;
    padding-left: 22px;
  }
}

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

.qa-box__head-text {
  color: #4a3636;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: left;
}
@media screen and (min-width:900px) {
  .qa-box__head-text {
    font-size: 20px;
  }
}

.qa-toggle {
  position: relative;
  background-color: #9ed0e0;
  width: 26.182px;
  height: 26.182px;
  border-radius: 50%;
  display: block;
}
@media screen and (min-width:900px) {
  .qa-toggle {
    width: 48px;
    height: 48px;
  }
}
.qa-toggle::before, .qa-toggle::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 1.45px;
  width: 10.18px;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width:900px) {
  .qa-toggle::before, .qa-toggle::after {
    width: 18.667px;
    height: 2.667px;
  }
}
.qa-toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.qa-box__body {
  display: none;
  padding: 16px 14px 14px 14px;
  background: #f5f5f5;
}
@media screen and (min-width:768px) {
  .qa-box__body {
    padding-top: 26px;
    padding-bottom: 22px;
    padding-inline: 22px;
  }
}

.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.qa-box__a-text {
  color: #4a3636;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width:900px) {
  .qa-box__a-text {
    font-size: 16px;
  }
}

.entry__inner {
  padding-inline: 20px;
}

.entry__content {
  margin-right: auto;
  margin-left: auto;
  padding-top: 16px;
  padding-bottom: 32px;
  padding-inline: 15.5px;
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width:900px) {
  .entry__content {
    max-width: 1024px;
    padding-inline: 48px;
    padding-block: 35px;
    padding-bottom: 44px;
  }
}

.entry__lists {
  margin-top: 24px;
  width: auto;
  margin-right: auto;
  margin-left: auto;
  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) {
  .entry__lists {
    margin-top: 41px;
    max-width: 912px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    gap: 10px;
  }
}

.entry__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: 8px;
}
.entry__list:not(:last-child) {
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width:900px) {
  .entry__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 128px;
  }
}

.entry__list-title {
  color: #4a3636;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 16px;
}
@media screen and (min-width:900px) {
  .entry__list-title {
    width: 112px;
    white-space: nowrap;
    font-size: 16px;
    padding-left: 32px;
  }
}
.entry__list-title::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #9ed0e0;
  border-radius: 50%;
}
@media screen and (min-width:900px) {
  .entry__list-title::before {
    top: 15px;
    left: 15px;
  }
}

.entry__list-text {
  color: #4a3636;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  vertical-align: middle;
  padding-bottom: 14px;
}
@media screen and (min-width:900px) {
  .entry__list-text {
    width: calc(100% - 224px);
    font-size: 16px;
  }
}

.entry__list-text-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.underline-offset {
  text-underline-offset: 0px;
}

.entry__list-title-lists {
  display: block;
  padding-left: 18px;
  color: #4a3636;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width:900px) {
  .entry__list-title-lists {
    font-size: 16px;
    width: calc(100% - 224px);
    margin-top: 1px;
  }
}

.entry__list-title-list {
  color: #4a3636;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.59;
  position: relative;
}
@media screen and (min-width:900px) {
  .entry__list-title-list {
    font-size: 16px;
    padding-left: 7px;
    word-break: break-all;
    line-height: 1.63;
  }
}
.entry__list-title-list::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #4a3636;
  left: -10px;
  top: 10px;
}
@media screen and (min-width:900px) {
  .entry__list-title-list::before {
    top: 15px;
    left: -8px;
  }
}

.entry-bottom-image {
  display: block;
  margin-top: 30px;
}
@media screen and (min-width:900px) {
  .entry-bottom-image {
    margin-top: 120px;
  }
}
.entry-bottom-image img {
  width: 100%;
}

.link-text {
  -webkit-transition: color 0.3s, -webkit-text-decoration 0.3s;
  transition: color 0.3s, -webkit-text-decoration 0.3s;
  transition: color 0.3s, text-decoration 0.3s;
  transition: color 0.3s, text-decoration 0.3s, -webkit-text-decoration 0.3s;
}
.link-text:hover {
  color: #67b0c7;
  text-decoration: underline;
}

.contact {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 44px;
  padding-inline: 20px;
}
@media screen and (min-width:900px) {
  .contact {
    padding-block: 121px;
  }
}

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

.contact-text {
  margin-top: 23px;
  text-align: center;
  color: #4a3636;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width:900px) {
  .contact-text {
    margin-top: 34px;
    font-size: 16px;
  }
}

.contact__form {
  margin-top: 23px;
}
@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: 24px;
}
@media screen and (min-width:900px) {
  .contact__fields {
    gap: 22px;
  }
}

@media screen and (min-width:900px) {
  .top-position {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

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

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width:900px) {
  .form-field__head {
    width: 180px;
  }
}

.form-field__label {
  color: #4a3636;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width:900px) {
  .form-field__label {
    font-size: 16px;
  }
}

.form-field.is-error .form-field__label {
  color: #ce2073;
}

.form-field__tag {
  display: inline-block;
  border-radius: 4px;
  background: #ce2073;
  padding: 4px 8px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.form-field__item {
  margin-top: 7px;
  width: 100%;
}
@media screen and (min-width:900px) {
  .form-field__item {
    margin-top: 0;
  }
}
.form-field__item [type=text],
.form-field__item [type=email] {
  -webkit-transition: background-color 0.3s, border 0.3s;
  transition: background-color 0.3s, border 0.3s;
}
.form-field__item [type=text]:focus,
.form-field__item [type=email]:focus {
  background-color: #e9f6f8;
  border: 1px solid #9ed0e0;
  outline: none;
}
.form-field__item [type=text],
.form-field__item [type=email],
.form-field__item select,
.form-field__item textarea {
  border-radius: 8px;
  background: #f5f5f5;
  border: none;
  padding: 16px;
  width: 100%;
}
.form-field__item [type=text]::-webkit-input-placeholder, .form-field__item [type=email]::-webkit-input-placeholder, .form-field__item select::-webkit-input-placeholder, .form-field__item textarea::-webkit-input-placeholder {
  color: #ccc;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.form-field__item [type=text]::-moz-placeholder, .form-field__item [type=email]::-moz-placeholder, .form-field__item select::-moz-placeholder, .form-field__item textarea::-moz-placeholder {
  color: #ccc;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.form-field__item [type=text]:-ms-input-placeholder, .form-field__item [type=email]:-ms-input-placeholder, .form-field__item select:-ms-input-placeholder, .form-field__item textarea:-ms-input-placeholder {
  color: #ccc;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.form-field__item [type=text]::-ms-input-placeholder, .form-field__item [type=email]::-ms-input-placeholder, .form-field__item select::-ms-input-placeholder, .form-field__item textarea::-ms-input-placeholder {
  color: #ccc;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
.form-field__item [type=text]::placeholder,
.form-field__item [type=email]::placeholder,
.form-field__item select::placeholder,
.form-field__item textarea::placeholder {
  color: #ccc;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width:900px) {
  .form-field__item [type=text]::-webkit-input-placeholder, .form-field__item [type=email]::-webkit-input-placeholder, .form-field__item select::-webkit-input-placeholder, .form-field__item textarea::-webkit-input-placeholder {
    font-size: 16px;
  }
  .form-field__item [type=text]::-moz-placeholder, .form-field__item [type=email]::-moz-placeholder, .form-field__item select::-moz-placeholder, .form-field__item textarea::-moz-placeholder {
    font-size: 16px;
  }
  .form-field__item [type=text]:-ms-input-placeholder, .form-field__item [type=email]:-ms-input-placeholder, .form-field__item select:-ms-input-placeholder, .form-field__item textarea:-ms-input-placeholder {
    font-size: 16px;
  }
  .form-field__item [type=text]::-ms-input-placeholder, .form-field__item [type=email]::-ms-input-placeholder, .form-field__item select::-ms-input-placeholder, .form-field__item textarea::-ms-input-placeholder {
    font-size: 16px;
  }
  .form-field__item [type=text]::placeholder,
  .form-field__item [type=email]::placeholder,
  .form-field__item select::placeholder,
  .form-field__item textarea::placeholder {
    font-size: 16px;
  }
}
.form-field__item [type=radio] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-field__item [type=radio]:checked + .form-field__radio-text::after {
  opacity: 1;
}
.form-field__item select {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #4a3636;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  padding-right: 67px;
  background-image: url(../img/contact-select-arrow.svg), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat;
  background-position: center right 18.66px, center center;
  background-size: 14.9px 8.78px, auto;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, border 0.3s;
  transition: background-color 0.3s, border 0.3s;
}
@media screen and (min-width:900px) {
  .form-field__item select {
    font-size: 16px;
  }
}
.form-field__item select:focus {
  border: 1px solid #9ed0e0;
  outline: none;
}
.form-field__item .form-field__text.is-error,
.form-field__item .form-field__item__text.is-error {
  background-color: #fff0f7;
  border: 1px solid #ce2073;
}
.form-field__item textarea {
  height: 160px;
  -webkit-transition: background-color 0.3s, border 0.3s;
  transition: background-color 0.3s, border 0.3s;
}
.form-field__item textarea:focus {
  background-color: #e9f6f8;
  border: 1px solid #9ed0e0;
  outline: none;
}

.form-select.is-error {
  background-image: url(../img/contact-select-arrow.svg), linear-gradient(to left, #ce2073 52px, #fff0f7 52px);
  border: 1px solid #ce2073;
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
}
@media screen and (min-width:900px) {
  .form-field__radios {
    height: 56px;
    padding-left: 2px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.form-field__radio-text {
  position: relative;
  padding-left: 32px;
  color: #4a3636;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width:900px) {
  .form-field__radio-text {
    font-size: 16px;
  }
}
.form-field__radio-text:hover::before {
  border: 1px solid #9ed0e0;
}
.form-field__radio-text::before, .form-field__radio-text::after {
  position: absolute;
  content: "";
  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;
}
.form-field__radio-text::after {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #9ed0e0;
  left: 6px;
  opacity: 0;
}

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

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

.form-checkbox__text {
  position: relative;
  padding-left: 36px;
  color: #4a3636;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width:900px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #f5f5f5;
}
.form-checkbox__text::after {
  background: url(../img/contact-check-icon.webp) no-repeat center center/contain;
  width: 14px;
  height: 9px;
  left: 5px;
  opacity: 0;
}
.form-checkbox__text a {
  text-decoration-line: underline;
  color: #4a3636;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-transition: color 0.3s, -webkit-text-decoration 0.3s;
  transition: color 0.3s, -webkit-text-decoration 0.3s;
  transition: color 0.3s, text-decoration 0.3s;
  transition: color 0.3s, text-decoration 0.3s, -webkit-text-decoration 0.3s;
}
@media screen and (min-width:900px) {
  .form-checkbox__text a {
    font-size: 16px;
  }
}
.form-checkbox__text a:hover {
  color: #67b0c7;
  text-decoration: underline;
}

.contact__button {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width:900px) {
  .contact__button {
    margin-top: 38px;
  }
}

.contact__button-input {
  cursor: pointer;
  color: #4a3636;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width:900px) {
  .contact__button-input {
    padding: 4px 38px 6px 38px;
  }
}

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

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

@media screen and (min-width:900px) {
  .footer_bg_pawpads {
    position: absolute;
    top: 80px;
    width: 70px;
    height: auto;
    left: calc(50% + 400px);
  }
}
@media screen and (min-width:1200px) {
  .footer_bg_pawpads {
    position: absolute;
    top: 78px;
    width: 100px;
    height: 220px;
    left: calc(50% + 576px);
  }
}

.footer-text {
  text-align: center;
  color: #4a3636;
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width:900px) {
  .footer-text {
    font-size: 24px;
  }
}

.sns-lists {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}

.sns-icon img {
  width: 32px;
  height: 32px;
}
@media screen and (min-width:900px) {
  .sns-icon img {
    width: 40px;
    height: 40px;
  }
}

.onomichi-logo-footer {
  margin-right: auto;
  margin-left: auto;
  margin-top: 13px;
  width: min(100% - 10px, 327px);
}
.onomichi-logo-footer img {
  vertical-align: middle;
}
@media screen and (min-width:900px) {
  .onomichi-logo-footer {
    margin-top: 40px;
    width: 740px;
    height: 125px;
  }
}

.footer-address {
  margin-right: auto;
  margin-left: auto;
  max-width: 335px;
}
@media screen and (min-width:768px) {
  .footer-address {
    max-width: 600px;
  }
}
@media screen and (min-width:900px) {
  .footer-address {
    max-width: 1024px;
    margin-top: -36px;
  }
}

@media screen and (min-width:900px) {
  .address-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-top: -47px;
  }
}

.footer__address-map {
  width: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
  aspect-ratio: 335/271;
}
.footer__address-map iframe {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}
@media screen and (min-width:900px) {
  .footer__address-map {
    width: 50%;
    border-top-left-radius: 0;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    aspect-ratio: 512/400;
  }
}

.footer-logo {
  width: 153px;
  height: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width:900px) {
  .footer-logo {
    margin-right: 0;
    margin-left: 0;
    width: 183px;
    height: 24px;
  }
}

.address-body {
  background-color: #fff;
  padding-top: 19px;
  padding-bottom: 28px;
  padding-inline: 24px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
@media screen and (min-width:900px) {
  .address-body {
    width: 50%;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 0;
    padding-block: 106px;
    -webkit-padding-start: 61.5px;
            padding-inline-start: 61.5px;
  }
}

.address-body-info {
  margin-top: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #4a3636;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1.6;
  font-style: normal;
}
@media screen and (min-width:900px) {
  .address-body-info {
    margin-top: 26px;
    gap: 12px;
    font-size: 16px;
  }
}

.address-dd-dt-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (min-width:900px) {
  .address-dd-dt-wrap {
    gap: 56px;
  }
}

.address-title {
  font-weight: 700;
  position: relative;
  padding-left: 20px;
  width: 64px;
  white-space: nowrap;
}
@media screen and (min-width:900px) {
  .address-title {
    padding-left: 16px;
  }
}
.address-title::before {
  position: absolute;
  content: "";
  background: #9ed0e0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 4px;
}
@media screen and (min-width:768px) {
  .address-title::before {
    left: 1px;
  }
}

.address-title-description {
  font-weight: 400;
  white-space: nowrap;
}
@media screen and (max-width: 350px) {
  .address-title-description {
    font-size: 11px;
  }
}

.entry-br {
  display: none;
}
@media screen and (max-width: 350px) {
  .entry-br {
    display: block;
  }
}

.footer__pagetop {
  padding-block: 24px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0.5s;
  transition: opacity 0.5s, visibility 0.5s;
}
@media screen and (min-width:900px) {
  .footer__pagetop {
    position: fixed;
    right: 40px;
    bottom: 36px;
    z-index: 100;
  }
}
.footer__pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.pagetop {
  display: block;
}
.pagetop img {
  width: 77px;
}
@media screen and (min-width:900px) {
  .pagetop img {
    width: 100px;
  }
}

.footer__bottom {
  margin-top: 45.7px;
  background: #67b0c7;
  text-align: center;
  position: relative;
}
@media screen and (min-width:900px) {
  .footer__bottom {
    margin-top: 240px;
  }
}
.footer__bottom::before {
  position: absolute;
  content: "";
  top: -46.7px;
  left: 0;
  width: 100%;
  height: 46.7px;
  background-repeat: repeat-x;
  background-size: contain;
  background-position: left -4px center;
  background-image: url(../img/sp/spots_bg_wave-sp.svg), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
}
@media screen and (min-width:900px) {
  .footer__bottom::before {
    background-image: url(../img/spots_bg_wave-pc.svg), linear-gradient(to bottom, transparent 33px, #67b0c7 33px);
    top: -119px;
    height: 120px;
  }
}

.footer-copyright {
  display: block;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: 25px;
}
@media screen and (min-width:900px) {
  .footer-copyright {
    font-size: 14px;
    padding-bottom: 32px;
  }
}