@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*:focus {
  outline-color: #9ed0e0;
}

body {
  margin-inline: auto;
  background-color: #e9f6f8;
  color: #4a3636;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  width: 100%;
  height: auto;
  display: inline-block;
}

span,
a,
button {
  display: inline-block;
}

.c-button {
  display: inline-block;
  padding: 4px 22px 6px;
  border: 2px solid #4a3636;
  font-size: 16px;
  border-radius: 40px;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  background: #ffffff;
  color: #4a3636;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.c-button:hover {
  background-color: #ffee56;
}

.c-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .c-heading {
    gap: 8px;
  }
}

.c-heading-icon {
  width: 37.333px;
  height: 37.333px;
  background: url(../img/icon_about.svg) center center/contain;
}
@media screen and (min-width: 768px) {
  .c-heading-icon {
    width: 48px;
    height: 48px;
  }
}

.c-heading__en-title {
  font-family: "Courgette", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .c-heading__en-title {
    font-size: 20px;
  }
}

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

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  overflow: hidden;
  width: 100%;
  height: 64px;
  background-color: #ffffff;
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: inherit;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    max-width: 1512px;
    padding-inline: 24px;
  }
}

.header-logo {
  width: 210px;
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
}
@media screen and (min-width: 1024px ) {
  .header-logo {
    width: 183px;
  }
}
.header-logo:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.p-header-nav {
  display: none;
}
@media screen and (min-width: 1024px ) {
  .p-header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-header-nav__link {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  padding-block: 8px;
  padding-inline: 6px;
}
.p-header-nav__link:hover {
  color: #67b0c7;
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
}

.p-header-nav__button {
  margin-left: 10px;
  padding: 2px 22px 4px;
  border: 2px solid #4a3636;
  font-size: 14px;
}

.p-drawer-button {
  position: relative;
  width: 32px;
  height: 27px;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.p-drawer-button.is-checked .p-drawer-button__bar:nth-of-type(1) {
  display: none;
}
.p-drawer-button.is-checked .p-drawer-button__bar:nth-of-type(2) {
  top: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-drawer-button.is-checked .p-drawer-button__bar:nth-of-type(3) {
  top: 12px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-drawer-button__bar {
  position: absolute;
  left: 0;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
  top: 24px;
}
.p-drawer-button__bar:nth-of-type(1) {
  top: 0;
}
.p-drawer-button__bar:nth-of-type(2) {
  top: 12px;
}
.p-drawer-bar-1st {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -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: 1.6px;
}

.p-drawer-bar-1st__middle {
  width: 25.6px;
  height: 3px;
  border-radius: 3px;
  background: #4a3636;
}

.p-drawer-bar-1st__short {
  width: 4.8px;
  height: 3px;
  border-radius: 3px;
  background: #4a3636;
}

.p-drawer-bar-2nd,
.p-drawer-bar-3rd {
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: #4a3636;
}

.p-header-drawer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  width: 100%;
  height: 100%;
  padding-top: 126px;
  background-color: #ffffff;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
@media screen and (max-width: 374px) {
  .p-header-drawer-nav {
    padding-top: 62px;
  }
}
.p-header-drawer-nav.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-header-drawer-nav__link {
  padding: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
.p-header-drawer-nav__link:hover {
  color: #67b0c7;
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
}

.p-header-drawer-nav__button {
  margin-block: 20px;
  padding: 4px 22px 6px;
  border: 2px solid #4a3636;
  font-size: 16px;
}

.l-fv {
  width: 100%;
  height: 554px;
  margin-top: 64px;
  margin-bottom: 156px;
  border: 1px solid #000;
  border-radius: 0px 0px 24px 24px;
  background: url(../img/bg_fv_sp.webp) lightgray 50%/cover no-repeat;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .l-fv {
    height: 740px;
    margin-bottom: 97px;
    border: none;
    border-radius: 0px 0px 40px 40px;
    background-image: url(../img/bg_fv_PC.webp);
    background-position: center bottom;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.l-fv__inner {
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-fv__inner {
    max-width: 896px;
    padding-inline: 24px;
  }
}

.l-fv__lead {
  padding-top: 17px;
}
@media screen and (min-width: 768px) {
  .l-fv__lead {
    padding-top: 35px;
  }
}

.fv-lead {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  font-family: "Kiwi Maru", sans-serif;
  text-align: center;
  text-shadow: 0px 0px 30px #ffffff;
}
@media screen and (min-width: 768px) {
  .fv-lead {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
    font-family: "Kiwi Maru", sans-serif;
  }
}

.l-fv__title {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .l-fv__title {
    margin-top: 24px;
  }
}

.p-fv-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-fv-title {
    gap: 16px;
  }
}

.p-fv-title__row1,
.p-fv-title__row2 {
  background-color: #ffffff;
}

.p-fv-title__row1 {
  width: 335px;
}
@media screen and (min-width: 768px) {
  .p-fv-title__row1 {
    width: 520px;
  }
}

.p-fv-title__row2 {
  width: 240px;
}
@media screen and (min-width: 768px) {
  .p-fv-title__row2 {
    width: 356px;
  }
}

.l-fv__image-wrapper {
  position: relative;
  height: 532px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-fv__image-wrapper {
    height: 603px;
  }
}

.fv-image__fukidashi {
  position: absolute;
  top: 17px;
  right: calc(50% + 25.5px);
  width: 142px;
}
@media screen and (min-width: 768px) {
  .fv-image__fukidashi {
    top: 0;
    right: calc(50% + 144.5px);
    width: 240px;
  }
}

.fv-image__present {
  position: absolute;
  top: 10px;
  left: calc(50% + 32.5px);
  width: 110px;
}
@media screen and (min-width: 768px) {
  .fv-image__present {
    top: 17px;
    right: 127px;
    left: calc(50% + 117.5px);
    width: 180px;
  }
}

.p-fv-smartphone {
  position: absolute;
  top: 113px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
  height: 408px;
  background: url(../img/img_smartphone_sp.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-fv-smartphone {
    top: 33px;
    width: 250px;
    height: 510px;
    background-image: url(../img/img_smartphone_PC.webp);
  }
}

.p-fv-smartphone__card {
  position: absolute;
  top: 123px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-fv-smartphone__card {
    top: 152px;
  }
}

.p-fv-card {
  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: 13px;
  width: 160px;
  padding-bottom: 18px;
  overflow: hidden;
  border-radius: 12.8px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-fv-card {
    gap: 16px;
    width: 200px;
    padding-bottom: 25px;
  }
}

.p-fv-card__head {
  width: 100%;
  padding: 6.4px 9.6px;
  color: #ffffff;
  font-size: 12.8px;
  font-weight: 700;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
}
@media screen and (min-width: 768px) {
  .p-fv-card__head {
    padding: 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
  }
}

.p-fv-card__body {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}
@media screen and (min-width: 768px) {
  .p-fv-card__body {
    gap: 4px;
  }
}

.p-fv-card__text {
  border-bottom: 2.4px solid #ce2073;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-fv-card__text {
    border-bottom: 3px solid #ce2073;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
  }
}

.p-fv-card__time {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-fv-card__time {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
  }
}

.p-fv-card__button {
  padding: 2px 22px 4px;
  border: 2px solid #4a3636;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-fv-card__button {
    padding: 4px 22px 6px;
    border: 2px solid #4a3636;
    font-size: 16px;
  }
}

.fv-image__drink {
  position: absolute;
  top: 391px;
  right: calc(50% + 77.5px);
  width: 47.257px;
  height: 124.012px;
  background: url(../img/img_drink.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .fv-image__drink {
    top: 227px;
    left: 100px;
    width: 111px;
    height: 292px;
  }
}

.fv-image__food {
  position: absolute;
  top: 480px;
  right: calc(50% + 114.5px);
  width: 54.069px;
  height: 52.238px;
  background: url(../img/img_food.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .fv-image__food {
    top: 436px;
    left: 0;
    width: 127px;
    height: 123px;
  }
}

.fv-image__cat-black {
  position: absolute;
  top: 405px;
  left: calc(50% + 105.5px);
  width: 62px;
  height: 69px;
  background: url(../img/img_cat-black.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .fv-image__cat-black {
    top: 309px;
    left: calc(100% - 234px);
    width: 170px;
    height: 190px;
  }
}

.fv-image__cat-brown {
  position: absolute;
  top: 460px;
  left: calc(50% + 61.5px);
  width: 98px;
  height: 72px;
  background: url(../img/img_cat-brown.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .fv-image__cat-brown {
    top: 429px;
    left: calc(100% - 233px);
    width: 233px;
    height: 174px;
  }
}

.l-about {
  position: relative;
  width: 100%;
  height: 1017px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-about {
    height: 1367px;
  }
}

.l-about__image-narrow {
  width: 100%;
  max-width: 1512px;
  height: 605px;
  position: absolute;
  top: 22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 40;
}
@media screen and (min-width: 768px) {
  .l-about__image-narrow {
    height: 634px;
    top: 0;
  }
}

.l-about__image-wide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 30;
  width: 100%;
  height: 433px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-about__image-wide {
    height: 817px;
    top: 401px;
  }
}

.l-about__content {
  position: absolute;
  top: 32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .l-about__content {
    top: 80px;
  }
}
.l-about__content::after {
  content: "";
  position: absolute;
  bottom: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 36px;
  background: url(../img/img_arrow.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .l-about__content::after {
    bottom: -50px;
    width: 140px;
    height: 50px;
  }
}

.l-about__slider {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 60;
  width: 100%;
}
.l-about__slider::before {
  content: "";
  position: absolute;
  top: -38px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 356.642px;
  height: 40px;
  background: url(../img/outline_ONOMICHI_sp.svg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .l-about__slider::before {
    top: -76px;
    width: 720px;
    height: 78.41px;
    background-image: url(../img/outline_ONOMICHI_pc.svg);
  }
}
@media screen and (min-width: 1024px ) {
  .l-about__slider::before {
    top: -93px;
    width: 890.604px;
    height: 97px;
    background-image: url(../img/outline_ONOMICHI_pc.svg);
  }
}

.image-narrow__stripe {
  display: none;
}
@media screen and (min-width: 1176px) {
  .image-narrow__stripe {
    display: block;
    width: 250px;
    height: 250px;
    border-radius: 24px;
    background: repeating-linear-gradient(45deg, #9ed0e0, #9ed0e0 6px, transparent 6px, transparent 12px);
    position: absolute;
    top: 60px;
    left: -94px;
  }
}
@media screen and (min-width: 1368px) {
  .image-narrow__stripe {
    width: 250px;
    height: 250px;
    border-radius: 24px;
    background: repeating-linear-gradient(45deg, #9ed0e0, #9ed0e0 6px, transparent 6px, transparent 12px);
    position: absolute;
    top: 60px;
    left: auto;
    right: calc(50% + 527px);
  }
}

.image-narrow__rope-car {
  width: 200px;
  height: 200px;
  border-radius: 24px;
  overflow: hidden;
  background: url(../img/photo_rope-car_sp.webp) no-repeat center center/contain;
  position: absolute;
  top: 405px;
  right: calc(50% + 127px);
}
@media screen and (min-width: 768px) {
  .image-narrow__rope-car {
    width: 480px;
    height: 480px;
    border-radius: 40px;
    top: 154px;
    left: -410px;
    right: auto;
    background-image: url(../img/photo_rope-car_pc.webp);
  }
}
@media screen and (min-width: 1368px) {
  .image-narrow__rope-car {
    width: 480px;
    height: 480px;
    border-radius: 40px;
    top: 154px;
    left: auto;
    right: calc(50% + 614px);
  }
}

.image-narrow__pawpads {
  width: 54px;
  height: 120px;
  position: absolute;
  top: 0px;
  left: calc(50% + 134px);
  background: url(../img/img_pawpads.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .image-narrow__pawpads {
    width: 100px;
    height: 220px;
    top: 0px;
    left: calc(50% + 364px);
  }
}
@media screen and (min-width: 1368px) {
  .image-narrow__pawpads {
    width: 100px;
    height: 220px;
    top: 0px;
    left: calc(50% + 492px);
  }
}

.image-narrow__ferry {
  width: 200px;
  height: 200px;
  border-radius: 24px;
  overflow: hidden;
  position: absolute;
  top: 283px;
  left: calc(50% + 128px);
  background: url(../img/photo_ferry.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .image-narrow__ferry {
    width: 480px;
    height: 480px;
    border-radius: 40px;
    top: 153.07px;
    left: auto;
    right: -355px;
  }
}
@media screen and (min-width: 1368px) {
  .image-narrow__ferry {
    width: 480px;
    height: 480px;
    border-radius: 40px;
    top: 153.07px;
    left: calc(50% + 559px);
  }
}

.image-wide__srope {
  width: 216px;
  height: 433px;
  position: absolute;
  bottom: 2px;
  left: -55px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(68.58%, rgba(233, 246, 248, 0)), color-stop(80.78%, #e9f6f8)), url(../img/img_srope.webp) no-repeat center center/contain;
  background: linear-gradient(180deg, rgba(233, 246, 248, 0) 68.58%, #e9f6f8 80.78%), url(../img/img_srope.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .image-wide__srope {
    width: 350px;
    height: 670px;
    bottom: -118px;
    left: -87px;
  }
}
@media screen and (min-width: 1024px ) {
  .image-wide__srope {
    background: url(../img/img_srope.webp) no-repeat center center/contain;
  }
}
@media screen and (min-width: 1176px) {
  .image-wide__srope {
    width: 427px;
    height: 817px;
    bottom: 2px;
    left: -102px;
  }
}

.image-wide__wave1 {
  display: none;
}
@media screen and (min-width: 1368px) {
  .image-wide__wave1 {
    display: block;
    width: 806.851px;
    height: 12.006px;
    position: absolute;
    top: 286px;
    right: -484px;
    background: url(../img/img_wave.svg) no-repeat center center/contain;
  }
}

.image-wide__wave2 {
  display: none;
}
@media screen and (min-width: 1368px) {
  .image-wide__wave2 {
    display: block;
    width: 806.851px;
    height: 12.006px;
    position: absolute;
    top: 319px;
    right: -429px;
    background: url(../img/img_wave.svg) no-repeat center center/contain;
  }
}

.image-wide__button {
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 217px;
  right: 21px;
  background: url(../img/img_button.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .image-wide__button {
    width: 112px;
    height: 112px;
    bottom: 267px;
    right: 0px;
  }
}
@media screen and (min-width: 1368px) {
  .image-wide__button {
    width: 101px;
    height: 100.047px;
    top: 280px;
    right: 150px;
  }
}

.image-wide__cloth {
  width: 133px;
  height: 65.003px;
  position: absolute;
  bottom: 158px;
  right: 57px;
  background: url(../img/img_cloth.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .image-wide__cloth {
    width: 330px;
    height: 122px;
    bottom: 158px;
    right: 57px;
  }
}
@media screen and (min-width: 1368px) {
  .image-wide__cloth {
    width: 308px;
    height: 150.604px;
    top: 436px;
    right: 74px;
  }
}

.about-content {
  position: relative;
  width: 100%;
  padding-inline: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about-content {
    padding-inline: 24px;
  }
}

.about-content__inner {
  position: relative;
  max-width: 335px;
  margin-inline: auto;
  padding-block: 40px;
  border-radius: 24px;
  background-color: white;
}
@media screen and (min-width: 768px) {
  .about-content__inner {
    max-width: 848px;
    border-radius: 40px;
  }
}

.about-content__heading-photo-l {
  position: absolute;
  top: 36px;
  right: calc(50% + 51px);
  width: 80px;
  height: 60px;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
  background: url(../img/photo_about-heading-l.webp) center center/cover;
}
@media screen and (min-width: 768px) {
  .about-content__heading-photo-l {
    width: 134px;
    height: 100px;
    top: 49px;
    right: calc(50% + 198px);
  }
}

.about-content__heading-photo-r {
  width: 80px;
  height: 60px;
  background: url(../img/photo_about-heading-r.webp) center center/contain;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
  position: absolute;
  top: 35px;
  left: calc(50% + 64px);
}
@media screen and (min-width: 768px) {
  .about-content__heading-photo-r {
    width: 134px;
    height: 100px;
    top: 54px;
    left: calc(50% + 196px);
  }
}

.about-content__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .about-content__text {
    margin-top: 32px;
  }
}

.about-content__text__lead {
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .about-content__text__lead {
    margin-bottom: 32px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
  }
}

@media screen and (min-width: 768px) {
  .about-content__text__main {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
  }
}
.about-content__text__main + .about-content__text__main {
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .about-content__text__main + .about-content__text__main {
    margin-top: 27px;
  }
}

.about-content__text__present {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 32px;
  padding-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  border-bottom: 2px dashed #9ed0e0;
}
@media screen and (min-width: 768px) {
  .about-content__text__present {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
    margin-top: 45px;
    padding-bottom: 8px;
  }
}

.about-content__button {
  margin-top: 24px;
  padding: 4px 22px 6px;
  border: 2px solid #4a3636;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .about-content__button {
    margin-top: 34px;
    padding: 7px 37px 9px;
    border: 3px solid #4a3636;
    font-size: 20px;
  }
}

.about-slider__wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.about-slider__slide {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .about-slider__slide {
    width: 160px;
    height: 160px;
    border-radius: 19px;
  }
}
@media screen and (min-width: 1024px ) {
  .about-slider__slide {
    width: 200px;
    height: 200px;
    border-radius: 24px;
  }
}

.l-step {
  max-width: 100%;
  overflow: hidden;
}

.l-step__inner {
  padding-top: 64.8px;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-step__inner {
    padding-top: 118px;
  }
}

.l-step__image-wrapper {
  position: absolute;
  z-index: 40;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 1512px;
  height: 1381px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-step__image-wrapper {
    height: 1600px;
  }
}
@media screen and (min-width: 1024px ) {
  .l-step__image-wrapper {
    height: 960px;
  }
}

.step-image__map {
  width: 149px;
  height: 204px;
  background: url(../img/img_map.webp) no-repeat center center/contain;
  position: absolute;
  top: 64px;
  right: calc(50% + 46px);
}
@media screen and (min-width: 768px) {
  .step-image__map {
    width: 248px;
    height: 340px;
    top: 80px;
    right: calc(50% + 95px);
  }
}
@media screen and (min-width: 1024px ) {
  .step-image__map {
    width: 420px;
    height: 628.5px;
    top: 60px;
    right: calc(50% + 302px);
  }
}

.step-image__pawpads-rev {
  width: 55px;
  height: 120px;
  background: url(../img/img_pawpads_rev.webp) no-repeat center center/contain;
  position: absolute;
  top: 614.35px;
  right: calc(50% + 112px);
}
@media screen and (min-width: 768px) {
  .step-image__pawpads-rev {
    width: 76px;
    height: 167px;
    top: 880px;
    right: calc(50% + 194px);
  }
}
@media screen and (min-width: 1024px ) {
  .step-image__pawpads-rev {
    width: 100px;
    height: 220px;
    top: 700px;
    right: calc(50% + 618px);
  }
}

.step-image__cat-tabby {
  width: 105px;
  height: 63px;
  background: url(../img/img_cat-tabby.webp) no-repeat center center/contain;
  position: absolute;
  top: 64.8px;
  left: calc(50% + 58px);
}
@media screen and (min-width: 768px) {
  .step-image__cat-tabby {
    width: 172px;
    height: 103px;
    top: 94px;
    left: calc(50% + 105px);
  }
}
@media screen and (min-width: 1024px ) {
  .step-image__cat-tabby {
    width: 238px;
    height: 141px;
    top: 94px;
    left: calc(50% + 285px);
  }
}

.step-image__cat-gray {
  width: 94px;
  height: 80px;
  background: url(../img/img_cat-gray.webp) no-repeat center center/contain;
  position: absolute;
  top: 69.8px;
  right: -31px;
  left: calc(50% + 124px);
}
@media screen and (min-width: 768px) {
  .step-image__cat-gray {
    width: 154px;
    height: 131px;
    top: 103.97px;
    left: calc(50% + 214px);
  }
}
@media screen and (min-width: 1024px ) {
  .step-image__cat-gray {
    width: 214px;
    height: 181px;
    top: 103.97px;
    left: calc(50% + 436px);
  }
}

.step-image__pawpads-rev2 {
  width: 55px;
  height: 120px;
  background: url(../img/img_pawpads_rev.webp) no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  position: absolute;
  top: 138.8px;
  left: calc(50% + 113px);
}
@media screen and (min-width: 768px) {
  .step-image__pawpads-rev2 {
    width: 76px;
    height: 167px;
    top: 212px;
    left: calc(50% + 197px);
  }
}
@media screen and (min-width: 1024px ) {
  .step-image__pawpads-rev2 {
    width: 100px;
    height: 220px;
    top: 268px;
    left: calc(50% + 621px);
  }
}

.step-image__pawpads {
  width: 55px;
  height: 120px;
  background: url(../img/img_pawpads.webp) no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  position: absolute;
  top: 945px;
  left: calc(50% + 113px);
}
@media screen and (min-width: 768px) {
  .step-image__pawpads {
    width: 76px;
    height: 167px;
    top: 1320px;
    left: calc(50% + 190px);
  }
}

.l-step__heading {
  position: relative;
  z-index: 50;
}

.step-heading-icon {
  background-image: url(../img/icon_step.svg);
}

.l-step__cards {
  width: 100%;
  max-width: 1024px;
  margin-inline: auto;
  margin-top: 32px;
  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: 32px;
  position: relative;
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .l-step__cards {
    margin-top: 40px;
    gap: 44px;
  }
}
@media screen and (min-width: 1024px ) {
  .l-step__cards {
    margin-top: 40px;
    -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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 32px;
  }
}

.step-card {
  text-align: center;
  width: 100%;
  padding-bottom: 16px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .step-card {
    width: 320px;
    padding-bottom: 0px;
  }
}
.step-card:nth-child(2)::before, .step-card:nth-child(3)::before {
  content: "";
  position: absolute;
  top: -33px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(0deg);
          transform: translateX(-50%) rotate(0deg);
  width: 9px;
  height: 35px;
  background: url(../img/img_step-line_sp.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .step-card:nth-child(2)::before, .step-card:nth-child(3)::before {
    top: -33px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(0deg);
            transform: translateX(-50%) rotate(0deg);
    width: 97px;
    height: 41px;
    background-image: url(../img/img_step-line_sp.svg);
  }
}
@media screen and (min-width: 1024px ) {
  .step-card:nth-child(2)::before, .step-card:nth-child(3)::before {
    top: 206px;
    -webkit-transform: translateX(0%) rotate(0deg);
            transform: translateX(0%) rotate(0deg);
    width: 113px;
    height: 24px;
    background-image: url(../img/img_step-line_pc.svg);
  }
}
@media screen and (min-width: 1024px ) {
  .step-card:nth-child(2) {
    padding-top: 69px;
  }
  .step-card:nth-child(2)::before {
    left: -97px;
  }
}
@media screen and (min-width: 1024px ) {
  .step-card:nth-child(3)::before {
    left: -89px;
  }
}

.step-card__image {
  width: 196px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .step-card__image {
    width: 280px;
  }
}

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

.step-card__text {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .step-card__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.63;
    font-family: "Noto Sans JP", sans-serif;
  }
}

.step-card__link {
  position: relative;
  display: inline-block;
  margin-top: 16px;
  padding: 8px 12px 8px 40px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .step-card__link {
    padding: 8px 12px 8px 44px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
  }
}
.step-card__link:hover {
  color: #67b0c7;
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
}
.step-card__link::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 12px;
  background: url(../img/icon_instagram.svg) center center/contain;
}
@media screen and (min-width: 768px) {
  .step-card__link::before {
    width: 24px;
    height: 24px;
  }
}

.l-step__button {
  position: relative;
  z-index: 50;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-step__button {
    margin-top: 48px;
  }
}
.l-step__button a {
  padding: 4px 22px 6px;
  border: 2px solid #4a3636;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .l-step__button a {
    padding: 7px 37px 9px;
    border: 3px solid #4a3636;
    font-size: 20px;
  }
}

.l-prizes {
  position: relative;
  width: 100%;
  padding-top: 17.67px;
  padding-bottom: 216px;
  overflow: hidden;
}
@media screen and (min-width: 1024px ) {
  .l-prizes {
    padding-top: 85px;
    padding-bottom: 639px;
  }
}

.l-prizes__inner {
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-prizes__inner {
    max-width: 1024px;
  }
}

.l-prizes-image__triangles {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-prizes-image__triangles {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 50px;
  }
}

.p-prizes-image__triangle-left,
.p-prizes-image__triangle-right {
  width: 315px;
  height: 86px;
}

@media screen and (min-width: 1024px ) {
  .p-prizes-image__triangle-left {
    background: url(../img/img_triangle_l.svg) center center/contain;
  }
}

@media screen and (min-width: 1024px ) {
  .p-prizes-image__triangle-right {
    background: url(../img/img_triangle_r.svg) center center/contain;
  }
}

.l-prizes__content-box {
  margin-top: 83px;
}
@media screen and (min-width: 768px) {
  .l-prizes__content-box {
    margin-top: 36px;
  }
}

.p-prizes-content {
  position: relative;
  max-width: 375px;
  margin-inline: auto;
  padding-block: 59.33px 34.67px;
  padding-inline: 5px;
  border-radius: 24px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-prizes-content {
    max-width: 706px;
    padding-block: 64.03px 51px;
    padding-block: 64.03px 56px;
    padding-inline: 24px;
  }
}
@media screen and (min-width: 1024px ) {
  .p-prizes-content {
    max-width: 100%;
  }
}
.p-prizes-content::before {
  content: "";
  position: absolute;
  top: -81px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 238px;
  height: 83px;
  background: url(../img/img_prizes-heading-deco_sp.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-prizes-content::before {
    top: -147px;
    width: 365.624px;
    height: 148.967px;
    background-image: url(../img/img_prizes-heading-deco_pc.svg);
  }
}

.p-prizes-content__heading {
  position: absolute;
  top: -64px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-prizes-content__heading {
    top: -120px;
  }
}

.p-prizes-heading-icon {
  background-image: url(../img/icon_prizes.svg);
}

.p-prizes-content__text {
  margin-inline: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-prizes-content__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
  }
}

.p-prizes-content__cards {
  margin-top: 24px;
}
@media screen and (min-width: 1024px ) {
  .p-prizes-content__cards {
    margin-top: 32px;
  }
}

.p-prizes-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .p-prizes-cards {
    gap: 40px 32px;
  }
}

.p-prizes-card {
  position: relative;
  width: calc(50% - 22.5px);
  height: 220px;
}
@media screen and (min-width: 768px) {
  .p-prizes-card {
    width: calc(50% - 48px);
    height: 360px;
  }
}
@media screen and (min-width: 1024px ) {
  .p-prizes-card {
    width: calc(33.3333333333% - 42.6666666667px);
    height: 360px;
  }
  .p-prizes-card:nth-of-type(1), .p-prizes-card:nth-of-type(2) {
    width: calc(50% - 48px);
    height: 510px;
  }
  .p-prizes-card:nth-of-type(1) .p-prizes-card__head, .p-prizes-card:nth-of-type(2) .p-prizes-card__head {
    width: 100px;
    height: 100px;
  }
  .p-prizes-card:nth-of-type(1) .p-prizes-card__head-text, .p-prizes-card:nth-of-type(2) .p-prizes-card__head-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
  }
  .p-prizes-card:nth-of-type(1) .p-prizes-card__head-number, .p-prizes-card:nth-of-type(2) .p-prizes-card__head-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    font-family: "Josefin Sans", sans-serif;
  }
  .p-prizes-card:nth-of-type(1) .p-prizes-card__body, .p-prizes-card:nth-of-type(2) .p-prizes-card__body {
    height: 460px;
  }
  .p-prizes-card:nth-of-type(1) .p-prizes-card__modal-open-button, .p-prizes-card:nth-of-type(2) .p-prizes-card__modal-open-button {
    height: 460px;
  }
  .p-prizes-card:nth-of-type(1) .p-prizes-card__body::before, .p-prizes-card:nth-of-type(2) .p-prizes-card__body::before {
    width: 100px;
    height: 100px;
  }
  .p-prizes-card:nth-of-type(1) .p-prizes-card__body::after, .p-prizes-card:nth-of-type(2) .p-prizes-card__body::after {
    bottom: 15px;
    right: 13px;
    width: 32px;
    height: 32px;
  }
  .p-prizes-card:nth-of-type(1) .p-prizes-card__body .p-prizes-card__body-image, .p-prizes-card:nth-of-type(2) .p-prizes-card__body .p-prizes-card__body-image {
    height: 340px;
  }
  .p-prizes-card:nth-of-type(1) .p-prizes-card__body .p-prizes-card__body-text, .p-prizes-card:nth-of-type(2) .p-prizes-card__body .p-prizes-card__body-text {
    height: 120px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
  }
}

.p-prizes-card__head {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 70;
  width: 46px;
  height: 46px;
  background: url(../img/img_prizes-card-head_pc.svg) no-repeat center center/contain;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-prizes-card__head {
    width: 80px;
    height: 80px;
  }
}

.p-prizes-card__head-text {
  margin-top: 2px;
  font-size: 7.68px;
  font-weight: 700;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 1024px ) {
  .p-prizes-card__head-text {
    font-size: 12.8px;
    font-weight: 700;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
  }
}

.p-prizes-card__head-number {
  font-size: 23.04px;
  font-weight: 700;
  line-height: 1;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-prizes-card__head-number {
    font-size: 38.4px;
    font-weight: 700;
    line-height: 1;
    font-family: "Josefin Sans", sans-serif;
  }
}

.p-prizes-card__modal-open-button {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 60;
  width: 100%;
  height: 196px;
  border-radius: 12px;
}
@media screen and (min-width: 768px) {
  .p-prizes-card__modal-open-button {
    height: 320px;
    border-radius: 24px;
  }
}
.p-prizes-card__modal-open-button:hover {
  cursor: pointer;
}
.p-prizes-card__modal-open-button:hover + .p-prizes-card__body {
  border: 4px solid #9ed0e0;
}
.p-prizes-card__modal-open-button:hover + .p-prizes-card__body .p-prizes-card__body-image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.p-prizes-card__modal-open-button:hover + .p-prizes-card__body::before {
  background-color: #9ed0e0;
}

.p-prizes-card__body {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: absolute;
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 196px;
  overflow: hidden;
  border: 4px solid #ffffff;
  border-radius: 12px;
  background-color: #f5f5f5;
}
@media screen and (min-width: 768px) {
  .p-prizes-card__body {
    height: 320px;
    border: 4px solid #ffffff;
    border-radius: 24px;
  }
}
.p-prizes-card__body::before {
  content: "";
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  background-color: #67b0c7;
}
@media screen and (min-width: 768px) {
  .p-prizes-card__body::before {
    width: 66px;
    height: 66px;
  }
}
.p-prizes-card__body::after {
  content: "";
  position: absolute;
  bottom: 6.12px;
  right: 5.22px;
  width: 11.52px;
  height: 11.52px;
  background: url(../img/icon_loupe.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-prizes-card__body::after {
    bottom: 10px;
    right: 10px;
    width: 20.48px;
    height: 20.48px;
  }
}

.p-prizes-card__body-image {
  display: inline-block;
  overflow: hidden;
  height: 140px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-prizes-card__body-image {
    height: 240px;
  }
}
.p-prizes-card__body-image img {
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-prizes-card__body-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  height: 56px;
  margin-top: -5px;
}
@media screen and (min-width: 768px) {
  .p-prizes-card__body-text {
    height: 80px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
  }
}

.p-prizes-content__button {
  margin-top: 18px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-prizes-content__button {
    margin-top: 38px;
  }
}
.p-prizes-content__button a {
  padding: 4px 22px 6px;
  border: 2px solid #4a3636;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-prizes-content__button a {
    padding: 7px 37px 9px;
    border: 3px solid #4a3636;
    font-size: 20px;
  }
}

.p-prizes-modal {
  max-width: unset;
  max-height: unset;
  position: fixed;
  z-index: 80;
  width: 100%;
  height: 100%;
  overflow: auto;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  overscroll-behavior-y: none;
}
.p-prizes-modal::-ms-backdrop {
  opacity: 0.2;
  background: #000;
}
.p-prizes-modal::backdrop {
  opacity: 0.2;
  background: #000;
}

.p-prizes-modal-card {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  height: 480px;
  width: 336px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-prizes-modal-card {
    height: 650px;
    width: 480px;
    border-radius: 24px;
  }
}

.p-prizes-modal-card__img {
  height: 210px;
}
@media screen and (min-width: 768px) {
  .p-prizes-modal-card__img {
    height: 300px;
  }
}
.p-prizes-modal-card__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-prizes-modal-card__body {
  height: 270px;
  padding-top: 39px;
  padding-inline: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-prizes-modal-card__body {
    height: 350px;
    padding-top: 32px;
    padding-inline: 40px;
  }
}

.p-prizes-modal-card__body-title {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-prizes-modal-card__body-title {
    font-size: 20px;
  }
}

.p-prizes-modal-card__body-text {
  font-size: 12px;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .p-prizes-modal-card__body-text {
    font-size: 16px;
  }
}

.p-prizes-modal-card__body-button {
  margin-top: 16px;
  padding: 4px 22px 6px;
  border: 2px solid #4a3636;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .p-prizes-modal-card__body-button {
    margin-top: 30px;
  }
}

.l-prizes__bg-photo {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#e9f6f8), color-stop(51.04%, rgba(255, 255, 255, 0.6))), url(../img/bg_prizes.webp) center bottom/cover no-repeat;
  background: linear-gradient(180deg, #e9f6f8 0%, rgba(255, 255, 255, 0.6) 51.04%), url(../img/bg_prizes.webp) center bottom/cover no-repeat;
}
@media screen and (min-width: 1024px ) {
  .l-prizes__bg-photo {
    height: 640px;
  }
}

.l-spots {
  position: relative;
  width: 100%;
  padding-bottom: 24px;
  background-color: #67b0c7;
}
.l-spots::before {
  content: "";
  position: absolute;
  top: -45.715px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 45.715px;
  background: url(../img/img_bg-wave_sp.svg) repeat-x left top;
}
@media screen and (min-width: 1024px ) {
  .l-spots::before {
    top: -119px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 120px;
    background-image: url(../img/img_bg-wave_pc.svg);
  }
}
.l-spots::after {
  content: "";
  position: absolute;
  bottom: -43px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  width: 100%;
  height: 45.715px;
  background: url(../img/img_bg-wave_rev_sp.svg) repeat-x left bottom;
}
@media screen and (min-width: 1024px ) {
  .l-spots::after {
    bottom: -99px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 120px;
    background-image: url(../img/img_bg-wave_rev_pc.svg);
  }
}

@media screen and (min-width: 1024px ) {
  .l-spots__image-pawpads {
    position: absolute;
    bottom: 22px;
    right: calc(50% + 621px);
    width: 100px;
    height: 220px;
    background: url(../img/img_spots_pawpads.svg) no-repeat center center/contain;
  }
}

.l-spots__heading-slider-wrapper {
  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: 1024px ) {
  .l-spots__heading-slider-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: max(50% - 468px, 68px);
    padding-right: 0;
    overflow: hidden;
    padding-bottom: 40px;
  }
}

.p-spots-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 1024px ) {
  .p-spots-heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 19px;
  }
}

.p-spots-heading__icon {
  width: 28px;
  height: 28px;
  background: url(../img/icon_star.svg) center center/contain;
}
@media screen and (min-width: 1024px ) {
  .p-spots-heading__icon {
    width: 56px;
    height: 56px;
  }
}

.p-spots-heading__text {
  color: #ffffff;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  font-family: "Kiwi Maru", sans-serif;
  text-align: center;
}
@media screen and (min-width: 1024px ) {
  .p-spots-heading__text {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.25;
    font-family: "Kiwi Maru", sans-serif;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.24em;
  }
}

@media screen and (min-width: 1024px ) {
  .l-spots__slider {
    width: 100%;
  }
}

.p-spots-slider {
  height: 402.16px;
}
@media screen and (min-width: 1024px ) {
  .p-spots-slider {
    height: 542px;
  }
}

.p-spots-card {
  overflow: hidden;
  width: 240px;
  height: 402.16px;
  border-radius: 12px;
  background-color: #ffffff;
}
@media screen and (min-width: 1024px ) {
  .p-spots-card {
    width: 344px;
    height: 542px;
    border-radius: 24px;
  }
}

.p-spots-card__image img {
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 1024px ) {
  .p-spots-card__image img {
    height: 240px;
  }
}

.p-spots-card__body {
  height: 222.16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 24px;
}
@media screen and (min-width: 1024px ) {
  .p-spots-card__body {
    height: 320px;
    padding-inline: 32px;
  }
}

.p-spots-card__title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-top: 16px;
}
@media screen and (min-width: 1024px ) {
  .p-spots-card__title {
    font-size: 20px;
    margin-top: 24px;
  }
}

.p-spots-card__text {
  margin-top: 16px;
}
@media screen and (min-width: 1024px ) {
  .p-spots-card__text {
    margin-top: 24px;
    font-size: 16px;
  }
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.l-spots-slider__button-wrapper {
  display: none;
}
@media screen and (min-width: 1024px ) {
  .l-spots-slider__button-wrapper {
    display: block;
    position: relative;
    max-width: 896px;
    margin-right: auto;
  }
}

.spots-slider__prev {
  left: -48px;
  top: -32px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ffee56;
}
.spots-slider__prev::before {
  content: "";
  width: 57px;
  height: 57px;
  background: url(../img/icon_slider-arrow-left.svg) no-repeat center center/cover;
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
}
.spots-slider__prev:hover::before {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.spots-slider__next {
  right: 0;
  top: -32px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ffee56;
}
.spots-slider__next::before {
  content: "";
  width: 57px;
  height: 57px;
  background: url(../img/icon_slider-arrow-right.svg) no-repeat center center/cover;
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
}
.spots-slider__next:hover::before {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.l-spots__description-wrapper {
  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: 16px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px ) {
  .l-spots__description-wrapper {
    -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;
    text-align: center;
    max-width: 1072px;
    margin-top: 24px;
    padding-inline: 24px;
  }
}

.spots-description__image {
  width: 254.439px;
  height: 55px;
  background: url(../img/outline_SPOTS_pc.svg) center center/cover;
}
@media screen and (min-width: 1024px ) {
  .spots-description__image {
    width: 495px;
    height: 107px;
  }
}

.spots-description__text-button-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (min-width: 1024px ) {
  .spots-description__text-button-box {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.spots-tex-box__text {
  color: #ffffff;
  text-align: center;
  font-size: 11.444px;
}
@media screen and (min-width: 1024px ) {
  .spots-tex-box__text {
    font-size: 16px;
  }
}

.spots-tex-box__button a {
  padding: 4px 22px 6px;
  border: 2px solid #4a3636;
  font-size: 16px;
}
@media screen and (min-width: 1024px ) {
  .spots-tex-box__button a {
    padding: 7px 37px 9px;
    border: 3px solid #4a3636;
    font-size: 20px;
  }
}

.l-faq {
  width: 100%;
  padding-top: 83px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-faq {
    padding-top: 220px;
  }
}

.l-faq__inner {
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-faq__inner {
    max-width: 1072px;
    padding-inline: 24px;
  }
}

.faq-heading-icon {
  background-image: url(../img/icon_faq.svg);
}

.l-faq__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: 12px;
  width: 100%;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .l-faq__boxes {
    margin-top: 40px;
    gap: 23px;
  }
}

.faq-box {
  overflow: hidden;
  border: 2px solid #4a3636;
  border-radius: 12px;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .faq-box {
    border-radius: 16px;
  }
}
.faq-box.is-open .faq-box__q .faq-box__q-toggle {
  background-image: url(../img/icon_faq-close.svg);
}

.faq-box__q {
  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;
  width: 100%;
  padding-block: 10px;
  padding-inline: 14px;
}
@media screen and (min-width: 768px) {
  .faq-box__q {
    padding: 21px;
  }
}

.faq-box__q-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 12px;
  color: #9ed0e0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (min-width: 768px) {
  .faq-box__q-icon {
    margin-right: 16px;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.25;
    font-family: "Josefin Sans", sans-serif;
  }
}

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

.faq-box__q-toggle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 26.182px;
  height: 26.182px;
  margin-left: 10.91px;
  border-radius: 50%;
  background: #9ed0e0 url(../img/icon_faq-open.svg) no-repeat center center;
  background-size: 17.455px;
}
@media screen and (min-width: 768px) {
  .faq-box__q-toggle {
    width: 48px;
    height: 48px;
    background-size: 32px;
  }
}

.faq-box__a {
  display: none;
}

.faq-box__a-inner {
  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;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 14px;
  padding-inline: 14px;
  background-color: #f5f5f5;
}
@media screen and (min-width: 768px) {
  .faq-box__a-inner {
    padding: 22px;
  }
}

.faq-box__a-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #9ed0e0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  font-family: "Josefin Sans", sans-serif;
  margin-right: 16px;
}
@media screen and (min-width: 768px) {
  .faq-box__a-icon {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.25;
    font-family: "Josefin Sans", sans-serif;
    margin-right: 16px;
  }
}

.faq-box__a-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .faq-box__a-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
  }
}

.l-info {
  overflow: hidden;
  width: 100%;
  padding-top: 29px;
}
@media screen and (min-width: 768px) {
  .l-info {
    padding-top: 120px;
  }
}

.l-info__inner {
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-info__inner {
    max-width: 1072px;
    padding-inline: 24px;
  }
}

.l-info__content {
  width: 100%;
}

.info-content__heading-icon {
  background-image: url(../img/icon_information.svg);
}

.l-info__bg-image {
  height: 99px;
  max-width: 100%;
  margin-top: 32px;
  background: url(../img/bg_information.webp) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .l-info__bg-image {
    height: 400px;
    margin-top: 120px;
  }
}

.info-content {
  padding-block: 16px;
  padding-inline: 15.5px;
  border: 8px solid #ffffff;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 768px) {
  .info-content {
    padding-block: 32px;
    padding-inline: 48px;
  }
}

.info-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: 12px;
  padding-top: 24px;
}
@media screen and (min-width: 768px) {
  .info-content__lists {
    padding-top: 40px;
  }
}

.info-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;
  padding-bottom: 14px;
  border-bottom: 1px solid #cccccc;
}
.info-list:last-child {
  border-bottom: none;
}
@media screen and (min-width: 1024px ) {
  .info-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 11px;
    gap: 9.765625%;
  }
}

.info-list__head {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .info-list__head {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
  }
}
@media screen and (min-width: 1024px ) {
  .info-list__head {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 150px;
    padding-left: 32px;
  }
}
.info-list__head::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #9ed0e0;
}
@media screen and (min-width: 1024px ) {
  .info-list__head::before {
    top: 12px;
    left: 16px;
  }
}

.info-list__body {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.59;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .info-list__body {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.62;
    font-family: "Noto Sans JP", sans-serif;
  }
}

.info-list__caution-list {
  position: relative;
  padding-left: 1.5em;
}
.info-list__caution-list::before {
  content: "・";
  position: absolute;
  left: 3px;
}

.l-contact {
  overflow: hidden;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 44px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .l-contact {
    padding-top: 122px;
    padding-bottom: 118px;
  }
}

.l-contact__inner {
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-contact__inner {
    max-width: 896px;
    padding-inline: 24px;
  }
}

.contact-heading-icon {
  background-image: url(../img/icon_contact.svg);
}

.contact-form__text {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-form__text {
    margin-top: 32px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
  }
}

.contact-form__items {
  margin-top: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .contact-form__items {
    margin-top: 40px;
  }
}

.contact-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .contact-form__item {
    -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;
  }
  .contact-form__item:last-of-type .form-control__head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

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

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

.form-control__tag {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 4px;
  background: #ce2073;
}

@media screen and (min-width: 768px) {
  .form-control__body {
    max-width: 628px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.form-control__input-name {
  width: 100%;
  height: 56px;
  padding: 16px;
  border: transparent;
  border-radius: 8px;
  background-color: #f5f5f5;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .form-control__input-name {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
  }
}
.form-control__input-name::-webkit-input-placeholder {
  color: #cccccc;
}
.form-control__input-name::-moz-placeholder {
  color: #cccccc;
}
.form-control__input-name:-ms-input-placeholder {
  color: #cccccc;
}
.form-control__input-name::-ms-input-placeholder {
  color: #cccccc;
}
.form-control__input-name::placeholder {
  color: #cccccc;
}
.form-control__input-name.is-error {
  border: 1px solid #ce2073;
  background-color: #fff0f7;
}
.form-control__input-name:focus {
  border: 1px solid #9ed0e0;
  background-color: #e9f6f8;
}

.form-control__input-mail {
  width: 100%;
  height: 56px;
  padding: 16px;
  border-radius: 8px;
  border: transparent;
  background-color: #f5f5f5;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .form-control__input-mail {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
  }
}
.form-control__input-mail::-webkit-input-placeholder {
  color: #cccccc;
}
.form-control__input-mail::-moz-placeholder {
  color: #cccccc;
}
.form-control__input-mail:-ms-input-placeholder {
  color: #cccccc;
}
.form-control__input-mail::-ms-input-placeholder {
  color: #cccccc;
}
.form-control__input-mail::placeholder {
  color: #cccccc;
}
.form-control__input-mail.is-error {
  border: 1px solid #ce2073;
  background-color: #fff0f7;
}
.form-control__input-mail:focus {
  border: 1px solid #9ed0e0;
  background-color: #e9f6f8;
}

.form-control__select-wrapper {
  position: relative;
  z-index: 50;
  overflow: hidden;
  width: 100%;
  height: 56px;
  border-radius: 8px;
  background-color: #f5f5f5;
}
.form-control__select-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 52px;
  height: 100%;
  background-color: #9ed0e0;
}
.form-control__select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 10px;
  background: url(../img/icon_contact-arrow.svg) no-repeat center center/cover;
}
.form-control__select-wrapper.is-error {
  border: 1px solid #ce2073;
  background-color: #fff0f7;
}
.form-control__select-wrapper.is-error::before {
  border: 1px solid #ce2073;
  background-color: #ce2073;
}
.form-control__select-wrapper.is-error:focus {
  border: 1px solid #9ed0e0 !important;
  background-color: #fff0f7 !important;
}
.form-control__select-wrapper.is-error:focus::before {
  border: 1px solid #9ed0e0 !important;
  background-color: #ce2073 !important;
}

.form-control__select {
  position: relative;
  z-index: 60;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  width: 100%;
  height: 100%;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .form-control__select {
    font-size: 16px;
  }
}

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

.form-control__radio-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-control__radio-input:checked + .form-control__radio-text::after {
  opacity: 1;
}
.form-control__radio-input:focus + .form-control__radio-text::before {
  border: 1px solid #9ed0e0;
}

.form-control__radio-text {
  position: relative;
  display: inline-block;
  padding-left: 32px;
  font-size: 14px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .form-control__radio-text {
    font-size: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 56px;
    font-family: "Noto Sans JP", sans-serif;
  }
}
.form-control__radio-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #f5f5f5;
}
.form-control__radio-text::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #9ed0e0;
}

.form-control__textarea {
  width: 100%;
  height: 160px;
  padding: 16px;
  border-radius: 8px;
  border: none;
  background: #f5f5f5;
  font-size: 14px;
  resize: vertical;
}
.form-control__textarea::-webkit-input-placeholder {
  color: #cccccc;
}
.form-control__textarea::-moz-placeholder {
  color: #cccccc;
}
.form-control__textarea:-ms-input-placeholder {
  color: #cccccc;
}
.form-control__textarea::-ms-input-placeholder {
  color: #cccccc;
}
.form-control__textarea::placeholder {
  color: #cccccc;
}
.form-control__textarea:focus {
  border: 1px solid #9ed0e0;
  background-color: #e9f6f8;
}
.form-control__textarea.is-error {
  border: 1px solid #ce2073;
  background-color: #fff0f7;
}
@media screen and (min-width: 768px) {
  .form-control__textarea {
    font-size: 16px;
  }
}

.contact-form__privacy {
  text-align: center;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .contact-form__privacy {
    margin-top: 40px;
  }
}

.form-checkbox:hover .form-checkbox__text::before {
  border-color: #9ed0e0;
}

.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:focus + .form-checkbox__text::before {
  border-color: #9ed0e0;
}
.form-checkbox__input.is-error + .form-checkbox__text::before {
  border: 1px solid #ce2073;
  background-color: #fff0f7;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  border-color: #9ed0e0;
}

.form-checkbox__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  padding-left: 36px;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 1024px ) {
  .form-checkbox__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
  }
}
.form-checkbox__text::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background-color: #f5f5f5;
  border: none;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #f5f5f5;
}
.form-checkbox__text::after {
  content: "";
  width: 16px;
  height: 11px;
  background-image: url(../img/icon_contact-check.svg);
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.contact-form__button {
  text-align: center;
  margin-top: 26px;
}
@media screen and (min-width: 768px) {
  .contact-form__button {
    margin-top: 40px;
  }
}
.contact-form__button button {
  padding: 4px 22px 6px;
  border: 2px solid #4a3636;
  font-size: 16px;
}
@media screen and (min-width: 1024px ) {
  .contact-form__button button {
    padding: 6px 38px 6px;
  }
}

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

.l-footer__inner {
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    max-width: 1072px;
    padding-inline: 24px;
  }
}

@media screen and (min-width: 768px) {
  .l-footer__image {
    position: absolute;
    top: 80px;
    left: calc(50% + 342px);
    width: 100px;
    height: 220px;
    background: url(../img/img_footer_pawpads.svg) no-repeat center center/contain;
  }
}
@media screen and (min-width: 1024px ) {
  .l-footer__image {
    position: absolute;
    top: 80px;
    left: calc(50% + 577px);
    width: 100px;
    height: 220px;
    background: url(../img/img_footer_pawpads.svg) no-repeat center center/contain;
  }
}

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

.footer-content__links {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  gap: 40px;
}

.footer-content__link {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .footer-content__link {
    width: 40px;
    height: 40px;
  }
}
.footer-content__link img {
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
}
.footer-content__link img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.footer-content__access {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .footer-content__access {
    margin-top: 120px;
  }
}

.footer-access {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px ) {
  .footer-access {
    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;
  }
}
.footer-access::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 40;
  width: 328px;
  height: 34.4px;
  background: url(../img/outline_ONOMICHI_sp.svg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .footer-access::before {
    width: 600px;
    height: 65.4px;
    top: -63px;
    background: url(../img/outline_ONOMICHI_pc.svg) no-repeat center center/contain;
  }
}
@media screen and (min-width: 1024px ) {
  .footer-access::before {
    width: 755px;
    height: 82.2px;
    top: -79px;
    background: url(../img/outline_ONOMICHI_pc.svg) no-repeat center center/contain;
  }
}

.footer-access__map {
  position: relative;
  z-index: 50;
  width: 335px;
  height: 271px;
  border-radius: 16px 16px 0px 0px;
  overflow: hidden;
}
.footer-access__map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .footer-access__map {
    width: 600px;
    height: 485.4px;
  }
}
@media screen and (min-width: 1024px ) {
  .footer-access__map {
    width: 50%;
    height: 400px;
    border-radius: 0px 16px 16px 0px;
  }
}

.footer-access__text-box {
  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;
  position: relative;
  z-index: 50;
  overflow: hidden;
  width: 335px;
  height: 204px;
  padding-inline: 24px;
  padding-top: 16px;
  padding-bottom: 24px;
  border-radius: 0px 0px 16px 16px;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .footer-access__text-box {
    width: 600px;
    height: 365.4px;
  }
}
@media screen and (min-width: 1024px ) {
  .footer-access__text-box {
    padding-top: 26px;
    width: 50%;
    height: 400px;
    border-radius: 16px 0px 0px 16px;
  }
}

.footer-access__text-box-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .footer-access__text-box-inner {
    gap: 24px;
  }
}

.footer-access__logo {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-access__logo {
    text-align: left;
  }
}
.footer-access__logo img {
  width: 153px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .footer-access__logo img {
    width: 183px;
    height: 24px;
  }
}

.footer-access__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: 7px;
}
@media screen and (min-width: 768px) {
  .footer-access__lists {
    gap: 12px;
  }
}

.footer-access-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .footer-access-list {
    gap: 8px;
  }
}
@media screen and (min-width: 1024px ) {
  .footer-access-list {
    gap: 40px;
  }
}

.footer-access-list__head {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 82px;
  padding-left: 18px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .footer-access-list__head {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
  }
}
.footer-access-list__head::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #9ed0e0;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .footer-access-list__body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
  }
}

.l-footer__copyright {
  width: 100%;
  background-color: #67b0c7;
  margin-top: 171.714px;
  height: 41px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    margin-top: 240px;
    height: 54px;
  }
}
.l-footer__copyright::before {
  content: "";
  width: 100%;
  height: 46.714px;
  position: absolute;
  top: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/img_bg-wave_sp.svg) repeat-x left bottom;
}
@media screen and (min-width: 1024px ) {
  .l-footer__copyright::before {
    height: 120px;
    top: -119px;
    background-image: url(../img/img_bg-wave_pc.svg);
  }
}

.footer__copyright {
  color: #ffffff;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
  }
}

.pagetop-sp {
  display: inline-block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 111px;
  width: 75px;
  height: 78px;
}
.pagetop-sp img {
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
}
.pagetop-sp img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (min-width: 768px) {
  .pagetop-pc {
    display: inline-block;
    width: 76px;
    height: 79px;
    position: fixed;
    bottom: 4px;
    right: 20px;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.4s linear, visibility 0.4s linear, -webkit-transform 0.1s linear;
    transition: opacity 0.4s linear, visibility 0.4s linear, -webkit-transform 0.1s linear;
    transition: opacity 0.4s linear, visibility 0.4s linear, transform 0.1s linear;
    transition: opacity 0.4s linear, visibility 0.4s linear, transform 0.1s linear, -webkit-transform 0.1s linear;
  }
}
@media screen and (min-width: 1024px ) {
  .pagetop-pc {
    width: 100px;
    height: 104px;
    bottom: 8px;
    right: 40px;
  }
}
.pagetop-pc.is-show {
  opacity: 1;
  visibility: visible;
}
.pagetop-pc:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}

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

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

.u-underline {
  text-decoration-line: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
}
.u-underline:hover {
  color: #9ed0e0;
}

.u-font-bold {
  font-weight: bold;
}