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

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

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

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 32px;
  padding: 4px 22px 6px 22px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  color: var(--LP-Blown, #4a3636);
  font-family: "Noto Sans JP", "sans-serif";
  font-size: 14px;
  font-weight: 700;
}
.button:hover {
  border: 2px solid #4a3636;
  background: #ffee56;
}
.button:hover.large {
  border: 3px solid #4a3636;
}

.heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  padding-inline: 15px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .heading {
    gap: 8px;
  }
}

.heading-icon {
  width: 37.333px;
  height: 37.333px;
}
@media screen and (min-width: 900px) {
  .heading-icon {
    width: 48px;
    height: 48px;
  }
}
.heading-icon .about-icon {
  fill: #9ed0e0;
}

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

.heading-text {
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  padding-bottom: 6px;
  border-bottom: 6px solid #ffee56;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .heading-text {
    font-size: 26px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 900px) {
  .heading-text {
    font-size: 32px;
    padding-bottom: 10px;
  }
}

.link {
  color: #67b0c7;
  font-family: "Noto Sans JP", "sans-serif";
  font-size: 16px;
  text-decoration: underline;
}

.underline {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.inner {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.contents-pc {
  max-width: 1104px;
  padding-inline: 40px;
  margin-inline: auto;
}

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

.wrapper {
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  height: 64px;
  z-index: 20;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header__inner {
  padding-block: 17px;
  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;
}
@media screen and (min-width: 900px) {
  .header__inner {
    padding-block: 14px;
  }
}

.header__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 15;
}
.header__image img {
  width: 210px;
}
@media screen and (min-width: 900px) {
  .header__image img {
    width: 183px;
  }
}

.drawer-icon {
  height: 24px;
  width: 32px;
  display: block;
  position: relative;
  -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;
  z-index: 15;
}
@media screen and (min-width: 900px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-open .header__button-sub {
  display: none;
}
.drawer-icon.is-open .header__button-content-bar {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.drawer-icon.is-open .header__button-content-bar:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10.5px;
}
.drawer-icon.is-open .header__button-content-bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10.5px;
}

.header__button-content {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.header__button-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__button-sub-bar {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: #4a3636;
}
.header__button-sub-bar:nth-child(1) {
  width: 25.6px;
}
.header__button-sub-bar:nth-child(2) {
  width: 4.8px;
}

.header__button-content-bar {
  position: absolute;
  width: 32px;
  height: 3px;
  background: #4a3636;
  border-radius: 3px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header__button-content-bar:nth-child(2) {
  top: 12px;
}
.header__button-content-bar:nth-child(3) {
  top: 24px;
}

.drawer-menu {
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
  position: fixed;
  top: 64px;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  z-index: 10;
  -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;
}
.drawer-menu.is-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 900px) {
  .drawer-menu {
    position: relative;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    top: 0;
    right: 0;
  }
}

.header__menu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 39.5px;
  padding: 82px 10px 10px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .header__menu-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    padding: 0;
  }
}

.header__menu-item {
  font-family: "Noto Sans JP", "sans-serif";
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .header__menu-item {
    font-size: 10px;
  }
  .header__menu-item:nth-child(6) {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .header__menu-item {
    font-size: 12px;
  }
}

@media screen and (min-width: 900px) {
  .header__menu-button .button {
    height: 36px;
    font-size: 14px;
    margin-left: 4px;
  }
}

.fv {
  padding-top: 17px;
  margin-top: 64px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .fv {
    padding-top: 35px;
  }
}

.fv__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  overflow: hidden;
  width: 100%;
  height: 554px;
}
@media screen and (min-width: 900px) {
  .fv__bg-image {
    height: 740px;
  }
}
.fv__bg-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  -o-object-position: center center;
     object-position: center center;
}

.fv__inner {
  max-width: 375px;
  margin-inline: auto;
  padding-inline: 20px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .fv__inner {
    max-width: 888px;
  }
}

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

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

.fv__images {
  width: 100%;
  height: 522px;
  margin-top: 9px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .fv__images {
    margin-top: 0;
    height: 559px;
  }
}

.fv-smartphone {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 10px;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .fv-smartphone {
    bottom: 0;
    top: 33px;
  }
}

.fv-smartphone-content {
  width: 200px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .fv-smartphone-content {
    width: 250px;
  }
}

.fv-smartphone-box {
  position: absolute;
  width: calc(100% - 40px);
  top: 49%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  background: #fff;
  text-align: center;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .fv-smartphone-box {
    width: 200px;
    top: 152.5px;
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
  }
}

.fv-smartphone-box-head {
  padding: 5.4px 9.4px;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
}
@media screen and (min-width: 900px) {
  .fv-smartphone-box-head {
    padding: 10px 12px 7px;
  }
}

.fv-smartphone-box-head-title {
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 12.8px;
}
@media screen and (min-width: 900px) {
  .fv-smartphone-box-head-title {
    font-size: 16px;
  }
}

.fv-smartphone-box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2px;
  padding: 11.8px 14px 19.2px;
}
@media screen and (min-width: 900px) {
  .fv-smartphone-box-content {
    gap: 4px;
    padding: 16px 12px 24px;
  }
}

.fv-smartphone-box-text {
  font-family: "Noto Sans JP", "sans-serif";
  font-size: 12px;
}
.fv-smartphone-box-text:nth-child(1) {
  width: 48px;
  margin-inline: auto;
  padding-bottom: 1px;
  border-bottom: 3px solid var(--LP-Red, #ce2073);
}
@media screen and (min-width: 900px) {
  .fv-smartphone-box-text:nth-child(1) {
    font-size: 14px;
    width: 56px;
    padding-bottom: 0.5px;
  }
}
.fv-smartphone-box-text:nth-child(2) {
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .fv-smartphone-box-text:nth-child(2) {
    font-size: 16px;
  }
}

.fv-button {
  margin-top: 9px;
}
@media screen and (min-width: 900px) {
  .fv-button {
    margin-top: 13px;
  }
}
.fv-button .button {
  height: 32px;
}
@media screen and (min-width: 900px) {
  .fv-button .button {
    font-size: 16px;
    height: 40px;
  }
}

.fv-english-message {
  position: absolute;
  top: 7px;
  left: 0;
  z-index: 1;
  width: 142px;
  height: 80px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .fv-english-message {
    top: 0;
    left: calc(50% - 424px + 38.5px);
    width: 240px;
    height: 125.969px;
  }
}
.fv-english-message img {
  width: 100%;
  height: 100%;
}

.fv-present-message {
  position: absolute;
  right: calc(50% - 110px - 32.5px);
  width: 110px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .fv-present-message {
    right: calc(50% - 424px + 127px);
    width: 180px;
    top: 17px;
  }
}
.fv-present-message img {
  width: 100%;
  height: 100%;
}

.fv-food-drink {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 141px;
  max-width: 100%;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .fv-food-drink {
    width: 213px;
    height: 332px;
  }
}
.fv-food-drink img {
  height: 100%;
}

.fv-cats {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 107px;
  height: 127px;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .fv-cats {
    width: 233px;
    height: 294px;
    bottom: -44px;
  }
}

.fv-cats-contents .cat-brown {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 98px;
  height: 72px;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .fv-cats-contents .cat-brown {
    width: 233px;
    height: 174px;
  }
}
.fv-cats-contents .cat-brown img {
  width: 100%;
}
.fv-cats-contents .cat-black {
  position: absolute;
  right: 0;
  top: 0;
  width: 62px;
  height: 69px;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .fv-cats-contents .cat-black {
    left: 0;
    width: 170px;
    height: 190px;
  }
}
.fv-cats-contents .cat-black img {
  width: 100%;
}

.about {
  position: relative;
  margin-top: 32px;
}
@media screen and (min-width: 900px) {
  .about {
    margin-top: 80px;
  }
}

.about__decoration {
  position: absolute;
}

.about__decoration-diagonal-box {
  width: 250px;
  height: 250px;
  left: calc(50% - 756px - 21px);
  top: -20px;
}

.about__decoration-pawpads {
  position: absolute;
  right: calc(50% - 187.5px);
  top: -10px;
  width: 54px;
}
@media screen and (min-width: 900px) {
  .about__decoration-pawpads {
    width: 100px;
    height: 220px;
    right: calc(50% - 756px + 165.88px);
    top: -80px;
  }
}
.about__decoration-pawpads img {
  width: 100%;
}

.about__decoration-right {
  top: 273px;
  right: calc(50% - 187.5px - 140px);
  width: 200px;
}
@media screen and (min-width: 900px) {
  .about__decoration-right {
    width: 480px;
    right: calc(50% - 746px - 294.2px);
    top: 73.07px;
  }
}
.about__decoration-right img {
  width: 100%;
}

.about__decoration-goods1 {
  bottom: 158.2px;
  left: calc(50% - 170px + 167px);
  width: 133px;
  height: 65.003px;
}
@media screen and (min-width: 900px) {
  .about__decoration-goods1 {
    width: 308px;
    height: 150.604px;
    left: calc(50% + 756px - 308px - 74px);
    bottom: 379px;
  }
}
.about__decoration-goods1 img {
  width: 100%;
  position: relative;
}

.about__decoration-goods2 {
  width: 48px;
  height: 48px;
  bottom: 217.67px;
  left: calc(50% + 170px - 2.5px - 48px);
}
@media screen and (min-width: 900px) {
  .about__decoration-goods2 {
    width: 101px;
    height: 100.047px;
    bottom: 585.63px;
    left: calc(50% + 756px - 101px - 150px);
  }
  .about__decoration-goods2::before {
    content: "";
    position: absolute;
    left: 141.15px;
    top: 6px;
    width: 806.851px;
    height: 12.006px;
    background: url("../img/bg_wavyline.png") no-repeat center center/cover;
    z-index: 0;
  }
  .about__decoration-goods2::after {
    content: "";
    position: absolute;
    left: 74.08px;
    top: 39.02px;
    width: 806.851px;
    height: 12.006px;
    background: url("../img/bg_wavyline.png") no-repeat center center/cover;
    z-index: 0;
  }
}
.about__decoration-goods2 img {
  width: 100%;
  position: relative;
}

.about__decoration-left {
  position: absolute;
  width: 200px;
  top: 395px;
  left: calc(50% - 187.5px - 140px);
}
@media screen and (min-width: 900px) {
  .about__decoration-left {
    width: 480px;
    left: calc(50% - 756px - 338px);
    top: 74px;
    z-index: 2;
  }
}
.about__decoration-left img {
  width: 100%;
  position: relative;
}

.about__decoration-steps {
  position: absolute;
  width: 138px;
  left: 0;
  bottom: 61.2px;
}
@media screen and (min-width: 900px) {
  .about__decoration-steps {
    width: 427px;
    left: calc(50% - 756px - 103px);
    top: 321px;
    z-index: 1;
  }
}
.about__decoration-steps img {
  width: 100%;
}

.about__inner {
  max-width: 375px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .about__inner {
    max-width: 896px;
  }
}

.about-top {
  position: relative;
  padding: 40px 20px 39px;
  background: #fff;
  border-radius: 24px;
}
@media screen and (min-width: 900px) {
  .about-top {
    border-radius: 40px;
    padding: 40px 114px;
  }
}

.about__box-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  text-align: center;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .about__box-contents {
    gap: 32px;
  }
}

.about-top__right-image,
.about-top__left-image {
  position: absolute;
  width: 88px;
  height: 60px;
}
@media screen and (min-width: 900px) {
  .about-top__right-image,
  .about-top__left-image {
    width: 147px;
    height: 100px;
  }
}

.about-top__right-image {
  top: 31.87px;
  right: calc(50% + 170px - 2.5px - 80px - 41px);
}
@media screen and (min-width: 900px) {
  .about-top__right-image {
    top: 40.35px;
    right: calc(50% + 400px - 134px - 74px);
  }
}

.about-top__left-image {
  top: 30px;
  left: calc(50% + 170px - 2.5px - 80px - 27.78px);
}
@media screen and (min-width: 900px) {
  .about-top__left-image {
    top: 46px;
    left: calc(50% + 400px - 134px - 74.3px);
  }
}

.about-top__sub-heading {
  font-family: "Noto Sans JP", "sans-serif";
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .about-top__sub-heading {
    margin-top: 32px;
  }
  .about-top__sub-heading.hidden-sp {
    display: block;
    font-size: 16px;
  }
}

.about-top__text-content {
  font-family: "Noto Sans JP", "sans-serif";
  font-size: 12px;
  margin-top: 24px;
  text-align: center;
}
@media screen and (max-width: 374px) {
  .about-top__text-content {
    font-size: 10px;
  }
}
@media screen and (min-width: 900px) {
  .about-top__text-content {
    margin-top: 32px;
    font-size: 16px;
  }
}

.about-top__text:not(:first-child) {
  margin-top: 1.5em;
}
@media screen and (min-width: 900px) {
  .about-top__text:not(:first-child) {
    margin-top: 1.7em;
  }
}
@media screen and (min-width: 900px) {
  .about-top__text {
    margin-top: 1px;
  }
}
.about-top__text .hashtag {
  font-weight: 700;
}

.about-top__text-sub-title {
  display: block;
  margin-top: 32px;
  font-family: "Noto Sans JP", "sans-serif";
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px dashed #9ed0e0;
  padding-bottom: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 374px) {
  .about-top__text-sub-title {
    font-size: 13px;
  }
}
@media screen and (min-width: 900px) {
  .about-top__text-sub-title {
    margin-top: 44px;
    font-size: 20px;
    padding-bottom: 9px;
  }
}

.about__button {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .about__button {
    margin-top: 34px;
  }
}
.about__button .button {
  font-size: 16px;
  height: 40px;
}
@media screen and (min-width: 900px) {
  .about__button .button {
    font-size: 20px;
    height: 56px;
    padding: 10px 38px 12px 38px;
  }
}

.about-top__arrow {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 240.87px;
  width: 100px;
}
@media screen and (min-width: 900px) {
  .about-top__arrow {
    width: 140px;
    height: 50px;
    bottom: 408px;
  }
}
.about-top__arrow img {
  width: 100%;
}

.about__bottom {
  margin-top: 137.87px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .about__bottom {
    margin-top: 167px;
  }
}

.about__bottom-english {
  position: relative;
  display: block;
  z-index: 5;
  text-align: center;
  width: 354.642px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .about__bottom-english {
    width: 890.604px;
    height: 97px;
    margin-inline: auto;
  }
}
.about__bottom-english img {
  width: 100%;
  height: 100%;
}

.about__slider {
  overflow-x: auto !important;
}
@media screen and (min-width: 900px) {
  .about__slider {
    margin-top: -8px !important;
  }
}

.about__slider {
  overflow-x: hidden !important;
}

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

.about__slide {
  width: 100px !important;
}
@media screen and (min-width: 900px) {
  .about__slide {
    width: 200px !important;
  }
}

.how-to-enter {
  padding-top: 33.8px;
  padding-bottom: 17.67px;
  background-color: #e9f6f8;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .how-to-enter {
    padding-top: 120px;
    padding-bottom: 6px;
  }
}

.how-to-enter__contents {
  max-width: 335px;
  margin-inline: auto;
  padding-top: 31px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__contents {
    padding-top: 0;
    max-width: 1104px;
    padding-inline: 40px;
  }
}

.how-to-enter__head {
  margin-inline: auto;
  display: block;
}
.how-to-enter__head .map {
  position: absolute;
  width: 149px;
  left: calc(50% - 190px + 2.5px);
}
@media screen and (min-width: 900px) {
  .how-to-enter__head .map {
    width: 460px;
    left: calc(50% - 752px + 32px);
    top: -60px;
  }
}
.how-to-enter__head .about-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;
}
@media screen and (min-width: 900px) {
  .how-to-enter__head .about-heading {
    gap: 8px;
  }
}
.how-to-enter__head .cat-pawpads {
  position: absolute;
  width: 160px;
  right: calc(50% - 190px + 2.5px - 31px);
}
@media screen and (min-width: 900px) {
  .how-to-enter__head .cat-pawpads {
    width: 433px;
    right: calc(50% - 752px + 32px);
    top: -25px;
  }
}

.heading-icon .step-icon {
  width: 37.333px;
  height: 37.333px;
}
@media screen and (min-width: 900px) {
  .heading-icon .step-icon {
    width: 48px;
    height: 48px;
  }
}

.how-to-enter__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: 33px;
  margin-top: 32px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__boxes {
    gap: 32px;
    margin-top: 40px;
    -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;
    max-width: 1024px;
  }
}

.how-to-enter__box {
  padding-bottom: 16px;
  padding-inline: 7.5px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .how-to-enter__box {
    padding-inline: 0;
  }
}
.how-to-enter__box:nth-of-type(n + 2)::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 34px;
  height: 34px;
  background: url(../img/step_line.png) no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .how-to-enter__box:nth-of-type(n + 2)::before {
    width: 113px;
    height: 24px;
    background: url(../img/step_line-pc.png) no-repeat center center/contain;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__box:nth-of-type(2) {
    margin-top: 69px;
  }
  .how-to-enter__box:nth-of-type(2)::before {
    top: calc(50% - 120px);
    left: -96px;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__box:nth-of-type(3)::before {
    top: calc(50% - 86px);
    left: -86px;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}

.how-to-enter__box-head {
  position: relative;
  text-align: center;
  background: url(../img/Union.png) no-repeat center center/contain;
  max-width: 196px;
  height: 210.519px;
  margin-inline: auto;
  padding: 31.06px 42px 10.46px;
}
@media screen and (min-width: 1180px) {
  .how-to-enter__box-head {
    max-width: 280px;
    height: 300.741px;
    padding: 44.37px 60px 17.37px;
    margin-inline: 20px;
  }
}
.how-to-enter__box-head .illust_step1 {
  width: 112px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__box-head .illust_step1 {
    width: 160px;
  }
}

.step2-head {
  background: url(../img/Union2.png) no-repeat center center/contain;
}
.step2-head .step2-pawpads {
  position: absolute;
  width: 55px;
  left: -70px;
  top: -18px;
}
@media screen and (min-width: 900px) {
  .step2-head .step2-pawpads {
    width: 100px;
    left: -580px;
    top: 326px;
  }
}

.step3-head {
  background: url(../img/Union3.png) no-repeat center center/contain;
}
.step3-head .step3-pawpads {
  position: absolute;
  width: 55px;
  right: -67.5px;
  top: -82px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 900px) {
  .step3-head .step3-pawpads {
    display: none;
  }
}

.how-to-enter__box-head-text {
  color: #fff;
  font-family: "Noto Sans JP", "sans-serif";
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 1.12px;
}
.how-to-enter__box-head-text h2 {
  margin-bottom: 6px;
  font-size: 12px;
}
@media screen and (min-width: 1180px) {
  .how-to-enter__box-head-text h2 {
    font-size: 20px;
  }
}
.how-to-enter__box-head-text span {
  font-family: "Josefin Sans", sans-serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 600;
  line-height: 0.9;
}
@media screen and (min-width: 1180px) {
  .how-to-enter__box-head-text span {
    font-size: 56px;
  }
}

.how-to-enter__box-content {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Sans JP", "sans-serif";
}
@media screen and (min-width: 900px) {
  .how-to-enter__box-content {
    margin-top: 25px;
  }
}

.how-to-enter__box-title {
  font-weight: 700;
}
@media screen and (min-width: 1180px) {
  .how-to-enter__box-title {
    font-size: 20px;
  }
}

.how-to-enter__box-text {
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .how-to-enter__box-text {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1180px) {
  .how-to-enter__box-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
  }
}
.how-to-enter__box-text .underline {
  border-bottom: 0.5px solid #4a3636;
}

.how-to-enter__box-follow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 12px;
  background-color: #fff;
}
.how-to-enter__box-follow .icon {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__box-follow .icon {
    width: 24px;
    height: 24px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__box-follow {
    margin-top: 2px;
  }
}

.how-to-enter__box-follow-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.how-to-enter__box-follow-text {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .how-to-enter__box-follow-text {
    font-size: 16px;
  }
}

.how-to-enter__box-button {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .how-to-enter__box-button {
    margin-top: 33px;
  }
}
.how-to-enter__box-button .button {
  height: 40px;
  font-size: 16px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media screen and (max-width: 374px) {
  .how-to-enter__box-button .button {
    font-size: 12px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__box-button .button {
    height: 56px;
    font-size: 20px;
    padding: 10px 40px 12px 40px;
  }
}

.prize {
  padding-top: 100.67px;
  background-color: #e9f6f8;
}
@media screen and (min-width: 900px) {
  .prize {
    padding-top: 268.97px;
  }
}

.prize__contents {
  background-color: #fff;
  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;
  border-radius: 24px;
  padding-bottom: 34.67px;
  z-index: 5;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .prize__contents {
    max-width: 1024px;
    margin-inline: auto;
    padding-inline: 56px;
    padding-bottom: 53px;
  }
}
.prize__contents::before {
  content: "";
  position: absolute;
  top: -83px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 237.6px;
  height: 83px;
  background: url(../img/deco_prizes_sp.png) no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .prize__contents::before {
    width: 365.624px;
    height: 148.967px;
    top: -148.967px;
    background: url(../img/deco_prizes_pc.png) no-repeat center center/contain;
  }
}

.prize__head {
  position: relative;
  top: -61px;
  padding: 0;
}
@media screen and (min-width: 900px) {
  .prize__head {
    top: -120.967px;
  }
  .prize__head::before {
    content: "";
    position: absolute;
    top: 0;
    left: -56px;
    width: 315px;
    height: 86px;
    background: url(../img/bg_triangle.png) no-repeat center center/contain;
  }
  .prize__head::after {
    content: "";
    position: absolute;
    top: 0;
    right: -56px;
    width: 315px;
    height: 86px;
    background: url(../img/bg_triangle-right.png) no-repeat center center/contain;
  }
}

.prize-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;
}
@media screen and (min-width: 900px) {
  .prize-heading {
    gap: 8px;
  }
}

.heading-icon .prize-icon {
  width: 37.333px;
  height: 37.333px;
}
@media screen and (min-width: 900px) {
  .heading-icon .prize-icon {
    width: 48px;
    height: 48px;
  }
}

.prize__head-text {
  padding-bottom: 6.5px;
}

.prize__head-sub-text {
  font-family: "Noto Sans JP", "sans-serif";
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
}
@media screen and (max-width: 374px) {
  .prize__head-sub-text {
    font-size: 10px;
  }
}
@media screen and (min-width: 900px) {
  .prize__head-sub-text {
    margin-top: 34px;
    font-size: 16px;
    font-weight: 400;
  }
}

.prize__cards {
  margin-top: -15px;
}
@media screen and (min-width: 900px) {
  .prize__cards {
    margin-top: -37.967px;
  }
}

.prize__cards-top-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media screen and (min-width: 900px) {
  .prize__cards-top-row {
    gap: 32px;
  }
}

.prize__cards-bottom-row {
  margin-top: 39px;
  display: grid;
  gap: 39px 15px;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (min-width: 900px) {
  .prize__cards-bottom-row {
    margin-top: 80px;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
}

.prize__card-top {
  position: relative;
  width: 100%;
  margin-inline: auto;
  border-radius: 24px;
}

.prize__card-bottom {
  position: relative;
  width: 100%;
  margin-inline: auto;
}
.prize__card-bottom:nth-of-type(1) {
  grid-column: 1/3;
}
@media screen and (min-width: 900px) {
  .prize__card-bottom:nth-of-type(1) {
    grid-column: 1/1;
  }
}
.prize__card-bottom:nth-of-type(2) {
  grid-column: 3/5;
}
@media screen and (min-width: 900px) {
  .prize__card-bottom:nth-of-type(2) {
    grid-column: 2/2;
  }
}
.prize__card-bottom:nth-of-type(3) {
  grid-column: 2/4;
}
@media screen and (min-width: 900px) {
  .prize__card-bottom:nth-of-type(3) {
    grid-column: 3/3;
  }
}

.prize__card {
  border-radius: 8px;
  background: #f5f5f5;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .prize__card {
    border-radius: 24px;
  }
  .prize__cards-bottom-row .prize__card {
    border-radius: 16px;
  }
}

.prize__card-head-num {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  background: url(../img/Star.png) no-repeat center center/contain;
  height: 48px;
  width: 46px;
  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-inline: auto;
  color: #fff;
  font-weight: 700;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .prize__card-head-num {
    width: 97px;
    height: 100px;
    top: -50px;
  }
  .prize__cards-bottom-row .prize__card-head-num {
    width: 77px;
    height: 80px;
    top: -40px;
  }
}
.prize__card-head-num .prize__number {
  font-size: 7.68px;
  font-family: "Noto Sans JP", "sans-serif";
}
@media screen and (min-width: 900px) {
  .prize__card-head-num .prize__number {
    font-family: "Noto Sans JP", "sans-serif";
    font-size: 16px;
    font-weight: 700;
  }
  .prize__cards-bottom-row .prize__card-head-num .prize__number {
    font-size: 12.8px;
  }
}
.prize__card-head-num span {
  font-family: "Josefin Sans", sans-serif;
  font-size: 23.04px;
  line-height: 1;
  margin-top: 2px;
  display: block;
}
@media screen and (min-width: 900px) {
  .prize__card-head-num span {
    font-size: 48px;
  }
  .prize__cards-bottom-row .prize__card-head-num span {
    font-size: 38.4px;
  }
}

.prize__card-head-image {
  width: 100%;
  overflow: hidden;
}
.prize__card-head-image img {
  width: 100%;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
}
@media screen and (min-width: 900px) {
  .prize__card-head-image img {
    width: 440px;
    height: 340px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .prize__cards-bottom-row .prize__card-head-image img {
    width: 280px;
    height: 240px;
  }
}
@media screen and (min-width: 900px) {
  .prize__card-head-image img:hover {
    scale: 1.2;
  }
}

.prize__card-content {
  position: relative;
}
@media screen and (min-width: 900px) {
  .prize__card-content {
    padding-block: 32px;
  }
  .prize__cards-bottom-row .prize__card-content {
    padding-block: 14px;
  }
}
.prize__card-content::before {
  content: "";
  position: absolute;
  bottom: 6.12px;
  right: 5.22px;
  width: 11.52px;
  height: 11.52px;
  background: url(../img/prizes_zoom_icon.png) no-repeat center center/contain;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .prize__card-content::before {
    width: 32px;
    height: 32px;
    right: 12.5px;
    bottom: 14px;
  }
  .prize__cards-bottom-row .prize__card-content::before {
    width: 20.48px;
    height: 20.48px;
    right: 8px;
    bottom: 8.96px;
  }
}
.prize__card-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 36px;
  width: 36px;
  background: url(../img/prize-rectangle.png) no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .prize__card-content::after {
    width: 100px;
    height: 100px;
  }
  .prize__cards-bottom-row .prize__card-content::after {
    width: 64px;
    height: 64px;
  }
}

.prize__card-content-title {
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-family: "Noto Sans JP", "sans-serif";
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .prize__card-content-title {
    font-size: 20px;
  }
  .prize__cards-bottom-row .prize__card-content-title {
    height: 52px;
    font-size: 16px;
  }
}
.prize__card-content-title button {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
}

.prize__button {
  text-align: center;
  margin-top: 18px;
}
@media screen and (min-width: 900px) {
  .prize__button {
    margin-top: 40px;
  }
}
.prize__button .button {
  font-size: 16px;
  height: 40px;
}
@media screen and (max-width: 374px) {
  .prize__button .button {
    font-size: 12px;
  }
}
@media screen and (min-width: 900px) {
  .prize__button .button {
    font-size: 20px;
    height: 56px;
    padding: 10px 40px 12px 40px;
  }
}

.prize-modal {
  z-index: 100;
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: calc(100% - 40px);
  height: 480px;
  overflow: auto;
  overscroll-behavior-y: none;
  padding: 0 0 23px 0;
  border-radius: 24px;
  background: #fff;
  border: none;
}
@media screen and (min-width: 900px) {
  .prize-modal {
    max-width: 480px;
    height: 650px;
    padding-bottom: 54px;
  }
}
.prize-modal::-ms-backdrop {
  opacity: 0.2;
  background: #000;
}
.prize-modal::backdrop {
  opacity: 0.2;
  background: #000;
}

.prize-modal-image {
  width: 100%;
  height: 210px;
}
@media screen and (min-width: 900px) {
  .prize-modal-image {
    height: 300px;
  }
}
.prize-modal-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.prize-modal-content {
  text-align: center;
  font-family: "Noto Sans JP", "sans-serif";
  margin-top: 39px;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .prize-modal-content {
    margin-top: 32px;
    padding-inline: 40px;
  }
}

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

.prize-modal-text {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  margin-top: 12px;
}
@media screen and (max-width: 374px) {
  .prize-modal-text {
    font-size: 10px;
  }
}
@media screen and (min-width: 900px) {
  .prize-modal-text {
    font-size: 16px;
  }
}

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

.recommend {
  padding-top: 215px;
  padding-bottom: 45.714px;
  position: relative;
  background-color: #e9f6f8;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .recommend {
    padding-top: 400px;
    padding-bottom: 101px;
  }
}
@media screen and (min-width: 1180px) {
  .recommend {
    padding-top: 640px;
    padding-bottom: 101px;
  }
}
.recommend::before {
  content: "";
  position: absolute;
  top: -44px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 260px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: url(../img/recommend-bg_pic.png) repeat center center/cover;
}
@media screen and (min-width: 900px) {
  .recommend::before {
    background: url(../img/recommend-bg-pc.png) repeat center center/cover;
    top: 0;
    height: 400px;
  }
}
@media screen and (min-width: 1180px) {
  .recommend::before {
    background: url(../img/recommend-bg-pc.png) repeat center center/cover;
    top: 0;
    height: 640px;
  }
}

.recommend__contents {
  background: #67b0c7;
  position: relative;
  padding-bottom: 19.86px;
}
@media screen and (min-width: 900px) {
  .recommend__contents {
    padding-bottom: 23.86px;
  }
}
.recommend__contents::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 0;
  width: 100%;
  height: 45.714px;
  background: url(../img/wave.png) repeat-x center center/auto 45.714px;
}
@media screen and (min-width: 900px) {
  .recommend__contents::before {
    background: url(../img/wave-pc.png) repeat-x center center/auto 120px;
    height: 120px;
    top: -119px;
  }
}
.recommend__contents::after {
  content: "";
  position: absolute;
  bottom: -45px;
  left: 0;
  width: 100%;
  height: 45.714px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background: url(../img/wave.png) repeat-x center center/auto 45.714px;
}
@media screen and (min-width: 900px) {
  .recommend__contents::after {
    background: url(../img/wave-pc.png) repeat-x center center/auto 120px;
    height: 120px;
    bottom: -101px;
  }
}

@media screen and (min-width: 900px) {
  .recommend__content-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
  }
}

.recommend__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .recommend__head {
    padding-left: 16.6666666667%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.recommend__head-icon {
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 900px) {
  .recommend__head-icon {
    width: 36px;
    height: 36px;
  }
}
@media screen and (min-width: 1180px) {
  .recommend__head-icon {
    width: 56px;
    height: 56px;
    margin-left: -6px;
  }
}

.recommend__head-title {
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1180px) {
  .recommend__head-title {
    font-size: 40px;
    margin-left: 2px;
  }
}

.recommend__gallery {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .recommend__gallery {
    margin-top: 0px;
    margin-left: -7px;
  }
}

.recommend__gallery-slider {
  overflow-x: hidden !important;
}

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

.recommend__gallery-slide {
  width: 240px !important;
  background: #fff;
  padding-bottom: 31.159px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  font-family: "Noto Sans JP", "sans-serif";
  border-radius: 12px;
  overflow: hidden;
  height: auto !important;
}
@media screen and (min-width: 900px) {
  .recommend__gallery-slide {
    width: 300px !important;
    height: 442px !important;
    gap: 20px;
    padding-bottom: 35px !important;
    border-radius: 24px;
  }
}
@media screen and (min-width: 1180px) {
  .recommend__gallery-slide {
    width: 344px !important;
    height: 542px !important;
    gap: 24px;
    padding-bottom: 40px !important;
    border-radius: 24px;
  }
}

.recommend__gallery-image {
  height: 180px;
}
@media screen and (min-width: 900px) {
  .recommend__gallery-image {
    height: 200px;
  }
}
@media screen and (min-width: 1180px) {
  .recommend__gallery-image {
    height: 240px;
  }
}
.recommend__gallery-image img {
  width: 100%;
  height: 100%;
}

.recommend__gallery-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 24px;
}
@media screen and (min-width: 1180px) {
  .recommend__gallery-content {
    gap: 24px;
    padding-inline: 32px;
  }
}

.recommend__gallery-content-title {
  font-weight: 700;
}
@media screen and (min-width: 1180px) {
  .recommend__gallery-content-title {
    font-size: 20px;
  }
}

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

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

.gallery-prev {
  display: none;
}
@media screen and (min-width: 900px) {
  .gallery-prev {
    display: block;
    width: 60px;
    height: 60px;
    left: 18.9814814815%;
    top: 432px;
  }
}
@media screen and (min-width: 1180px) {
  .gallery-prev {
    display: block;
    width: 80px;
    height: 80px;
    left: 18.9814814815%;
    top: 508px;
  }
}

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

.gallery-next {
  display: none;
}
@media screen and (min-width: 900px) {
  .gallery-next {
    display: block;
    width: 60px;
    height: 60px;
    right: 18.9814814815%;
    top: 432px;
  }
}
@media screen and (min-width: 1180px) {
  .gallery-next {
    display: block;
    width: 80px;
    height: 80px;
    right: 18.9814814815%;
    top: 508px;
  }
}

@media screen and (min-width: 900px) {
  .recommend__content-sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 81px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    margin-top: 64px;
  }
  .recommend__content-sub::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 41px;
    width: 100px;
    height: 220px;
    background: url(../img/bg_pawpads.png) no-repeat center center/contain;
  }
}

.recommend__bottom-image {
  text-align: center;
}
.recommend__bottom-image img {
  width: 255px;
  height: 55px;
}
@media screen and (min-width: 1180px) {
  .recommend__bottom-image img {
    width: 495px;
    height: 107px;
  }
}

.recommend__bottom-content {
  margin-top: 16px;
  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;
  font-family: "Noto Sans JP", "sans-serif";
}
@media screen and (min-width: 900px) {
  .recommend__bottom-content {
    margin-top: 0;
  }
}

.recommend__bottom-text {
  color: #fff;
  text-align: center;
  font-size: 11.444px;
  font-weight: 400;
}
@media screen and (max-width: 374px) {
  .recommend__bottom-text {
    font-size: 10px;
  }
}
@media screen and (min-width: 900px) {
  .recommend__bottom-text {
    font-size: 16px;
  }
}

.recommned__button {
  text-align: center;
}
.recommned__button .button {
  height: 40px;
  font-size: 16px;
}
@media screen and (max-width: 374px) {
  .recommned__button .button {
    font-size: 12px;
  }
}
@media screen and (min-width: 900px) {
  .recommned__button .button {
    height: 56px;
    font-size: 20px;
    padding: 10px 40px 12px 40px;
    margin-left: 11px;
  }
}

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

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

.qa__head-text {
  margin-top: 6px;
}
@media screen and (min-width: 900px) {
  .qa__head-text {
    margin-top: 9px;
  }
}

.qa__boxes {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
  max-width: 335px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .qa__boxes {
    margin-top: 40px;
    max-width: 1064px;
    padding-inline: 20px;
    gap: 24px;
  }
}

.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__box-head-button::before {
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
}

.qa__box-head {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  padding: 10px 13px 10px 11px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .qa__box-head {
    padding: 20px;
    gap: 16px;
  }
}

.qa__box-head-icon {
  color: #9ed0e0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  width: 29px;
  height: 35px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 2px;
}
@media screen and (min-width: 900px) {
  .qa__box-head-icon {
    font-size: 32px;
    margin-top: -6px;
  }
}

.qa__box-head-text {
  font-family: "Noto Sans JP", "sans-serif";
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .qa__box-head-text {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    font-size: 20px;
    font-weight: bold;
  }
}

.qa__box-head-button {
  width: 26.182px;
  height: 26.182px;
  background: #9ed0e0;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s display 0.3s;
  transition: -webkit-transform 0.3s display 0.3s;
  transition: transform 0.3s display 0.3s;
  transition: transform 0.3s display 0.3s, -webkit-transform 0.3s display 0.3s;
}
@media screen and (min-width: 900px) {
  .qa__box-head-button {
    width: 48px;
    height: 48px;
  }
}
.qa__box-head-button::before, .qa__box-head-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10.182px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
}
@media screen and (min-width: 900px) {
  .qa__box-head-button::before, .qa__box-head-button::after {
    width: 18.667px;
    height: 2.667px;
  }
}
.qa__box-head-button::before {
  -webkit-transition: -webkit-transform 0.3s display 0.3s;
  transition: -webkit-transform 0.3s display 0.3s;
  transition: transform 0.3s display 0.3s;
  transition: transform 0.3s display 0.3s, -webkit-transform 0.3s display 0.3s;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.qa__box-head-button::after {
  -webkit-transition: -webkit-transform 0.3s display 0.3s;
  transition: -webkit-transform 0.3s display 0.3s;
  transition: transform 0.3s display 0.3s;
  transition: transform 0.3s display 0.3s, -webkit-transform 0.3s display 0.3s;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.qa__box-body {
  display: none;
}

.qa__box-body-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 15px 14px 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: #f5f5f5;
}
@media screen and (min-width: 900px) {
  .qa__box-body-a {
    padding: 24px;
  }
}

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

.qa__box-body-text {
  color: #4a3636;
  font-family: "Noto Sans JP", "sans-serif";
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .qa__box-body-text {
    font-size: 16px;
  }
}

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

.entry__contents {
  padding-block: 16px;
  padding-inline: 15px 18px;
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
  max-width: 335px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .entry__contents {
    max-width: 1024px;
    padding: 32px 48px;
  }
}

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

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

.entry__boxes {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
}
@media screen and (min-width: 900px) {
  .entry__boxes {
    margin-top: 41px;
    gap: 13px;
  }
}

.entry__box {
  padding-bottom: 14px;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 900px) {
  .entry__box {
    padding-bottom: 11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.entry__box:nth-of-type(5) {
  border-bottom: none;
  padding-bottom: 15px;
}

.entry__box-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Sans JP", "sans-serif";
}
@media screen and (min-width: 900px) {
  .entry__box-head {
    width: 240px;
    padding-left: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.entry__box-head-icon {
  margin-top: -4px;
}
.entry__box-head-icon .dot {
  width: 8px;
  height: 8px;
}

.entry__box-head-title {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (min-width: 900px) {
  .entry__box-head-title {
    font-size: 16px;
  }
}

.entry__box-body {
  margin-top: 9px;
  font-size: 12px;
  font-weight: 400;
}
.entry__box-body .letter-spacing {
  letter-spacing: -0.9px;
}
@media screen and (min-width: 900px) {
  .entry__box-body .letter-spacing {
    letter-spacing: -1.2px;
  }
}
@media screen and (min-width: 900px) {
  .entry__box-body {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    font-size: 16px;
    margin-top: 0;
  }
}

.padding-left {
  padding-left: 19px;
}
@media screen and (min-width: 900px) {
  .padding-left {
    padding-left: 24px;
  }
}

.entry__box-body-text {
  position: relative;
  letter-spacing: -0.015px;
  font-family: "Noto Sans JP", "sans-serif";
}

.circle {
  margin-top: -0.7px;
}
@media screen and (min-width: 900px) {
  .circle:nth-of-type(1) {
    margin-top: -1px;
  }
  .circle:nth-of-type(n + 2) {
    margin-top: 0.7px;
  }
}
.circle::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -11px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #4a3636;
}
@media screen and (min-width: 900px) {
  .circle::before {
    left: -14px;
    top: 12px;
    width: 4px;
    height: 4px;
  }
}

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

.entry__bg-image {
  height: 99px;
}
@media screen and (min-width: 900px) {
  .entry__bg-image {
    height: 400px;
  }
}
.entry__bg-image img {
  width: 100%;
  height: 100%;
}

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

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

.contact__head-text {
  padding-top: 4px;
}
@media screen and (min-width: 900px) {
  .contact__head-text {
    padding-top: 8px;
  }
}

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

.contact__sub-title-text {
  text-align: center;
  font-family: "Noto Sans JP", "sans-serif";
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .contact__sub-title-text {
    font-size: 16px;
  }
}

.contact__boxes {
  margin-top: 24px;
  max-width: 375px;
  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;
  max-width: 335px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .contact__boxes {
    margin-top: 40px;
    max-width: 888px;
    padding-inline: 20px;
  }
}

.contact__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7.8px;
}
@media screen and (min-width: 900px) {
  .contact__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
  .contact__box.padding-block {
    padding-block: 17px;
  }
}

.contact__box-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: "Noto Sans JP", "sans-serif";
}
@media screen and (min-width: 900px) {
  .contact__box-text {
    width: 180px;
  }
}

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

.contact-name {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .contact-name {
    font-size: 16px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.contact-label {
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
  background: var(--LP-Red, #ce2073);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4px 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .contact-label {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.contact__box-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.contact__box-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-size: 14px;
  font-family: "Noto Sans JP", "sans-serif";
  height: 56px;
  padding: 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-radius: 8px;
  background: #f5f5f5;
  border: 1px solid transparent;
}
@media screen and (min-width: 900px) {
  .contact__box-input {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    font-size: 16px;
  }
}
.contact__box-input:focus, .contact__box-input:hover {
  outline: none;
  border: 1px solid #9ed0e0;
  background: #e9f6f8;
}

.js-form-input.is-error {
  border: 1px solid #ce2073;
  background: #fff0f7;
}

.js-form-label.error {
  color: #ce2073;
}

.contact-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 56px;
  padding: 15px;
  font-size: 14px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: 100%;
  border-radius: 8px;
  background: #f5f5f5;
  background-image: url(../img/bottom-arrow.svg), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat no-repeat;
  background-position: center right 18.56px, center center;
  background-size: 14.9px 8.78px, cover;
  border: 1px solid transparent;
}
@media screen and (min-width: 900px) {
  .contact-select {
    font-size: 16px;
    padding: 16px;
  }
}
.contact-select:focus, .contact-select:hover {
  outline: none;
  border: 1px solid #9ed0e0;
}

.contact__box-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.contact__box-radio {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.contact__box-radio:checked + .contact-input__radio-text::after {
  opacity: 1;
}
.contact__box-radio:focus + .contact-input__radio-text::before {
  border: 1px solid #9ed0e0;
}

.contact-input__radio-text {
  padding-left: 32px;
  position: relative;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .contact-input__radio-text {
    font-size: 16px;
    padding-left: 33px;
  }
}
.contact-input__radio-text::before, .contact-input__radio-text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.contact-input__radio-text::before {
  left: 0;
  width: 23px;
  height: 23px;
  background: #f5f5f5;
  border: 1px solid transparent;
}
.contact-input__radio-text::after {
  border-radius: 10px;
  background: #67b0c7;
  width: 10px;
  height: 10px;
  left: 7px;
  opacity: 0;
}

.contact-textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 160px;
  padding: 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Noto Sans JP", "sans-serif";
  font-size: 14px;
  border-radius: 8px;
  background: #f5f5f5;
  border: 1px solid transparent;
}
@media screen and (min-width: 900px) {
  .contact-textarea {
    font-size: 16px;
    margin-top: -2px;
  }
}
.contact-textarea:focus, .contact-textarea:hover {
  outline: none;
  border: 1px solid #9ed0e0;
  background: #e9f6f8;
}

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

.contact-checkbox {
  position: relative;
}

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

.contact-checkbox__text {
  position: relative;
  padding-left: 36px;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .contact-checkbox__text {
    font-size: 16px;
  }
}
.contact-checkbox__text a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3px 1px;
  -webkit-text-decoration: 1px underline;
          text-decoration: 1px underline;
}
.contact-checkbox__text a:focus, .contact-checkbox__text a:hover {
  outline: none;
  border: 2px solid #9ed0e0;
  border-radius: 3px;
}
.contact-checkbox__text::before, .contact-checkbox__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact-checkbox__text::before {
  left: 0;
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  border-radius: 4px;
  border: 1px solid transparent;
}
.contact-checkbox__text::after {
  background: url(../img/check-icon.svg) no-repeat center center/contain;
  width: 10px;
  height: 10px;
  left: 7px;
  opacity: 0;
}

.contact__button {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact__button {
    margin-top: 14px;
  }
}
.contact__button input {
  font-size: 16px;
}
@media screen and (min-width: 900px) {
  .contact__button input {
    font-size: 16px;
    padding: 6px 39px 8px 39px;
  }
}

.button {
  height: 40px;
}

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

.footer__bg-image {
  position: absolute;
  top: 80px;
  left: calc(50% + 756px - 80px - 100px);
  width: 100px;
  height: 220px;
}
.footer__bg-image img {
  width: 100%;
  height: 100%;
}

.footer__contents {
  max-width: 335px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .footer__contents {
    max-width: 840px;
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1180px) {
  .footer__contents {
    max-width: 1064px;
    padding-inline: 20px;
  }
}

.footer__contents-head {
  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: 24px;
}

.footer__contents-head-title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  line-height: 1.25;
  font-family: 400;
}
@media screen and (min-width: 900px) {
  .footer__contents-head-title {
    font-size: 24px;
  }
}

.footer__contents-head-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

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

.footer__content {
  margin-top: 15px;
}
@media screen and (min-width: 900px) {
  .footer__content {
    margin-top: 41px;
  }
}

.footer__content-title {
  text-align: center;
}
.footer__content-title img {
  width: 328px;
  height: 34.4px;
}
@media screen and (min-width: 900px) {
  .footer__content-title img {
    width: 755px;
    height: 82.231px;
  }
}

.footer__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: 19px;
  border-radius: 16px;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .footer__card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.footer__card-map {
  width: 100%;
  height: 271px;
}
@media screen and (min-width: 900px) {
  .footer__card-map {
    width: 420px;
    height: 350px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 1180px) {
  .footer__card-map {
    width: 512px;
    height: 400px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.footer__card-map iframe {
  width: 100%;
  height: 100%;
}

.footer__card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  padding-inline: 24px;
  padding-bottom: 29px;
}
@media screen and (min-width: 900px) {
  .footer__card-body {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-inline: 61.5px 0;
    padding-bottom: 8px;
    gap: 24px;
  }
}

.footer__card-body-title {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer__card-body-title {
    text-align: left;
  }
}
.footer__card-body-title img {
  width: 153px;
  height: 20px;
}
@media screen and (min-width: 900px) {
  .footer__card-body-title img {
    width: 183px;
    height: 24px;
  }
}

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

.footer__card-information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-family: "Noto Sans JP", "sans-serif";
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .footer__card-information {
    font-size: 12px;
    gap: 10px;
  }
}
@media screen and (min-width: 1180px) {
  .footer__card-information {
    font-size: 16px;
    gap: 40px;
  }
}

.footer__card-information-category {
  width: 48px;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 16px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .footer__card-information-category {
    width: 64px;
  }
}
.footer__card-information-category::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: url(../img/Ellipse.svg) no-repeat center center/contain;
}

.footer__card-information-text {
  font-weight: 400;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.footer__top {
  text-align: center;
  padding-block: 24px;
}
@media screen and (min-width: 900px) {
  .footer__top {
    position: fixed;
    bottom: 10px;
    right: 40px;
    padding-block: 0;
    z-index: 10;
  }
}
.footer__top img {
  width: 78px;
  height: 80px;
}
@media screen and (min-width: 1180px) {
  .footer__top img {
    width: 100px;
    height: 104px;
  }
}

.footer__copy {
  text-align: center;
  padding-bottom: 22px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #67b0c7;
  margin-top: 37.7px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .footer__copy {
    margin-top: 117px;
    padding-bottom: 32px;
  }
}
.footer__copy::before {
  content: "";
  position: absolute;
  top: -39px;
  left: 0;
  width: 100%;
  height: 45.714px;
  background: url(../img/bg_wave-sp.png) repeat bottom 0 left 0/96px 45.714px;
}
@media screen and (min-width: 900px) {
  .footer__copy::before {
    background: url(../img/bg_wave-sp.png) repeat bottom 0 left 0/252px 120px;
    height: 120px;
    top: -118px;
  }
}

.footer__copy-text {
  display: inline-block;
  color: #fff;
  font-family: "Noto Sans JP", "sans-serif";
  font-size: 10px;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .footer__copy-text {
    font-size: 14px;
  }
}