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

html {
  scroll-padding-top: 100px;
}

body {
  font-size: 16px;
  line-height: 1.6;
  color: #4a3636;
  font-family: "Noto Sans JP", sans-serif;
  background: #e9f6f8;
}

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

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

.inner {
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 901px) {
  .inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1084px;
    margin-left: auto;
    margin-right: auto;
  }
}

.button {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  padding: 6px 24px 8px 24px;
  border: 2px solid #4a3636;
  border-radius: 40px;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.button:hover {
  background-color: #ffee56;
}
@media screen and (min-width: 901px) {
  .button {
    font-size: 14px;
  }
}

header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 62px;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 901px) {
  header {
    height: 64px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18px 20px;
}
@media screen and (min-width: 901px) {
  .header__inner {
    padding: 11px 24px;
    max-width: 1512px;
    margin-left: auto;
    margin-right: auto;
  }
}

.header__logo img {
  width: 210px;
}
@media screen and (min-width: 901px) {
  .header__logo img {
    width: 183px;
    padding-top: 10px;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 901px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__link {
  font-size: 12px;
  line-height: 1.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__link:hover {
  color: #67b0c7;
  border-bottom: 1px solid #67b0c7;
}

@media screen and (min-width: 901px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 32px;
  height: 3px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(4) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 32px;
  height: 3px;
}

.drawer-icon__bar {
  position: absolute;
  border-radius: 6px;
  background: #4a3636;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0;
  left: 0;
  width: 25.6px;
  height: 3px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 0;
  right: 0;
  width: 4.8px;
  height: 3px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 12px;
  left: 0;
  width: 32px;
  height: 3px;
}
.drawer-icon__bar:nth-of-type(4) {
  top: 24px;
  left: 0;
  width: 32px;
  height: 3px;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  right: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.5s linear;
  transition: -webkit-transform 0.5s linear;
  transition: transform 0.5s linear;
  transition: transform 0.5s linear, -webkit-transform 0.5s linear;
  background: #fff;
}
.drawer-content.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  z-index: 98;
}

.drawer-content__menu {
  margin-top: 82px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  font-size: 14px;
}

.drawer-content__link {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.drawer-content__link:hover {
  color: #67b0c7;
  text-decoration: underline; /* ホバーした際に下線を追加 */
  text-decoration-color: #67b0c7;
}

.mv {
  width: 100%;
  height: 554px;
  background: url(../img/Onomichi_sp.png) center/cover no-repeat;
  margin-top: 62px;
}
@media screen and (min-width: 901px) {
  .mv {
    height: 740px;
    background: url(../img/Onomichi_pc.png) center/cover no-repeat;
    border-radius: 0px 0px 40px 40px;
    margin-top: 64px;
  }
}

.mv__inner {
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 901px) {
  .mv__inner {
    max-width: 908px;
  }
}

.mv__contents {
  text-align: center;
  padding-top: 19px;
}
@media screen and (min-width: 901px) {
  .mv__contents {
    padding-top: 34px;
  }
}

.mv__lead {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  font-family: "Kiwi Maru", sans-serif;
  text-shadow: 0px 0px 30px #fff;
}
@media screen and (min-width: 901px) {
  .mv__lead {
    font-size: 24px;
  }
}

.mv__contents-img {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 901px) {
  .mv__contents-img {
    padding-top: 24px;
    gap: 16px;
  }
}

.contents__img1 {
  width: 335px;
  background: #fff;
}
@media screen and (min-width: 901px) {
  .contents__img1 {
    width: 520px;
  }
}

.contents__img2 {
  width: 240px;
}
@media screen and (min-width: 901px) {
  .contents__img2 {
    width: 356px;
  }
}

.img_fukidashi {
  width: 142px;
  position: absolute;
  top: 195px;
  left: 0;
}
@media screen and (min-width: 901px) {
  .img_fukidashi {
    width: 238px;
    position: absolute;
    top: 279px;
    left: 70px;
  }
}

.img_present {
  width: 110px;
  position: absolute;
  top: 187px;
  right: 25px;
}
@media screen and (min-width: 901px) {
  .img_present {
    position: absolute;
    width: 180px;
    top: 295px;
    right: 157px;
  }
}

.smartphone-img {
  width: 200px;
  position: absolute;
  top: 291px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
@media screen and (min-width: 901px) {
  .smartphone-img {
    width: 250px;
    top: 311px;
  }
}

.food-img {
  width: 89px;
  position: absolute;
  top: 569px;
  left: 0;
}
@media screen and (min-width: 901px) {
  .food-img {
    width: 210px;
    top: 506px;
    left: 32px;
  }
}

.cats-img {
  width: 107px;
  position: absolute;
  top: 582px;
  right: 0;
}
@media screen and (min-width: 901px) {
  .cats-img {
    width: 233px;
    top: 587px;
    right: 31px;
  }
}

.mv__smartphone-box {
  width: 160px;
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 12.8px;
  background: #fff;
  gap: 13px;
  position: absolute;
  top: 414px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  overflow: hidden;
}
@media screen and (min-width: 901px) {
  .mv__smartphone-box {
    width: 200px;
    top: 465px;
    gap: 16px;
    padding-bottom: 34px;
  }
}

.box__title {
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  padding: 6.4px 9.6px;
}
@media screen and (min-width: 901px) {
  .box__title {
    padding: 8px 12px;
  }
}

.box__title-text {
  font-size: 12.8px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 901px) {
  .box__title-text {
    font-size: 16px;
  }
}

.box__text {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  text-align: center;
}

.box__text1 {
  display: inline-block;
  border-bottom: solid 2.4px #ce2073;
}
@media screen and (min-width: 901px) {
  .box__text1 {
    font-size: 14px;
  }
}

.box__text2 {
  font-weight: 700;
  padding-top: 3px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 901px) {
  .box__text2 {
    font-size: 15px;
    padding-top: 5px;
  }
}

.box__button {
  padding-top: 3px;
  text-align: center;
}
@media screen and (min-width: 901px) {
  .box__button {
    padding-top: 5px;
  }
}
.box__button a {
  padding-top: 2px;
  padding-bottom: 4px;
  font-size: 14px;
}
@media screen and (min-width: 901px) {
  .box__button a {
    padding-top: 0;
    padding-bottom: 10px;
    font-size: 16px;
  }
}

.about {
  padding-top: 190px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 100px;
}
@media screen and (min-width: 901px) {
  .about {
    padding-top: 179px;
  }
}

.about__bg {
  position: relative;
}
.about__bg-diagonal-line {
  position: absolute;
  top: -22px;
  left: -384px;
  z-index: -52;
}
.about__bg-slope {
  position: absolute;
}
@media screen and (max-width: 767px) {
  .about__bg-slope {
    width: 216px;
    top: 560px;
    left: -75px;
    z-index: -52;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .about__bg-slope {
    width: 216px;
    top: 560px;
    left: -235px;
    z-index: -52;
  }
}
@media screen and (min-width: 901px) {
  .about__bg-slope {
    top: 320px;
    left: -466px;
  }
}
.about__bg-goods1 {
  position: absolute;
}
@media screen and (max-width: 767px) {
  .about__bg-goods1 {
    width: 48px;
    top: 720px;
    right: 1px;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .about__bg-goods1 {
    width: 48px;
    top: 720px;
    right: 1px;
  }
}
@media screen and (min-width: 901px) {
  .about__bg-goods1 {
    top: 600px;
    right: -212px;
  }
}
.about__bg-goods2 {
  position: absolute;
  z-index: -50;
}
@media screen and (max-width: 767px) {
  .about__bg-goods2 {
    width: 133px;
    top: 762px;
    right: 37px;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .about__bg-goods2 {
    width: 133px;
    top: 762px;
    right: 37px;
  }
}
@media screen and (min-width: 901px) {
  .about__bg-goods2 {
    top: 756px;
    right: -288px;
  }
}
.about__bg-wavyline1 {
  position: absolute;
  top: 605px;
  right: -975px;
}
.about__bg-wavyline2 {
  position: absolute;
  top: 637px;
  right: -912px;
}
.about__bg-pawpads {
  width: 54px;
  position: absolute;
  top: -10px;
  right: -20px;
  z-index: -50;
}
@media (min-width: 768px) and (max-width: 900px) {
  .about__bg-pawpads {
    right: -108px;
  }
}
@media screen and (min-width: 901px) {
  .about__bg-pawpads {
    width: 100px;
    top: -82px;
    right: -196px;
  }
}
.about__bg-left {
  width: 200px;
  position: absolute;
  top: 395px;
  left: -160px;
  z-index: -50;
}
@media screen and (min-width: 901px) {
  .about__bg-left {
    width: 480px;
    top: 72px;
    left: -700px;
    z-index: 2;
  }
}
.about__bg-right {
  width: 200px;
  position: absolute;
  top: 273px;
  right: -160px;
  z-index: -50;
}
@media screen and (min-width: 901px) {
  .about__bg-right {
    width: 480px;
    top: 72px;
    right: -645px;
  }
}

.about__bg-slope::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(68.58%, rgba(233, 246, 248, 0)), color-stop(80.78%, #e9f6f8));
  background: linear-gradient(180deg, rgba(233, 246, 248, 0) 68.58%, #e9f6f8 80.78%);
  z-index: 0; /* グラデーションは画像よりも上に配置 */
}

.about__inner {
  background: #fff;
  border-radius: 24px;
}
@media (min-width: 768px) and (max-width: 900px) {
  .about__inner {
    max-width: 504.7619047619px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 901px) {
  .about__inner {
    max-width: 848px;
    border-radius: 34px;
  }
}

.about__contents {
  padding-top: 40px;
  padding-bottom: 46px;
  text-align: center;
  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;
  padding-left: 12px;
  padding-right: 12px;
}
@media screen and (min-width: 901px) {
  .about__contents {
    padding-left: 13.4433962264%;
    padding-right: 13.4433962264%;
    padding-bottom: 56px;
  }
}

.heading {
  text-align: center;
}

.about__heading {
  position: relative;
}

.heading__icon {
  text-align: center;
}
.heading__icon img {
  width: 38px;
}
@media screen and (min-width: 901px) {
  .heading__icon img {
    width: 48px;
  }
}

.heading__en {
  text-align: center;
  font-size: 16px;
  line-height: 1.25;
  font-family: "Courgette", sans-serif;
  padding-top: 6px;
  padding-bottom: 6px;
}
@media screen and (min-width: 901px) {
  .heading__en {
    font-size: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

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

.about__heading-img-left {
  width: 88px;
  position: absolute;
  top: -9px;
  left: 21px;
}
@media screen and (min-width: 901px) {
  .about__heading-img-left {
    width: 148px;
    top: -3px;
    left: -51px;
  }
}
.about__heading-img-right {
  width: 88px;
  position: absolute;
  top: -10px;
  right: 7px;
}
@media screen and (min-width: 901px) {
  .about__heading-img-right {
    width: 148px;
    top: 5px;
    right: -52px;
  }
}

.about__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: 24px;
}
@media screen and (min-width: 901px) {
  .about__box {
    gap: 32px;
    padding-top: 8px;
  }
}

.about__box-head p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 901px) {
  .about__box-head p {
    font-size: 16px;
  }
}

.about__box-body {
  font-size: 12px;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 901px) {
  .about__box-body {
    font-size: 16px;
    gap: 27px;
  }
}

.acount-name {
  text-decoration-line: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.acount-name:hover {
  color: #67b0c7;
}

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

.tag {
  font-weight: 700;
}

.about__box-text p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  padding: 8px 0 6px;
  display: inline-block;
  background-image: linear-gradient(to right, #9ed0e0, #9ed0e0 4px, transparent 4px, transparent 4px);
  background-size: 8px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
@media screen and (min-width: 901px) {
  .about__box-text p {
    font-size: 20px;
    padding: 12px 0 12px;
  }
}

.about__box-button {
  margin-top: 8px;
}
@media screen and (min-width: 901px) {
  .about__box-button a {
    font-size: 20px;
    padding: 8px 38px 13px;
  }
}

.about__arrow {
  text-align: center;
}
.about__arrow img {
  width: 100px;
}
@media screen and (min-width: 901px) {
  .about__arrow img {
    width: 140px;
  }
}

.about__onomichi-logo {
  text-align: center;
  margin-top: 104px;
}
@media screen and (min-width: 901px) {
  .about__onomichi-logo {
    margin-top: 117px;
  }
}
.about__onomichi-logo img {
  width: 355px;
}
@media screen and (min-width: 901px) {
  .about__onomichi-logo img {
    width: 891px;
  }
}

.about__swiper {
  margin-top: -100px;
}
@media screen and (min-width: 901px) {
  .about__swiper {
    margin-top: -106px;
  }
}

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

.about__swiper-slide {
  max-width: 100px;
  width: 100%;
}
@media screen and (min-width: 901px) {
  .about__swiper-slide {
    max-width: 200px;
  }
}

.about__swiper-button-prev {
  display: none;
}

.about__swiper-button-next {
  display: none;
}

.about__swiper-scrollbar {
  display: none;
}

.how-to-enter {
  padding-top: 64px;
  padding-bottom: 29px;
  overflow: hidden;
}
@media screen and (min-width: 901px) {
  .how-to-enter {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .how-to-enter__inner {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }
}

.how-to-enter__bg {
  position: relative;
}
.how-to-enter__bg-map {
  position: absolute;
  width: 149px;
  left: -20px;
}
@media (min-width: 768px) and (max-width: 900px) {
  .how-to-enter__bg-map {
    left: 212px;
  }
}
@media screen and (min-width: 901px) {
  .how-to-enter__bg-map {
    width: 460px;
    top: -60px;
    left: -208px;
  }
}
.how-to-enter__bg-cat1 {
  position: absolute;
  width: 105px;
  right: 4px;
}
@media (min-width: 768px) and (max-width: 900px) {
  .how-to-enter__bg-cat1 {
    right: 200px;
  }
}
@media screen and (min-width: 901px) {
  .how-to-enter__bg-cat1 {
    width: 238px;
    top: -26px;
    right: -12px;
  }
}
.how-to-enter__bg-cat2 {
  position: absolute;
  width: 94px;
  top: 5px;
  right: -51px;
}
@media (min-width: 768px) and (max-width: 900px) {
  .how-to-enter__bg-cat2 {
    right: 145px;
  }
}
@media screen and (min-width: 901px) {
  .how-to-enter__bg-cat2 {
    width: 214px;
    top: -18px;
    right: -139px;
  }
}
.how-to-enter__bg-pawpad1 {
  position: absolute;
  width: 55px;
  top: 75px;
  right: 0;
}
@media (min-width: 768px) and (max-width: 900px) {
  .how-to-enter__bg-pawpad1 {
    right: 20px;
  }
}
@media screen and (min-width: 901px) {
  .how-to-enter__bg-pawpad1 {
    width: 100px;
    top: 149px;
    right: -208px;
  }
}
.how-to-enter__bg-pawpad2 {
  position: absolute;
  width: 55px;
  top: 550px;
}
@media (min-width: 768px) and (max-width: 900px) {
  .how-to-enter__bg-pawpad2 {
    left: 20px;
  }
}
@media screen and (min-width: 901px) {
  .how-to-enter__bg-pawpad2 {
    width: 100px;
    top: 579px;
    left: -207px;
  }
}
.how-to-enter__bg-pawpad3 {
  position: absolute;
  width: 55px;
  top: 880px;
  right: 0;
}
@media (min-width: 768px) and (max-width: 900px) {
  .how-to-enter__bg-pawpad3 {
    right: 20px;
  }
}
@media screen and (min-width: 901px) {
  .how-to-enter__bg-pawpad3 {
    display: none;
  }
}

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

.how-to-enter__boxes {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 901px) {
  .how-to-enter__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 901px) {
  .how-to-enter__box {
    width: 100%;
  }
}

.how-to-enter__box:nth-child(1) {
  position: relative;
}

.how-to-enter__box:nth-child(1)::after {
  content: url(../img/img_step_line.png);
  display: block;
}
@media screen and (max-width: 767px) {
  .how-to-enter__box:nth-child(1)::after {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 901px) {
  .how-to-enter__box:nth-child(1)::after {
    content: url(../img/img_step_line_pc.png);
    position: absolute;
    width: 113px;
    top: 206px;
    right: -48px;
  }
}

.how-to-enter__box:nth-child(2) {
  position: relative;
}

.how-to-enter__box:nth-child(2)::after {
  content: url(../img/img_step_line.png);
  display: block;
}
@media screen and (max-width: 767px) {
  .how-to-enter__box:nth-child(2)::after {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 361px;
  }
}
@media screen and (min-width: 901px) {
  .how-to-enter__box:nth-child(2)::after {
    content: url(../img/img_step_line_pc.png);
    position: absolute;
    width: 113px;
    top: 136px;
    right: -57px;
  }
}

.how-to-enter__box-img img {
  width: 196px;
}
@media (min-width: 768px) and (max-width: 900px) {
  .how-to-enter__box-img img {
    width: 250px;
  }
}
@media screen and (min-width: 901px) {
  .how-to-enter__box-img img {
    width: 280px;
  }
}

.how-to-enter__box-text {
  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;
  margin-top: 16px;
}
@media screen and (min-width: 901px) {
  .how-to-enter__box-text {
    margin-top: 25px;
  }
}

.how-to-enter__box-lead {
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 901px) {
  .how-to-enter__box-lead {
    font-size: 20px;
  }
}

.how-to-enter__box-body {
  font-size: 12px;
  line-height: 1.6;
}
@media screen and (min-width: 901px) {
  .how-to-enter__box-body {
    font-size: 16px;
  }
}

.how-to-enter__box-link {
  margin-top: 16px;
  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;
  width: 226px;
  padding: 8px 12px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .how-to-enter__box-link {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 901px) {
  .how-to-enter__box-link {
    margin-top: 18px;
    width: 254px;
  }
}
.how-to-enter__box-link img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
@media screen and (min-width: 901px) {
  .how-to-enter__box-link img {
    width: 24px;
    height: 24px;
  }
}
.how-to-enter__box-link p {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 901px) {
  .how-to-enter__box-link p {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .how-to-enter-box2 {
    margin-top: 2px;
    margin-bottom: 17px;
  }
}
@media screen and (min-width: 901px) {
  .how-to-enter-box2 {
    margin-top: 69px;
  }
}

.how-to-enter__box-button {
  margin-top: 22px;
}
.how-to-enter__box-button a {
  background-color: #fff;
}
@media screen and (min-width: 901px) {
  .how-to-enter__box-button {
    margin-top: 60px;
    text-align: center;
  }
  .how-to-enter__box-button a {
    font-size: 20px;
    padding: 10px 40px 12px;
  }
}

.prizes {
  position: relative;
  padding-top: 83px;
  margin-top: -68px;
}
@media screen and (min-width: 901px) {
  .prizes {
    padding-top: 268px;
    margin-top: -100px;
  }
}

.prizes::before {
  content: "";
  position: absolute;
  background-image: url(../img/prizes-heading_sp.png);
  width: 236px;
  height: 83px;
  top: 85px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 901px) {
  .prizes::before {
    background-image: url(../img/prizes-heading_pc.png);
    width: 376px;
    height: 152px;
    top: 118px;
  }
}

@media screen and (max-width: 767px) {
  .prizes__inner {
    max-width: 375px;
    padding-left: 20px;
    padding-right: 20px;
    background: #fff;
    border-radius: 24px;
    padding-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 85px;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .prizes__inner {
    max-width: 500px;
    padding-left: 20px;
    padding-right: 20px;
    background: #fff;
    border-radius: 24px;
    padding-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 85px;
  }
}

.prizes__contents {
  padding-bottom: 12px;
}
@media screen and (min-width: 901px) {
  .prizes__contents {
    background: #fff;
    border-radius: 24px;
    padding-bottom: 65px;
  }
}

@media screen and (min-width: 901px) {
  .prizes__bg-top {
    position: relative;
  }
}

@media screen and (min-width: 901px) {
  .prizes__bg-triangle {
    position: absolute;
    top: -125px;
  }
}

.prizes__heading {
  text-align: center;
  position: absolute;
  z-index: 50;
  top: 105px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 901px) {
  .prizes__heading {
    top: 148px;
  }
}

.prizes__text {
  text-align: center;
  font-size: 12px;
  padding-top: 60px;
}
@media screen and (min-width: 901px) {
  .prizes__text {
    font-size: 16px;
    padding-top: 61px;
  }
}

.prizes__cards {
  padding-top: 45px;
  display: grid;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 38px;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media screen and (min-width: 901px) {
  .prizes__cards {
    max-width: 912px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-top: 82px;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(6, 1fr);
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap: 80px;
  }
}

.prizes__card {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  position: relative;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
.prizes__card:hover .prizes__card-contents {
  border: 2px solid #9ed0e0;
}
.prizes__card:hover svg .button_icon-path {
  fill: #9ed0e0;
}
.prizes__card:hover .prizes__card-img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

@media screen and (min-width: 901px) {
  .prizes__card:nth-of-type(1) {
    grid-area: 1/1/2/4;
    max-width: 442px;
    width: 100%;
  }
}

@media screen and (min-width: 901px) {
  .prizes__card:nth-of-type(2) {
    grid-area: 1/4/2/7;
    max-width: 442px;
    width: 100%;
  }
}

@media screen and (min-width: 901px) {
  .prizes__card:nth-of-type(3) {
    grid-area: 2/1/3/3;
    max-width: 280px;
    width: 100%;
  }
}

@media screen and (min-width: 901px) {
  .prizes__card:nth-of-type(4) {
    grid-area: 2/3/3/5;
    max-width: 280px;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .prizes__card:last-child {
    grid-column: 1/span 2; /* 2列分に広げる */
    justify-self: center; /* 横方向に中央寄せ */
    align-self: center;
  }
}
@media screen and (min-width: 901px) {
  .prizes__card:last-child {
    grid-area: 2/5/3/7;
    max-width: 280px;
    width: 100%;
  }
}

.prizes__card-number img {
  width: 48px;
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 50;
}
@media screen and (min-width: 901px) {
  .prizes__card-number img {
    width: 100px;
    top: -50px;
  }
}

@media screen and (min-width: 901px) {
  .card-number-pc img {
    width: 80px;
    top: -40px;
    z-index: 50;
  }
}

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

.prizes__card-contents {
  margin: 0;
  background: #f5f5f5;
  border-width: 2px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 901px) {
  .prizes__card-contents {
    border-radius: 26px;
  }
}

.prizes__card-img {
  display: block;
  overflow: hidden;
}
.prizes__card-img img {
  max-width: 160px;
  width: 100%;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
@media screen and (min-width: 901px) {
  .prizes__card-img img {
    max-width: 440px;
    border-top-right-radius: 26px;
    border-top-left-radius: 26px;
  }
}

@media screen and (min-width: 901px) {
  .card-img-pc img {
    overflow: hidden;
    max-width: 280px;
    width: 100%;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
  }
}

.prizes__card-text {
  width: 160px;
  height: 56px;
  font-size: 12px;
  font-weight: 700;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (min-width: 901px) {
  .prizes__card-text {
    max-width: 440px;
    width: 100%;
    height: 122px;
    font-size: 20px;
  }
}

@media screen and (min-width: 901px) {
  .card-text-pc {
    max-width: 280px;
    width: 100%;
    height: 80px;
    font-size: 16px;
  }
}

.button_icon {
  border-bottom-right-radius: 8px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (min-width: 768px) and (max-width: 900px) {
  .button_icon {
    right: 33px;
  }
}
@media screen and (min-width: 901px) {
  .button_icon {
    height: 100px;
    max-width: 100px;
    width: 100%;
    border-bottom-right-radius: 26px;
    right: 0;
  }
}

@media screen and (min-width: 901px) {
  .button_icon-pc {
    height: 64px;
    max-width: 64px;
    width: 100%;
    right: 0px;
    border-bottom-right-radius: 20px;
  }
}

.prizes__button {
  text-align: center;
  margin-top: 25px;
}
.prizes__button a {
  padding: 6px 22px 8px 22px;
}
@media screen and (min-width: 901px) {
  .prizes__button {
    margin-top: 49px;
    text-align: center;
  }
  .prizes__button a {
    font-size: 20px;
    padding: 10px 40px 12px;
  }
}

.prizes__modal {
  max-width: 366px;
  height: 480px;
  padding: 0;
  border: 0;
  border-radius: 24px;
}
.prizes__modal::-ms-backdrop {
  background: #000;
  opacity: 0.7;
}
.prizes__modal::backdrop {
  background: #000;
  opacity: 0.7;
}
@media screen and (min-width: 901px) {
  .prizes__modal {
    max-width: 480px;
    height: 650px;
  }
}

.prizes__modal-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
}

.prizes__modal-img img {
  width: 100%;
  height: 210px;
}
@media screen and (min-width: 901px) {
  .prizes__modal-img img {
    height: 300px;
  }
}

.prizes__modal-body {
  padding: 0 20px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  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;
  margin-top: 39px;
}
@media screen and (min-width: 901px) {
  .prizes__modal-body {
    padding: 0 40px;
    margin-top: 32px;
  }
}

.prizes__modal-head {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 901px) {
  .prizes__modal-head {
    font-size: 20px;
  }
}

.prizes__modal-text {
  font-size: 12px;
}
@media screen and (min-width: 901px) {
  .prizes__modal-text {
    font-size: 16px;
  }
}

.prizes__modal-button {
  text-align: center;
  margin-top: 16px;
}
@media screen and (min-width: 901px) {
  .prizes__modal-button {
    margin-top: 24px;
  }
}

.prizese__bg-bottom {
  width: 100%;
  height: 260px;
  background: url(../img/prizes_bg-bottom-sp.png) center/cover no-repeat;
  margin-top: -43px;
}
@media screen and (min-width: 901px) {
  .prizese__bg-bottom {
    height: 640px;
    background: url(../img/prizes_bg-bottom-pc.png) center/cover no-repeat;
    margin-top: 1px;
  }
}

.spots {
  padding-top: 110px;
  margin-top: -110px;
  padding-bottom: 50px;
  position: relative;
}
@media screen and (min-width: 901px) {
  .spots {
    padding-top: 220px;
    margin-top: -220px;
  }
}

.spots::before {
  content: "";
  position: absolute;
  background: url(../img/wave_sp.png);
  width: 100%;
  height: 46px;
  top: 62px;
  left: 0;
  background-position: left center;
  background-repeat: repeat-x;
  background-size: contain;
}
@media screen and (min-width: 901px) {
  .spots::before {
    background: url(../img/img_bg_wave_pc.png);
    height: 120px;
    background-position: left center;
    background-repeat: repeat-x;
    background-size: contain;
    left: 0;
    top: 102px;
  }
}

.spots::after {
  content: "";
  position: absolute;
  background: url(../img/wave_sp.png);
  width: 100%;
  height: 46px;
  bottom: 6px;
  left: 0;
  background-position: left center;
  background-repeat: repeat-x;
  background-size: contain;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
@media screen and (min-width: 901px) {
  .spots::after {
    background: url(../img/img_bg_wave_pc.png);
    background-position: left center;
    background-repeat: repeat-x;
    background-size: contain;
    height: 120px;
    bottom: -66px;
  }
}

.spots__inner {
  background: #67b0c7;
  padding-bottom: 30px;
}
@media screen and (min-width: 901px) {
  .spots__inner {
    padding-bottom: 0px;
  }
}

@media screen and (max-width: 767px) {
  .spots__contents {
    margin-top: -5px;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .spots__contents {
    margin-top: -5px;
  }
}
@media screen and (min-width: 901px) {
  .spots__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    padding-left: max(30px, 50vw - 519px);
  }
}

.spots__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .spots__title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 900px) {
  .spots__title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 901px) {
  .spots__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
  }
}
.spots__title img {
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 901px) {
  .spots__title img {
    width: 56px;
    height: 56px;
  }
}
.spots__title h2 {
  font-family: "Kiwi Maru", sans-serif;
  font-size: 28px;
  color: #fff;
  font-weight: 500;
}
@media screen and (min-width: 901px) {
  .spots__title h2 {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 40px;
    letter-spacing: 0.25em;
  }
}

.spots__cards {
  text-align: center;
  width: 100%;
}

.spots__card {
  width: 100%;
}

.spots__card-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 240px;
  width: 100%;
  height: 402px;
  background: #fff;
  border-radius: 12px;
  margin: 0;
}
@media screen and (min-width: 901px) {
  .spots__card-contents {
    max-width: 344px;
    height: 542px;
    border-radius: 24px;
  }
}

.spots__card-img_pc {
  border-top-right-radius: 24px;
  border-top-left-radius: 24px;
}

.spots__card-img_sp {
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}

.spots__card-body {
  padding: 18px 24px 32px;
}
@media screen and (min-width: 901px) {
  .spots__card-body {
    padding: 24px 32px 40px;
  }
}

.spots__card-body-title {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 901px) {
  .spots__card-body-title {
    font-size: 20px;
  }
}

.spots__card-body-sub {
  padding-top: 16px;
  font-size: 12px;
  text-align: start;
}
@media screen and (min-width: 901px) {
  .spots__card-body-sub {
    font-size: 16px;
    padding-top: 24px;
  }
}

@media screen and (min-width: 901px) {
  .spots__frame {
    max-width: 1084px;
    padding-left: 30px;
    padding-right: 30px;
    margin-right: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 39px;
    gap: 76px;
  }
}

@media (min-width: 901px) and (max-width: 1150px) {
  .spots__frame {
    padding-left: 84px;
  }
}
@media screen and (min-width: 901px) {
  .spots__bg {
    position: relative;
  }
}

@media screen and (min-width: 901px) {
  .spots__bg-pawpads {
    position: absolute;
    z-index: 52;
    top: -67px;
    left: 38px;
  }
}

@media (min-width: 901px) and (max-width: 1250px) {
  .spots__bg-pawpads {
    display: none;
  }
}
.spots__logo {
  text-align: center;
}
.spots__logo img {
  width: 255px;
}
@media screen and (min-width: 901px) {
  .spots__logo img {
    width: 495px;
  }
}

@media (min-width: 901px) and (max-width: 1150px) {
  .spots__logo img {
    width: 260px;
  }
}
@media screen and (min-width: 901px) {
  .spots__frame-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: 34px;
  }
}

.spots__text {
  font-size: 11.4px;
  color: #fff;
  padding-top: 16px;
  text-align: center;
}
@media screen and (min-width: 901px) {
  .spots__text {
    font-size: 16px;
    padding-top: 0;
    text-align: right;
  }
}

.spots__button {
  margin-top: 31px;
  text-align: center;
}
.spots__button a {
  background: #fff;
}
@media screen and (min-width: 901px) {
  .spots__button {
    height: 56px;
    margin-top: 0;
    text-align: right;
  }
  .spots__button a {
    font-size: 20px;
    padding: 10px 40px 12px;
  }
}

.spots__swiper {
  padding-top: 18px;
}
@media screen and (min-width: 901px) {
  .spots__swiper {
    padding-top: 0;
    padding-bottom: 30px;
    -webkit-transform: translate3d(0px, 0, 0) !important;
            transform: translate3d(0px, 0, 0) !important;
  }
}

.swiper-slide {
  width: 240px !important;
}
@media screen and (min-width: 901px) {
  .swiper-slide {
    width: 344px !important;
  }
}

@media screen and (min-width: 901px) {
  .spots__arrows {
    margin-right: auto;
    margin-left: auto;
    max-width: 964px;
    margin-top: -65px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (min-width: 901px) {
  .spots__swiper-arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

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

@media screen and (min-width: 901px) {
  .swiper-button-prev {
    background: url(../img/swiper-button-prev.png) no-repeat center center/contain;
    width: 80px;
    height: 80px;
    position: static;
  }
}

@media screen and (min-width: 901px) {
  .swiper-button-next {
    background: url(../img/swiper-button-next.png) no-repeat center center/contain;
    width: 80px;
    height: 80px;
    position: static;
  }
}

.swiper-scrollbar {
  display: none;
}

.swiper-pagination {
  display: none;
}

.qa {
  padding-top: 93px;
  margin-top: -60px;
  padding-bottom: 30px;
}
@media screen and (min-width: 901px) {
  .qa {
    padding-top: 248px;
    padding-bottom: 120px;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .qa__inner {
    min-width: 500px;
  }
}

.qa__heading {
  text-align: center;
}

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

.qa__box {
  border-radius: 12px;
  border: 2px solid #4a3636;
  background-color: #fff;
}

.is-open .qa-box__head-toggle::before {
  display: none;
}

.qa-box__head {
  padding: 10px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) and (max-width: 900px) {
  .qa-box__head {
    width: 100%;
  }
}
@media screen and (min-width: 901px) {
  .qa-box__head {
    padding: 19px;
    width: 100%;
    gap: 18px;
  }
}

.qa-box__head-icon {
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  color: #9ed0e0;
}
@media screen and (min-width: 901px) {
  .qa-box__head-icon {
    font-size: 32px;
  }
}

.qa-box__head-text {
  font-size: 14px;
  font-weight: 700;
  text-align: justify;
}
@media (min-width: 768px) and (max-width: 900px) {
  .qa-box__head-text {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media screen and (min-width: 901px) {
  .qa-box__head-text {
    font-size: 20px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.qa-box__head-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #9ed0e0;
  position: relative;
}
@media screen and (min-width: 901px) {
  .qa-box__head-toggle {
    width: 48px;
    height: 48px;
  }
}
.qa-box__head-toggle::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 10px;
  height: 2px;
  border-radius: 50px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}
@media screen and (min-width: 901px) {
  .qa-box__head-toggle::before {
    width: 19px;
    height: 3px;
  }
}
.qa-box__head-toggle::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 10px;
  height: 2px;
  border-radius: 50px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 901px) {
  .qa-box__head-toggle::after {
    width: 19px;
    height: 3px;
  }
}

.qa-box__body {
  padding: 18px 14px 14px;
  background: #f5f5f5;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  display: none;
}
@media screen and (min-width: 901px) {
  .qa-box__body {
    padding: 18px;
  }
}

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

.qa-box__a-icon {
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  color: #9ed0e0;
}
@media screen and (min-width: 901px) {
  .qa-box__a-icon {
    font-size: 32px;
  }
}

.qa-box__a-text {
  font-size: 14px;
}
.qa-box__a-text-tag {
  text-decoration-line: underline;
}
@media screen and (min-width: 901px) {
  .qa-box__a-text {
    font-size: 16px;
  }
}

.entry {
  padding-top: 65px;
  margin-top: -65px;
  padding-bottom: 32px;
}
@media screen and (min-width: 901px) {
  .entry {
    padding-top: 100px;
    margin-top: -100px;
    padding-bottom: 120px;
  }
}

.entry__inner {
  background: rgba(255, 255, 255, 0.5);
  border: solid 8px #fff;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media (min-width: 768px) and (max-width: 900px) {
  .entry__inner {
    max-width: 500px;
  }
}
@media screen and (min-width: 901px) {
  .entry__inner {
    max-width: 1024px;
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 34px;
    padding-bottom: 30px;
  }
}

.entry__heading {
  text-align: center;
}

.entry__boxes {
  max-width: 288px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) and (max-width: 900px) {
  .entry__boxes {
    max-width: 453px;
  }
}
@media screen and (min-width: 901px) {
  .entry__boxes {
    max-width: 912px;
    margin-top: 41px;
  }
}

.entry__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding-bottom: 14.5px;
  border-bottom: solid 1px #ccc;
}
.entry__box:nth-child(5) {
  border-bottom: none;
}
@media screen and (min-width: 901px) {
  .entry__box {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    padding-bottom: 12px;
    gap: 0;
  }
}

.entry__box-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 901px) {
  .entry__box-heading {
    width: 224px;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    gap: 10px;
  }
}

.entry__box-heading-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #9ed0e0;
}
@media screen and (min-width: 901px) {
  .entry__box-heading-icon {
    margin-top: 10px;
  }
}

.entry__box-heading-title {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 901px) {
  .entry__box-heading-title {
    font-size: 16px;
  }
}

.entry__box-body {
  font-size: 12px;
}
@media screen and (min-width: 901px) {
  .entry__box-body {
    font-size: 16px;
  }
}

.entry__box-body-item {
  font-size: 12px;
  padding-left: 1.5em;
  line-height: 19px;
  position: relative;
}
.entry__box-body-item::before {
  position: absolute;
  content: "・";
  top: 0.1em;
  left: 0.2em;
}
@media screen and (min-width: 901px) {
  .entry__box-body-item {
    font-size: 16px;
    line-height: 26px;
  }
}

.entry__bg-bottom {
  height: 99px;
  width: 100%;
  background: url(../img/entry__bg-bottom_sp.png) center/cover no-repeat;
}
@media (min-width: 768px) and (max-width: 900px) {
  .entry__bg-bottom {
    height: 130px;
  }
}
@media screen and (min-width: 901px) {
  .entry__bg-bottom {
    height: 400px;
    background: url(../img/entry__bg-bottom_pc.png) center/cover no-repeat;
  }
}

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

@media (min-width: 768px) and (max-width: 900px) {
  .contact__inner {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

.contact__heading {
  text-align: center;
}

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

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 335px;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
@media (min-width: 768px) and (max-width: 900px) {
  .contact__fields {
    max-width: 500px;
  }
}
@media screen and (min-width: 901px) {
  .contact__fields {
    max-width: 848px;
    margin-right: auto;
    margin-left: auto;
    gap: 22px;
  }
}

.contact__field {
  max-width: 335px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 900px) {
  .contact__field {
    min-width: 500px;
  }
}
@media screen and (min-width: 901px) {
  .contact__field {
    max-width: 848px;
  }
  .contact__field:nth-child(4) {
    margin-top: 14px;
    margin-bottom: 16px;
  }
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (min-width: 901px) {
  .form-field {
    -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: 901px) {
  .form-field_5 {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 901px) {
  .form-field__head {
    max-width: 212px;
    width: 100%;
  }
}

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

.form-field__tag {
  display: inline-block;
  border-radius: 4px;
  background: #ce2073;
  padding: 4px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.form-field__item {
  font-size: 14px;
  width: 100%;
}
@media screen and (min-width: 901px) {
  .form-field__item {
    font-size: 16px;
  }
}

.form-text {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #f5f5f5;
  background: #f5f5f5;
  padding: 16px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-text:focus {
  border: 1px solid #9ed0e0;
  background: #e9f6f8;
  outline: none;
}
.form-text.is-error {
  border-color: #ce2073;
  background: #fff0f7;
}

.form-select {
  width: 100%;
  padding: 16px;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background-image: url(../img/contact__arrow.svg), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat, no-repeat;
  background-position: center right 10px, center center;
}
.form-select:focus {
  border: 1px solid #9ed0e0;
  outline: none;
}
.form-select.is-error {
  border-color: #ce2073;
  background-image: url(../img/contact__arrow.svg), linear-gradient(to left, #ce2073 52px, #fff0f7 52px);
  outline: none;
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

.from-radio__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.from-radio__input:checked + .from-radio__text {
  font-weight: 700;
}
.from-radio__input:checked + .from-radio__text::after {
  opacity: 1;
}
.from-radio__input:focus + .from-radio__text::before {
  border: 1px solid #9ed0e0;
}

.from-radio__text {
  position: relative;
  padding-left: 32px;
  font-size: 14px;
}
@media screen and (min-width: 901px) {
  .from-radio__text {
    font-size: 16px;
  }
}
.from-radio__text::before, .from-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.from-radio__text::before {
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  left: 0;
}
.from-radio__text::after {
  width: 10px;
  height: 10px;
  background: #9ed0e0;
  left: 7px;
  opacity: 0;
}

.form-textarea {
  width: 100%;
  padding: 16px;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 8px;
  font-size: 14px;
  height: 160px;
}
.form-textarea:focus {
  border: 1px solid #9ed0e0;
  background: #e9f6f8;
  outline: none;
}
.form-textarea.is-error {
  border-color: #ce2073;
  background: #fff0f7;
  outline: none;
}
@media screen and (min-width: 901px) {
  .form-textarea {
    font-size: 16px;
  }
}

.contact__privacy {
  margin-left: auto;
  margin-right: auto;
  margin-top: -2px;
}
@media screen and (min-width: 901px) {
  .contact__privacy {
    margin-top: 18px;
  }
}

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

.form-checkbox__text {
  position: relative;
  padding-left: 36px;
  font-size: 14px;
}
@media screen and (min-width: 901px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 4px;
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  left: 0;
}
.form-checkbox__text::after {
  width: 14px;
  height: 14px;
  background: url(../img/contact__check.svg) no-repeat center center/contain;
  left: 5px;
  opacity: 0;
}
.form-checkbox__text a {
  text-decoration: underline;
}

.contact__button {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 901px) {
  .contact__button {
    margin-top: 18px;
  }
}

.contact__submit {
  background: #fff;
  cursor: pointer;
}
@media screen and (min-width: 901px) {
  .contact__submit {
    font-size: 16px;
    line-height: 26px;
    padding: 6px 36px 8px 36px;
  }
}

.footer {
  overflow: hidden;
}

.footer__inner {
  padding-top: 42px;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 900px) {
  .footer__inner {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 901px) {
  .footer__inner {
    padding-top: 120px;
    position: relative;
  }
  .footer__inner::after {
    content: "";
    position: absolute;
    background: url(../img/bg_pawpads.png) center/cover no-repeat;
    width: 100px;
    height: 220px;
    top: 77px;
    right: -135px;
  }
}

.sns__box-head {
  font-size: 20px;
  line-height: 25px;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (min-width: 901px) {
  .sns__box-head {
    font-size: 24px;
  }
}

.sns__box-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 22px;
  margin-bottom: 15px;
}
@media screen and (min-width: 901px) {
  .sns__box-icons {
    margin-bottom: 20px;
    margin-top: 25px;
  }
}

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

.footer__logo {
  max-width: 330px;
}
@media (min-width: 768px) and (max-width: 900px) {
  .footer__logo {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 901px) {
  .footer__logo {
    max-width: 755px;
    margin-top: 42px;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer__address-wrap {
  max-width: 335px;
  overflow: hidden;
  background: #fff;
  border-radius: 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: 18px;
  margin-top: -2px;
}
@media (min-width: 768px) and (max-width: 900px) {
  .footer__address-wrap {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 901px) {
  .footer__address-wrap {
    max-width: 1024px;
    height: 400px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 0;
    margin-top: -2px;
  }
}

@media screen and (min-width: 901px) {
  .address-map {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.address-map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 335/271;
  vertical-align: top;
}
@media (min-width: 768px) and (max-width: 900px) {
  .address-map iframe {
    aspect-ratio: 335/271;
  }
}
@media screen and (min-width: 901px) {
  .address-map iframe {
    height: 400px;
    aspect-ratio: 512/400;
  }
}

@media screen and (min-width: 901px) {
  .address-wrap__body {
    max-width: 512px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 103px 61px;
  }
}

@media screen and (min-width: 901px) {
  .address-wrap__logo {
    text-align: left;
  }
}
.address-wrap__logo img {
  width: 153px;
}
@media screen and (min-width: 901px) {
  .address-wrap__logo img {
    width: 183px;
  }
}

.address-wrap__contents {
  margin: 30px 26px 28px;
  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: 901px) {
  .address-wrap__contents {
    margin: 23px 0 0;
    gap: 12px;
  }
}

.address-wrap__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.address__content-term {
  font-size: 12px;
  font-weight: 700;
  width: 81px;
  padding-left: 17px;
  text-align: start;
  position: relative;
}
@media screen and (min-width: 901px) {
  .address__content-term {
    font-size: 16px;
    width: 120px;
  }
}
.address__content-term::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ed0e0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.address__content-discription {
  font-size: 12px;
}
@media screen and (min-width: 901px) {
  .address__content-discription {
    font-size: 16px;
  }
}

.footer__pagetop {
  margin-top: 25px;
  margin-bottom: 24px;
  text-align: center;
}

@media screen and (min-width: 901px) {
  .pagetop {
    position: fixed;
    right: 40px;
    bottom: 30px;
    z-index: 52;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .pagetop.is-show {
    opacity: 1;
    visibility: visible;
  }
}
.pagetop img {
  width: 76px;
}
@media screen and (min-width: 901px) {
  .pagetop img {
    width: 100px;
  }
}

.footer__bottom {
  background: #000;
  text-align: center;
  background: #67b0c7;
  padding-bottom: 17px;
  margin-top: 62px;
  position: relative;
  vertical-align: top;
}
@media screen and (min-width: 901px) {
  .footer__bottom {
    margin-top: 236px;
  }
}
.footer__bottom::before {
  content: "";
  position: absolute;
  background: url(../img/wave_sp.png);
  width: 100%;
  height: 46px;
  top: -40px;
  left: 0;
  background-position: left center;
  background-repeat: repeat-x;
  background-size: contain;
  overflow: hidden;
}
@media screen and (min-width: 901px) {
  .footer__bottom::before {
    background: url(../img/img_bg_wave_pc.png);
    height: 120px;
    background-position: left center;
    background-repeat: repeat-x;
    background-size: contain;
    top: -118px;
    left: 0;
  }
}

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