@charset "UTF-8";
/*ーーーーーーーーーー
common
ーーーーーーーーーー*/
html {
  scroll-behavior: smooth;
  scroll-padding: 64px;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a3636;
  background: #e9f6f8;
  overflow-x: hidden;
  position: relative;
}

.button__wrap {
  text-align: center;
}

.button {
  display: inline-block;
  font-weight: 700;
  padding: 4px 22px 6px;
  border-radius: 40px;
  border: 2px solid #4a3636;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  color: #4a3636;
}
.button:hover {
  background-color: #ffee56;
}
@media screen and (max-width: 374px) {
  .button {
    font-size: 14px;
    padding: 4px 10px 6px;
  }
}
@media screen and (min-width:768px) {
  .button {
    padding: 8px 38px 10px;
    border-width: 3px;
    font-size: 20px;
  }
}

.content-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:768px) {
  .content-heading {
    gap: 8px;
  }
}

.content-heading__icon {
  width: 37.333px;
}
@media screen and (min-width:768px) {
  .content-heading__icon {
    width: 48px;
  }
}
.content-heading__en {
  font-family: "Courgette", serif;
  line-height: 1.25;
}
@media screen and (min-width:768px) {
  .content-heading__en {
    font-size: 20px;
  }
}

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

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

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

.md-show {
  display: none;
}
@media screen and (min-width:900px) {
  .md-show {
    display: inline;
  }
}

.md-hide {
  display: inline;
}
@media screen and (min-width:900px) {
  .md-hide {
    display: none;
  }
}

.type-line {
  -webkit-text-decoration: underline solid;
          text-decoration: underline solid;
}
.type-line:hover {
  color: #67b0c7;
  cursor: pointer;
}

.type-bold {
  font-weight: 700;
}

.window-rock {
  overflow: hidden;
}
@media screen and (min-width:900px) {
  .window-rock {
    overflow: visible;
  }
}

/*ーーーーーーーーーー
header
ーーーーーーーーーー*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: #fff;
  z-index: 50;
}

.header__inner {
  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;
  height: 100%;
  padding-inline: 20px;
}
@media screen and (min-width:900px) {
  .header__inner {
    padding-inline: 24px;
  }
}

.header__img {
  width: 210px;
  z-index: 50;
}
.header__open-button {
  width: 33px;
  height: 24px;
  position: relative;
  z-index: 50;
}
.header__open-button.is-checked .open-button__bar:nth-child(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px;
  width: 32px;
}
.header__open-button.is-checked .open-button__bar:nth-child(1)::after {
  display: none;
}
.header__open-button.is-checked .open-button__bar:nth-child(2) {
  display: none;
}
.header__open-button.is-checked .open-button__bar:nth-child(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px;
}
@media screen and (min-width:900px) {
  .header__open-button {
    display: none;
  }
}

.open-button__bar {
  position: absolute;
  left: 0;
  content: "";
  background: #4a3636;
  border-radius: 6px;
  z-index: 50;
}
.open-button__bar:nth-child(1) {
  top: -1px;
  width: 25.6px;
  height: 3px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.open-button__bar:nth-child(1)::after {
  position: absolute;
  top: 0;
  right: -6.4px;
  content: "";
  width: 4.8px;
  height: 3px;
  background: #4a3636;
  border-radius: 6px;
}
.open-button__bar:nth-child(2) {
  top: 11px;
  width: 32px;
  height: 3px;
}
.open-button__bar:nth-child(3) {
  top: 23px;
  width: 32px;
  height: 3px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header__nav {
  display: none;
  position: fixed;
  background-color: #fff;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100% - 64px);
  z-index: 40;
  overflow-y: scroll;
}
@media screen and (min-width:900px) {
  .header__nav {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: static;
    height: 36px;
    overflow-y: visible;
  }
}

.header__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 33px;
  margin-top: 74px;
}
@media screen and (min-width:900px) {
  .header__nav__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 12px;
    margin-top: 0;
    margin-right: -12px;
    margin-left: auto;
  }
}

.header__nav__item {
  display: block;
  margin-inline: auto;
}

.header__nav__link {
  font-size: 14px;
  color: #4a3636;
  vertical-align: sub;
  -webkit-transition: color 0.2s linear, -webkit-text-decoration 0.2s linear;
  transition: color 0.2s linear, -webkit-text-decoration 0.2s linear;
  transition: color 0.2s linear, text-decoration 0.2s linear;
  transition: color 0.2s linear, text-decoration 0.2s linear, -webkit-text-decoration 0.2s linear;
}
@media screen and (min-width:900px) {
  .header__nav__link {
    font-size: 12px;
  }
}
.header__nav__link:hover {
  color: #67b0c7;
  -webkit-text-decoration: underline solid;
          text-decoration: underline solid;
}

.header__button__wrap {
  text-align: center;
  margin-bottom: 74px;
}

.header__button {
  display: inline-block;
  margin-inline: auto;
  border-radius: 40px;
  border: 2px solid #4a3636;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  padding: 6px 22px 6px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  margin-top: 41px;
  font-size: 16px;
  font-weight: 700;
  color: #4a3636;
}
.header__button:hover {
  background-color: #ffee56;
}
@media screen and (min-width:900px) {
  .header__button {
    margin-inline: 0;
    margin-left: 14px;
    margin-top: 0;
    font-size: 14px;
    padding: 4px 22px 6px;
  }
}

/*ーーーーーーーーーー
fv
ーーーーーーーーーー*/
.main {
  padding-top: 64px;
}

.fv {
  text-align: center;
  margin-bottom: 156px;
  border-radius: 0px 0px 24px 24px;
  background: url(../img/fv-background-sp.png) center center/cover;
  height: 554px;
}
@media screen and (min-width:900px) {
  .fv {
    background-image: url(../img/pc/fv-background-pc.png);
    height: 740px;
    margin-bottom: 97px;
    border-radius: 0px 0px 40px 40px;
  }
}

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

.fv__content {
  padding-top: 17px;
}
@media screen and (min-width:900px) {
  .fv__content {
    padding-top: 34px;
  }
}

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

.fv__title {
  margin-top: 21px;
}
@media screen and (min-width:900px) {
  .fv__title {
    width: 520px;
    margin-top: 24px;
    margin-inline: auto;
  }
}
.fv__title-img1 {
  display: block;
  width: 100%;
  background-color: #fff;
}
@media screen and (min-width:900px) {
  .fv__title-img1 {
    width: 520px;
    height: 82px;
  }
}

.fv__title-img2 {
  display: block;
  margin: 12px auto 0px;
  width: 71.6417910448%;
  height: 40px;
  background-color: #fff;
}
@media screen and (min-width:900px) {
  .fv__title-img2 {
    margin-top: 16px;
    width: 356px;
    height: 60px;
  }
}

.fv__imgs {
  margin-top: 10px;
  height: 522px;
}
@media screen and (min-width:900px) {
  .fv__imgs {
    margin-top: 0;
    height: 603px;
  }
}

.fv-imgs {
  position: relative;
}

.fv-img__fukidasi {
  width: 142px;
  position: absolute;
  top: 7px;
  left: 0;
}
@media screen and (min-width:900px) {
  .fv-img__fukidasi {
    width: 244px;
    top: 0;
    left: 37px;
  }
}
.fv-img__fukidasi-text {
  position: absolute;
  top: 6px;
  left: 22px;
  text-align: right;
  text-shadow: 0px 0px 2.295px #fff;
  color: #ce2073;
  font-family: "Josefin Sans", serif;
  font-size: 18.361px;
  line-height: 1;
}
@media screen and (min-width:900px) {
  .fv-img__fukidasi-text {
    top: 9px;
    left: 35px;
    text-shadow: 0px 0px 4px #fff;
    font-size: 32px;
  }
}

.fv-img__present {
  width: 110px;
  position: absolute;
  top: 0;
  right: 25px;
}
@media screen and (min-width:900px) {
  .fv-img__present {
    width: 180px;
    top: 17px;
    right: 127px;
  }
}
.fv-img__device {
  width: 200px;
  position: absolute;
  top: 103px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: relative;
}
@media screen and (min-width:900px) {
  .fv-img__device {
    width: 250px;
    top: 33px;
  }
}
.fv-img__device-text-area {
  width: 160px;
  height: 154px;
  border-radius: 12.8px;
  background-color: #fff;
  position: absolute;
  top: 123px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  overflow: hidden;
}
@media screen and (min-width:900px) {
  .fv-img__device-text-area {
    width: 200px;
    height: 194px;
    top: 153px;
  }
}

.fv-img__device-text-title {
  display: block;
  height: 32.8px;
  width: 100%;
  font-size: 12.8px;
  font-weight: 700;
  padding-block: 6.4px;
  color: #fff;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
}
@media screen and (min-width:900px) {
  .fv-img__device-text-title {
    height: 42px;
    font-size: 16px;
    padding-block: 8px;
  }
}

.fv-img__device-text {
  display: block;
  margin-inline: auto;
  width: 48px;
  height: 19px;
  margin-top: 13px;
  font-size: 12px;
  position: relative;
}
@media screen and (min-width:900px) {
  .fv-img__device-text {
    width: 56px;
    height: 22px;
    margin-top: 16px;
    font-size: 14px;
  }
}
.fv-img__device-text::after {
  content: "";
  width: 48px;
  height: 2.4px;
  background-color: #ce2073;
  position: absolute;
  bottom: -3.2px;
  left: 0;
}
@media screen and (min-width:900px) {
  .fv-img__device-text::after {
    width: 56px;
    height: 3px;
    bottom: -4px;
  }
}

.fv-img__device-time {
  display: block;
  margin-top: 6.4px;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width:900px) {
  .fv-img__device-time {
    margin-top: 8px;
    font-size: 16px;
  }
}

.fv-img__button {
  display: inline-block;
  margin-top: 12px;
  border-radius: 40px;
  border: 2px solid #4a3636;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  padding: 2px 22px 2px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  font-size: 14px;
  font-weight: 700;
  color: #4a3636;
}
.fv-img__button:hover {
  background-color: #ffee56;
}
@media screen and (min-width:900px) {
  .fv-img__button {
    margin-top: 16px;
    padding: 4px 22px 6px;
    font-size: 16px;
  }
}

.fv-img__food {
  width: 90.26px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width:900px) {
  .fv-img__food {
    width: 212px;
    bottom: 45px;
    left: 0;
  }
}
.fv-img__cats {
  position: absolute;
  bottom: 0;
  right: 0;
}

.cats-img {
  position: relative;
  width: 107px;
  height: 127px;
}
@media screen and (min-width:900px) {
  .cats-img {
    width: 233px;
    height: 294px;
  }
}

.cat-img1 {
  width: 62px;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width:900px) {
  .cat-img1 {
    width: 170px;
    right: 63px;
  }
}
.cat-img2 {
  width: 98px;
  position: absolute;
  bottom: 0;
  right: 9px;
}
@media screen and (min-width:900px) {
  .cat-img2 {
    width: 233px;
    right: 0;
  }
}
/*ーーーーーーーーーー
about
ーーーーーーーーーー*/
.about {
  padding-top: 32px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width:1400px) {
  .about {
    padding-top: 80px;
  }
}

.about-img__hill {
  width: 138px;
  position: absolute;
  top: 741px;
  left: 0;
  z-index: -10;
}
@media screen and (min-width:900px) {
  .about-img__hill {
    width: 427px;
    top: 401px;
    left: -103px;
  }
}
@media screen and (min-width:1400px) {
  .about-img__hill {
    width: 427px;
    top: 401px;
    left: -103px;
  }
}
.about__imgs {
  position: absolute;
  top: 0;
  width: 375px;
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .about__imgs {
    width: 768px;
  }
}
@media screen and (min-width:1400px) {
  .about__imgs {
    width: 848px;
  }
}

.about-imgs {
  position: relative;
}

.about-img__border-box {
  display: none;
  position: absolute;
}
@media screen and (min-width:900px) {
  .about-img__border-box {
    display: block;
    width: 250px;
    height: 250px;
    top: -20px;
    left: -320px;
  }
}
@media screen and (min-width:1400px) {
  .about-img__border-box {
    display: block;
    width: 250px;
    height: 250px;
    top: -20px;
    left: -353px;
  }
}

.about-img__photo-left {
  width: 200px;
  position: absolute;
  top: 395px;
  left: -140px;
}
@media screen and (min-width:900px) {
  .about-img__photo-left {
    width: 480px;
    top: 74px;
    left: -320px;
  }
}
@media screen and (min-width:1400px) {
  .about-img__photo-left {
    width: 480px;
    top: 74px;
    left: -670px;
  }
}
.about-img__pad {
  width: 54px;
  position: absolute;
  top: -10px;
  right: 0;
}
@media screen and (min-width:900px) {
  .about-img__pad {
    width: 100px;
    right: -140px;
  }
}
@media screen and (min-width:1400px) {
  .about-img__pad {
    width: 100px;
    top: -80px;
    right: -166px;
  }
}
.about-img__photo-right {
  width: 200px;
  position: absolute;
  top: 273px;
  right: -140px;
}
@media screen and (min-width:900px) {
  .about-img__photo-right {
    width: 480px;
    top: 73px;
    right: -320px;
  }
}
@media screen and (min-width:1400px) {
  .about-img__photo-right {
    width: 480px;
    top: 73px;
    right: -616px;
  }
}
.about-img__wave-top {
  display: none;
}
@media screen and (min-width:900px) {
  .about-img__wave-top {
    display: block;
    width: 807px;
    height: 12px;
    position: absolute;
    top: 607px;
    right: -898px;
  }
}

.about-img__wave-bottom {
  display: none;
}
@media screen and (min-width:900px) {
  .about-img__wave-bottom {
    display: block;
    width: 807px;
    height: 12px;
    position: absolute;
    top: 640px;
    right: -831px;
  }
}

.about-img__goods1 {
  width: 48px;
  position: absolute;
  top: 720px;
  right: 21px;
}
@media screen and (min-width:900px) {
  .about-img__goods1 {
    width: 101px;
    top: 601px;
    right: -182px;
  }
}
.about-img__goods2 {
  width: 133px;
  position: absolute;
  top: 762px;
  right: 57px;
}
@media screen and (min-width:900px) {
  .about-img__goods2 {
    width: 308px;
    top: 757px;
    right: -258px;
  }
}
.about__container {
  position: relative;
}

.about__content {
  max-width: 335px;
  border-radius: 24px;
  background: #fff;
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .about__content {
    max-width: 600px;
  }
}
@media screen and (min-width:1200px) {
  .about__content {
    max-width: 848px;
    border-radius: 40px;
  }
}

.about-content {
  position: relative;
}
.about-content::after {
  content: "";
  background: url(../img/about-arrow.png) no-repeat center center/cover;
  width: 100px;
  height: 36px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width:900px) {
  .about-content::after {
    width: 140px;
    height: 50px;
  }
}

.about-content__inner {
  max-width: 289px;
  padding-block: 40px;
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .about-content__inner {
    max-width: 848px;
    padding-inline: 114px;
  }
}

.about-content__imgs {
  position: relative;
}

.about-content__img-left {
  width: 88px;
  position: absolute;
  top: -9px;
  left: -10px;
}
@media screen and (min-width:1200px) {
  .about-content__img-left {
    width: 147px;
    top: -2px;
    left: -29px;
  }
}
.about-content__img-right {
  width: 88px;
  position: absolute;
  top: -10px;
  right: -23px;
}
@media screen and (min-width:1200px) {
  .about-content__img-right {
    width: 147px;
    top: 5px;
    right: -29px;
  }
}
.about-content__text-area {
  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: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (min-width:900px) {
  .about-content__text-area {
    margin-top: 31px;
    gap: 33px;
  }
}

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

.about-content__title-pc {
  display: none;
}
@media screen and (min-width:900px) {
  .about-content__title-pc {
    display: inline;
    font-weight: 700;
  }
}

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

.about-content__text + .about-content__text {
  margin-top: 18px;
}
@media screen and (min-width:900px) {
  .about-content__text + .about-content__text {
    margin-top: 27px;
  }
}

.about-content__present {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  padding-block: 8px 6px;
  border-bottom: 2px dashed #9ed0e0;
}
@media screen and (min-width:900px) {
  .about-content__present {
    font-size: 20px;
    padding-block: 12px 10px;
  }
}

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

.about__scroll {
  margin-top: 137px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:900px) {
  .about__scroll {
    margin-top: 167px;
    position: relative;
    padding-top: 91px;
  }
}

.about-scroll__img {
  max-width: 375px;
  padding-inline: 10px;
  margin-inline: auto;
}
@media screen and (min-width:900px) {
  .about-scroll__img {
    max-width: 100%;
    width: 891px;
    position: absolute;
    top: 0;
    z-index: -10;
    padding-inline: 0px;
  }
}
.about-scroll__wrap .about-scroll__items {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.test-swiper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

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

/*ーーーーーーーーーー
step
ーーーーーーーーーー*/
.step {
  margin-top: 65px;
  text-align: center;
}
@media screen and (min-width:768px) {
  .step {
    margin-top: 120px;
  }
}

.step__bg-imgs {
  position: relative;
  margin-inline: auto;
  width: 335px;
}
@media screen and (min-width:900px) {
  .step__bg-imgs {
    width: 750px;
  }
}
@media screen and (min-width:1400px) {
  .step__bg-imgs {
    width: 1024px;
  }
}

.step__bg-img__map {
  width: 149px;
  position: absolute;
  top: 0;
  left: -20px;
  z-index: -10;
}
@media screen and (min-width:768px) {
  .step__bg-img__map {
    top: -60px;
    left: -100px;
  }
}
@media screen and (min-width:900px) {
  .step__bg-img__map {
    width: 460px;
    top: -60px;
    left: -208px;
  }
}
.step__bg-img__cat1 {
  width: 105px;
  position: absolute;
  top: 0;
  right: 4px;
}
@media screen and (min-width:768px) {
  .step__bg-img__cat1 {
    right: -5px;
  }
}
@media screen and (min-width:900px) {
  .step__bg-img__cat1 {
    width: 238px;
    top: -26px;
    right: -13px;
  }
}
.step__bg-img__cat2 {
  width: 94px;
  position: absolute;
  top: 5px;
  right: -51px;
}
@media screen and (min-width:768px) {
  .step__bg-img__cat2 {
    right: -60px;
  }
}
@media screen and (min-width:900px) {
  .step__bg-img__cat2 {
    width: 214px;
    top: -16px;
    right: -139px;
  }
}
.step__bg-img__paw1 {
  width: 55px;
  position: absolute;
  top: 74px;
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width:768px) {
  .step__bg-img__paw1 {
    top: 100px;
    right: -50px;
  }
}
@media screen and (min-width:900px) {
  .step__bg-img__paw1 {
    width: 100px;
    top: 149px;
    right: -208px;
  }
}
.step__bg-img__paw2 {
  width: 55px;
  position: absolute;
  top: 550px;
  left: 0;
}
@media screen and (min-width:768px) {
  .step__bg-img__paw2 {
    left: -50px;
  }
}
@media screen and (min-width:900px) {
  .step__bg-img__paw2 {
    width: 100px;
    top: 580px;
    left: -208px;
  }
}
.step__bg-img__paw3 {
  width: 55px;
  position: absolute;
  top: 880px;
  right: 0;
}
@media screen and (min-width:768px) {
  .step__bg-img__paw3 {
    right: -50px;
  }
}
@media screen and (min-width:900px) {
  .step__bg-img__paw3 {
    display: none;
  }
}
.step-inner {
  padding-inline: 20px;
}

.step__content-items {
  margin-top: 32px;
}
@media screen and (min-width:900px) {
  .step__content-items {
    margin-block: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width:1400px) {
  .step__content-items {
    gap: 32px;
  }
}

.step__content-item {
  position: relative;
}
.step__content-item + .step__content-item {
  margin-top: 33px;
}
@media screen and (min-width:768px) {
  .step__content-item:nth-child(1) {
    margin-top: 1px;
  }
}
@media screen and (min-width:900px) {
  .step__content-item:nth-child(2) {
    margin-block: 69px 8px;
    position: relative;
  }
  .step__content-item:nth-child(2)::after {
    content: "";
    background: url(../img/pc/step-union-wave-pc.png) no-repeat center center/contain;
    width: 113px;
    height: 24px;
    position: absolute;
    top: 86px;
    left: -67px;
    z-index: 20;
  }
}
@media screen and (min-width:900px) and (min-width:1400px) {
  .step__content-item:nth-child(2)::after {
    top: 136px;
    left: -97px;
  }
}
.step__content-item:nth-child(2) .step-item-heading {
  background-image: url(../img/step-union-cat2.png);
}
@media screen and (min-width:768px) {
  .step__content-item:nth-child(2) .step-item-heading {
    background-image: url(../img/pc/step-union-cat2-pc.png);
  }
}
@media screen and (min-width:900px) {
  .step__content-item:nth-child(3) {
    margin-top: 1px;
    position: relative;
  }
  .step__content-item:nth-child(3)::after {
    content: "";
    background: url(../img/pc/step-union-wave-pc.png) no-repeat center center/contain;
    width: 113px;
    height: 24px;
    position: absolute;
    top: 154px;
    left: -58px;
    z-index: 20;
  }
}
@media screen and (min-width:900px) and (min-width:1400px) {
  .step__content-item:nth-child(3)::after {
    top: 204px;
    left: -88px;
  }
}
.step__content-item:nth-child(3) .step-item-heading {
  background-image: url(../img/step-union-cat3.png);
}
@media screen and (min-width:768px) {
  .step__content-item:nth-child(3) .step-item-heading {
    background-image: url(../img/pc/step-union-cat3-pc.png);
  }
}
.step__content-item:nth-child(2)::before, .step__content-item:nth-child(3)::before {
  content: "";
  background: url(../img/step-union-wave.png) no-repeat center center/cover;
  width: 8px;
  height: 34px;
  position: absolute;
  top: -34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 20;
}
@media screen and (min-width:900px) {
  .step__content-item:nth-child(2)::before, .step__content-item:nth-child(3)::before {
    display: none;
  }
}

.step-item {
  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;
  padding-bottom: 16px;
}
@media screen and (min-width:900px) {
  .step-item {
    padding-bottom: 0;
  }
}

.step-item-heading {
  width: 196px;
  height: 210px;
  background: url(../img/step-union-cat1.png) no-repeat center center/cover;
  background-size: 100%;
}
@media screen and (min-width:768px) {
  .step-item-heading {
    margin-inline: 20px;
  }
}
@media screen and (min-width:1200px) {
  .step-item-heading {
    background: url(../img/pc/step-union-cat1-pc.png) no-repeat center center/cover;
    width: 280px;
    height: 300px;
    margin-inline: 20px;
  }
}
.step-item-heading__text-box {
  margin-inline: auto;
  margin-top: 31px;
}
@media screen and (min-width:1200px) {
  .step-item-heading__text-box {
    margin-top: 44px;
  }
}

.step-item-heading__step {
  color: #fff;
  font-family: "Josefin Sans", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width:1200px) {
  .step-item-heading__step {
    font-size: 20px;
    letter-spacing: 1.6px;
  }
}

.step-item-heading__number {
  color: #fff;
  font-family: "Josefin Sans", serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 600;
  line-height: 0.9;
  margin-top: 3px;
}
@media screen and (min-width:1200px) {
  .step-item-heading__number {
    font-size: 56px;
  }
}

.step-item-heading__img {
  margin-inline: auto;
  width: 112px;
}
@media screen and (min-width:1200px) {
  .step-item-heading__img {
    width: 160px;
  }
}
.step-item__title {
  font-weight: 700;
  margin-top: 16px;
}
@media screen and (min-width:900px) {
  .step-item__title {
    font-size: 18px;
  }
}
@media screen and (min-width:1400px) {
  .step-item__title {
    font-size: 20px;
    margin-top: 24px;
  }
}

.step-item__text {
  font-size: 12px;
  margin-top: 16px;
}
@media screen and (min-width:1200px) {
  .step-item__text {
    font-size: 16px;
  }
}

.step-item__instagram {
  margin-top: 16px;
}

.step-item__instagram-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  width: 226px;
  background-color: #fff;
  padding: 7px 11px 7px 39px;
  position: relative;
  border: 1px solid transparent;
  -webkit-transition: border 0.2s linear;
  transition: border 0.2s linear;
}
.step-item__instagram-link:hover {
  border-color: #9ed0e0;
}
.step-item__instagram-link::after {
  content: "";
  background: url(../img/step-sns-icon.png) no-repeat center center/cover;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width:900px) {
  .step-item__instagram-link::after {
    width: 24px;
    height: 24px;
  }
}
@media screen and (min-width:1400px) {
  .step-item__instagram-link {
    width: 254px;
    font-size: 16px;
    padding: 7px 11px 7px 43px;
  }
}

.step__button__wrap {
  padding-bottom: 20px;
}
@media screen and (min-width:900px) {
  .step__button__wrap {
    padding-bottom: 1px;
  }
}

/*ーーーーーーーーーー
prizes
ーーーーーーーーーー*/
.prizes {
  text-align: center;
  padding-top: 83px;
  margin-top: 17px;
}
@media screen and (min-width:768px) {
  .prizes {
    padding-top: 150px;
    margin-top: 125px;
  }
}

.prizes__inner {
  max-width: 375px;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width:768px) {
  .prizes__inner {
    max-width: 1104px;
    padding-inline: 40px;
  }
}
.prizes__inner::after {
  content: "";
  background: url(../img/prizes-deco.png) no-repeat center center/cover;
  width: 237px;
  height: 83px;
  position: absolute;
  top: -83px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width:768px) {
  .prizes__inner::after {
    width: 366px;
    height: 149px;
    top: -149px;
    background-image: url(../img/pc/prizes-deco-pc.png);
  }
}

.prizes__content {
  max-width: 375px;
  border-radius: 24px;
  background-color: #fff;
  position: relative;
}
@media screen and (min-width:768px) {
  .prizes__content {
    max-width: 1024px;
  }
}

.prizes__content__triangles {
  display: none;
}
@media screen and (min-width:900px) {
  .prizes__content__triangles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 394px;
    max-width: 1024px;
    position: absolute;
    top: -121px;
  }
}

.prizes__content__triangle-left img {
  max-width: 100%;
}

.prizes__content__triangle-right img {
  max-width: 100%;
}

.prizes__content__inner {
  padding-inline: 20px;
}
@media screen and (min-width:768px) {
  .prizes__content__inner {
    padding-inline: 56px;
  }
}

.prizes__content__heading {
  position: absolute;
  top: -61px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 5;
}
@media screen and (min-width:768px) {
  .prizes__content__heading {
    top: -121px;
  }
}

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

.prizes__content__items {
  margin-block: 24px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
@media screen and (min-width:768px) {
  .prizes__content__items {
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-block: 33px 0px;
  }
}

.prizes__item-wrap {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 7.5px);
          flex: 0 0 calc(50% - 7.5px);
  padding-top: 24px;
}
.prizes__item-wrap:hover .prizes__item-img img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.prizes__item-wrap:hover .prizes__item-buttonarea {
  border-color: #9ed0e0;
}
.prizes__item-wrap:hover .prizes-item__zoom {
  background-color: #9ed0e0;
}
@media screen and (min-width:768px) {
  .prizes__item-wrap {
    margin-bottom: 40px;
    border-radius: 16px;
    padding-top: 0;
  }
  .prizes__item-wrap.is-big {
    border-radius: 24px;
  }
  .prizes__item-wrap:nth-of-type(1) {
    margin-top: 50px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 16px);
            flex: 0 0 calc(50% - 16px);
  }
  .prizes__item-wrap:nth-of-type(2) {
    margin-top: 50px;
    margin-left: 32px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 16px);
            flex: 0 0 calc(50% - 16px);
  }
  .prizes__item-wrap:nth-of-type(3) {
    margin-top: 40px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.33% - 24px);
            flex: 0 0 calc(33.33% - 24px);
  }
  .prizes__item-wrap:nth-of-type(4) {
    margin-top: 40px;
    margin-left: 36px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.33% - 24px);
            flex: 0 0 calc(33.33% - 24px);
  }
  .prizes__item-wrap:nth-of-type(5) {
    margin-top: 40px;
    margin-left: 36px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.33% - 24px);
            flex: 0 0 calc(33.33% - 24px);
  }
}

.prizes__item-head {
  width: 47px;
  height: 47px;
  background: url(../img/prizes-item-head.png) no-repeat center center/cover;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0px;
  z-index: 5;
}
@media screen and (min-width:768px) {
  .prizes__item-head {
    width: 80px;
    height: 80px;
    top: -40px;
  }
}
@media screen and (min-width:768px) {
  .prizes__item-head.is-big {
    width: 100px;
    height: 100px;
    top: -50px;
  }
}

.prizes__item-head-text {
  font-size: 7.68px;
  font-weight: 700;
  color: #fff;
  margin-inline: auto;
  margin-top: 6px;
}
@media screen and (min-width:768px) {
  .prizes__item-head-text {
    font-size: 12.8px;
    margin-top: 10px;
  }
  .prizes__item-head-text.is-big {
    font-size: 16px;
    margin-top: 12px;
  }
}

.prizes__item-head-number {
  font-size: 23.04px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  font-family: "Josefin Sans", serif;
  margin-inline: auto;
  margin-top: 2px;
}
@media screen and (min-width:768px) {
  .prizes__item-head-number {
    font-size: 38.4px;
  }
  .prizes__item-head-number.is-big {
    font-size: 48px;
  }
}

.prizes__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width:768px) {
  .prizes__item {
    border-radius: 16px;
  }
  .prizes__item.is-big {
    border-radius: 24px;
  }
}

.prizes__item-img {
  overflow: hidden;
}
.prizes__item-img img {
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.prizes__item-textarea {
  background: #f5f5f5;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:768px) {
  .prizes__item-textarea {
    height: 80px;
  }
  .prizes__item-textarea.is-big {
    height: 120px;
  }
}

.prizes-item-title {
  font-size: 12px;
  font-weight: 700;
  margin-block: auto;
}
@media screen and (min-width:768px) {
  .prizes-item-title {
    width: 100%;
    border-radius: 0 0 16px 16px;
  }
  .prizes-item-title.is-big {
    font-size: 16px;
    border-radius: 0 0 24px 24px;
  }
}
@media screen and (min-width:900px) {
  .prizes-item-title {
    font-size: 16px;
  }
  .prizes-item-title.is-big {
    font-size: 20px;
  }
}

.prizes-item__zoom {
  width: 36px;
  height: 36px;
  position: absolute;
  background-color: #67b0c7;
  -webkit-clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
  border-radius: 0 0 8px 0;
  position: relative;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
.prizes-item__zoom img {
  width: 11.52px;
  height: 11.52px;
  position: absolute;
  bottom: 6.12px;
  right: 5.22px;
}
@media screen and (min-width:768px) {
  .prizes-item__zoom {
    width: 64px;
    height: 64px;
    border-radius: 0 0 16px 0;
  }
  .prizes-item__zoom img {
    width: 20.48px;
    height: 20.48px;
    bottom: 8.96px;
    right: 8px;
  }
  .prizes-item__zoom.is-big {
    width: 100px;
    height: 100px;
    border-radius: 0 0 24px 0;
  }
  .prizes-item__zoom.is-big img {
    width: 32px;
    height: 32px;
    bottom: 14px;
    right: 12.5px;
  }
}

.prizes__item-buttonarea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 4px solid transparent;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media screen and (min-width:768px) {
  .prizes__item-buttonarea {
    border-radius: 16px;
  }
  .prizes__item-buttonarea.is-big {
    border-radius: 24px;
  }
}
.prizes__item-buttonarea:hover {
  border: 4px solid #9ed0e0;
}

.prizes__button__wrap {
  padding-bottom: 35px;
}
@media screen and (min-width:768px) {
  .prizes__button__wrap {
    padding-bottom: 53px;
  }
}

.prizes__bg {
  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;
  margin-top: -44px;
  overflow: hidden;
}
@media screen and (min-width:768px) {
  .prizes__bg {
    margin-top: 0;
  }
}
.prizes__bg img {
  width: 100%;
  min-width: 580px;
}

/*ーーーーーーーーーー
modal
ーーーーーーーーーー*/
.modal-wrapper {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
}

.modal-layer {
  background-color: #000;
  opacity: 0.7;
  height: 100%;
  width: 100%;
}

.modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.modal-content {
  width: 336px;
  height: 480px;
  background-color: #fff;
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 374px) {
  .modal-content {
    width: 310px;
    height: 470px;
  }
}
@media screen and (min-width:768px) {
  .modal-content {
    width: 480px;
    height: 650px;
  }
}

.modal-content__img {
  height: 210px;
  overflow: hidden;
}
@media screen and (min-width:768px) {
  .modal-content__img {
    height: 300px;
  }
}
.modal-content__textarea {
  padding-inline: 20px;
  margin-top: 39px;
}
@media screen and (max-width: 374px) {
  .modal-content__textarea {
    padding-inline: 10px;
    margin-top: 25px;
  }
}
@media screen and (min-width:768px) {
  .modal-content__textarea {
    padding-inline: 40px;
    margin-top: 32px;
  }
}

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

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

.modal__button {
  font-size: 16px;
  margin-top: 16px;
}
@media screen and (min-width:768px) {
  .modal__button {
    margin-top: 24px;
  }
}

/*ーーーーーーーーーー
spots
ーーーーーーーーーー*/
.spots {
  background-color: #67b0c7;
  position: relative;
  padding-bottom: 20px;
}
@media screen and (min-width:1200px) {
  .spots {
    padding-bottom: 3px;
  }
}
.spots::before {
  content: "";
  background: url(../img/spots-top-wave.png) center bottom/contain repeat-x;
  position: absolute;
  top: -46px;
  left: 0;
  width: 100%;
  height: 46px;
}
@media screen and (min-width:768px) {
  .spots::before {
    background-image: url(../img/pc/spots-top-wave-pc.png);
    top: -119px;
    height: 120px;
  }
}
.spots::after {
  content: "";
  background: url(../img/spots-bottom-wave.png) center top/contain repeat-x;
  position: absolute;
  bottom: -46px;
  left: 0;
  width: 100%;
  height: 46px;
}
@media screen and (min-width:768px) {
  .spots::after {
    background-image: url(../img/pc/spots-bottom-wave-pc.png);
    height: 120px;
    bottom: -119px;
  }
}

.spots__background-img {
  display: none;
}
@media screen and (min-width:1200px) {
  .spots__background-img {
    display: block;
    width: 100px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 720px);
  }
}

@media screen and (min-width:1200px) {
  .spots__main-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding-left: max(30px, 50% - 512px);
  }
}

.spots__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:1200px) {
  .spots__head {
    margin-right: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.spots__head-icon {
  width: 28px;
}
@media screen and (min-width:768px) {
  .spots__head-icon {
    width: 56px;
  }
}
.spots__head-text {
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 125%;
  color: #fff;
}
@media screen and (min-width:768px) {
  .spots__head-text {
    font-size: 40px;
    text-align: center;
  }
}

.spots__items {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (min-width:1200px) {
  .spots__items {
    margin-top: 0;
    margin-left: 0;
    position: relative;
  }
}

.spots__item {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

.swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.spots__item-img {
  width: 240px;
}
@media screen and (min-width:768px) {
  .spots__item-img {
    width: 344px;
    height: 240px;
    overflow: hidden;
  }
}
.spots__item-img img {
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width:768px) {
  .spots__item-img img {
    border-radius: 24px 24px 0 0;
  }
}

.spots__item-textarea {
  padding: 16px 24px 0 24px;
  height: 222.16px;
  background-color: #fff;
  border-radius: 0 0 12px 12px;
}
@media screen and (min-width:768px) {
  .spots__item-textarea {
    height: 302px;
    border-radius: 0 0 24px 24px;
    padding: 24px 32px 0 32px;
  }
}

.spots__item-title {
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width:768px) {
  .spots__item-title {
    font-size: 20px;
  }
}

.spots__item-text {
  margin-top: 16px;
  font-size: 12px;
}
@media screen and (min-width:768px) {
  .spots__item-text {
    margin-top: 24px;
    font-size: 16px;
  }
}

@media screen and (min-width:1200px) {
  .spots__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 81px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 64px;
  }
}

.spots__main-img {
  width: 255px;
  margin: 0 auto;
}
@media screen and (min-width:1200px) {
  .spots__main-img {
    width: 495px;
    margin: 0;
  }
}
.spots__text {
  color: #fff;
  font-size: 11.444px;
  text-align: center;
  margin-top: 16px;
}
@media screen and (max-width: 374px) {
  .spots__text {
    font-size: 11px;
  }
}
@media screen and (min-width:1200px) {
  .spots__text {
    font-size: 16px;
    margin-top: 0;
  }
}

.swiper-button-next,
.swiper-button-prev {
  display: none;
}
@media screen and (min-width:1200px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: auto;
    bottom: -24px;
    width: 80px;
    height: 80px;
    color: transparent;
    background-color: #ffee56;
    border-radius: 50%;
  }
}

@media screen and (min-width:768px) {
  .swiper-button-next {
    right: auto;
    left: calc(50% + 392px);
  }
  .swiper-button-next::after {
    content: "";
    background: url(../img/pc/spots-arrow-next-pc.png) center center/contain no-repeat;
    width: 57px;
    height: 57px;
  }
}

@media screen and (min-width:768px) {
  .swiper-button-prev {
    right: calc(50% + 392px);
    left: auto;
  }
  .swiper-button-prev::after {
    content: "";
    background: url(../img/pc/spots-arrow-prev-pc.png) center center/contain no-repeat;
    width: 57px;
    height: 57px;
  }
}

.spots__button {
  margin-top: 24px;
}
@media screen and (min-width:1200px) {
  .spots__button {
    margin-left: 10px;
  }
}

/*ーーーーーーーーーー
faq
ーーーーーーーーーー*/
.faq {
  margin-top: 86px;
}
@media screen and (min-width:768px) {
  .faq {
    margin-top: 241px;
  }
}

.faq__inner {
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .faq__inner {
    max-width: 1064px;
  }
}

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

.faq__item {
  border: 2px solid #4a3636;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.faq__item.is-open .faq__item-q__button::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media screen and (min-width:768px) {
  .faq__item {
    border-radius: 16px;
  }
}
.faq__item + .faq__item {
  margin-top: 12px;
}
@media screen and (min-width:768px) {
  .faq__item + .faq__item {
    margin-top: 24px;
  }
}

.faq__item-q {
  padding-inline: 14px;
  padding-block: 10px;
  background-color: #fff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-align: left;
  overflow: hidden;
}
@media screen and (min-width:768px) {
  .faq__item-q {
    padding: 20px 22px;
    gap: 16px;
  }
}

.faq__item-q__icon {
  color: #9ed0e0;
  font-family: "Josefin Sans", serif;
  font-size: 24px;
  line-height: 1.25;
}
@media screen and (min-width:768px) {
  .faq__item-q__icon {
    font-size: 32px;
    margin-right: 0;
  }
}

.faq__item-q__title {
  color: #4a3636;
  font-size: 14px;
  font-weight: 700;
  margin-right: auto;
}
@media screen and (min-width:768px) {
  .faq__item-q__title {
    font-size: 20px;
    margin-right: auto;
  }
}

.faq__item-q__button {
  display: block;
  min-width: 26.182px;
  height: 26.182px;
  background-color: #9ed0e0;
  border-radius: 50%;
  position: relative;
}
@media screen and (min-width:768px) {
  .faq__item-q__button {
    width: 48px;
    height: 48px;
  }
}
.faq__item-q__button::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 10.182px;
  height: 1.455px;
  border-radius: 6px;
  top: 12px;
  left: 8px;
}
@media screen and (min-width:768px) {
  .faq__item-q__button::before {
    width: 18.667px;
    height: 2.667px;
    top: 22px;
    left: 15px;
  }
}
.faq__item-q__button::after {
  position: absolute;
  content: "";
  background: #fff;
  width: 10.182px;
  height: 1.455px;
  border-radius: 6px;
  top: 12px;
  left: 8px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media screen and (min-width:768px) {
  .faq__item-q__button::after {
    width: 18.667px;
    height: 2.667px;
    top: 22px;
    left: 15px;
  }
}

.faq__item-a {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  padding-inline: 14px;
  padding-block: 17px 13px;
  background-color: #f5f5f5;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (min-width:768px) {
  .faq__item-a {
    padding-inline: 22px;
    padding-block: 24px 23px;
  }
}

.faq__item-a__icon {
  color: #9ed0e0;
  font-family: "Josefin Sans", serif;
  font-size: 24px;
  line-height: 1.25;
}
@media screen and (min-width:768px) {
  .faq__item-a__icon {
    font-size: 32px;
  }
}

.faq__item-a__text {
  color: #4a3636;
  font-size: 14px;
}
@media screen and (min-width:768px) {
  .faq__item-a__text {
    font-size: 16px;
  }
}

/*ーーーーーーーーーー
information
ーーーーーーーーーー*/
.information {
  margin-top: 30px;
}
@media screen and (min-width:768px) {
  .information {
    margin-top: 120px;
  }
}

.information__inner {
  padding-inline: 20px;
}
@media screen and (min-width:768px) {
  .information__inner {
    max-width: 1064px;
    margin-inline: auto;
  }
}

.information__container {
  border: 8px solid #fff;
  padding-block: 16px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}
@media screen and (min-width:768px) {
  .information__container {
    padding-block: 32px;
    margin-bottom: 120px;
  }
}

.information__container__inner {
  padding-inline: 15.5px;
}
@media screen and (min-width:768px) {
  .information__container__inner {
    margin-inline: auto;
    max-width: 943px;
  }
}

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

.information__content {
  padding-bottom: 14px;
}
@media screen and (min-width:768px) {
  .information__content {
    padding-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.information__content + .information__content {
  padding-top: 12px;
  border-top: 1px solid #ccc;
}

.information__content-title {
  font-size: 14px;
  font-weight: 700;
  padding-left: 16px;
  position: relative;
}
@media screen and (min-width:768px) {
  .information__content-title {
    font-size: 16px;
    padding-left: 32px;
    width: 240px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.information__content-title::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #67b0c7;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 0;
}
@media screen and (min-width:768px) {
  .information__content-title::before {
    left: 16px;
    top: 9px;
  }
}

.information__content-text {
  margin-top: 8px;
  font-size: 12px;
}
@media screen and (min-width:768px) {
  .information__content-text {
    display: block;
    margin-top: 0;
    max-width: 672px;
    font-size: 16px;
  }
}

.information__content-text-notes {
  padding-left: 18px;
}
@media screen and (min-width:768px) {
  .information__content-text-notes {
    padding-left: 24px;
  }
}

.information__content-text-dot {
  display: inline-block;
  position: relative;
}
.information__content-text-dot + .information__content-text-dot {
  margin-top: -1px;
}
@media screen and (min-width:768px) {
  .information__content-text-dot + .information__content-text-dot {
    margin-top: 1px;
  }
}
.information__content-text-dot::before {
  content: "・";
  position: absolute;
  top: 2px;
  left: -15px;
}
@media screen and (min-width:768px) {
  .information__content-text-dot::before {
    top: 0;
    left: -20px;
  }
}

/*ーーーーーーーーーー
form
ーーーーーーーーーー*/
.form {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 44px;
}
@media screen and (min-width:768px) {
  .form {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.form__inner {
  max-width: 500px;
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .form__inner {
    max-width: 888px;
  }
}

.form__head-text {
  font-size: 12px;
  text-align: center;
  margin-top: 24px;
}
@media screen and (min-width:768px) {
  .form__head-text {
    font-size: 16px;
    margin-top: 32px;
  }
}

.form__container {
  margin-top: 24px;
}
@media screen and (min-width:768px) {
  .form__container {
    margin-top: 39px;
  }
}

.form__field + .form__field {
  margin-top: 23px;
}
@media screen and (min-width:768px) {
  .form__field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.form__field.position-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form__field-head {
  margin-bottom: 9px;
}
.form__field-head.no-label {
  margin-bottom: 6px;
}
@media screen and (min-width:768px) {
  .form__field-head.no-label {
    margin-bottom: 0;
  }
}
@media screen and (min-width:768px) {
  .form__field-head {
    margin-bottom: 0;
    width: 220px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.form__field-head-title {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width:768px) {
  .form__field-head-title {
    font-size: 16px;
  }
}

.form__field-head-label {
  padding: 5px 8px;
  border-radius: 4px;
  background: #ce2073;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-left: 9px;
}
.form__text {
  padding: 15px;
  width: 100%;
  background: #f5f5f5;
  border-radius: 8px;
  border: 1px solid transparent;
  outline: none;
}
.form__text:focus {
  border: 1px solid #9ed0e0;
  background: #e9f6f8;
}
.form__text.is-error {
  background: #fff0f7;
  border-color: #ce2073;
}
.form__text::-webkit-input-placeholder {
  color: #ccc;
  font-size: 14px;
}
.form__text::-moz-placeholder {
  color: #ccc;
  font-size: 14px;
}
.form__text:-ms-input-placeholder {
  color: #ccc;
  font-size: 14px;
}
.form__text::-ms-input-placeholder {
  color: #ccc;
  font-size: 14px;
}
.form__text::placeholder {
  color: #ccc;
  font-size: 14px;
}
@media screen and (min-width:768px) {
  .form__text::-webkit-input-placeholder {
    font-size: 16px;
  }
  .form__text::-moz-placeholder {
    font-size: 16px;
  }
  .form__text:-ms-input-placeholder {
    font-size: 16px;
  }
  .form__text::-ms-input-placeholder {
    font-size: 16px;
  }
  .form__text::placeholder {
    font-size: 16px;
  }
}

.form__select-wrap {
  position: relative;
  height: 100%;
  width: 100%;
}
.form__select-wrap .form__select.is-error {
  border-color: #ce2073;
}
.form__select-wrap .form__select.is-error ~ .form__select-design {
  background: #fff0f7;
}
.form__select-wrap .form__select.is-error ~ .form__select-design::before {
  background: #ce2073;
}

.form__select-design {
  position: relative;
  width: 100%;
  border-radius: 8px;
  background: #f5f5f5;
  height: 56px;
}
.form__select-design::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 100%;
  background: #9ed0e0;
  border-radius: 0px 8px 8px 0px;
  z-index: 5;
}
.form__select-design::after {
  content: "";
  background: url(../img/form-arrow.png) center center/cover no-repeat;
  position: absolute;
  right: 18.66px;
  top: 23.12px;
  height: 8.779px;
  width: 14.899px;
  z-index: 6;
}

.form__select {
  position: absolute;
  top: 0;
  left: 0;
  padding: 15px;
  width: 100%;
  height: 56px;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  overflow: visible;
  font-size: 14px;
  background: none;
  z-index: 10;
  border: 1px solid transparent;
  border-radius: 8px;
  outline: none;
  cursor: pointer;
}
.form__select:focus {
  border: 1px solid #9ed0e0;
}
@media screen and (min-width:768px) {
  .form__select {
    font-size: 16px;
  }
}

@media screen and (min-width:768px) {
  .form__field-radios {
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
  }
}

.form__field-radio + .form__field-radio {
  margin-left: 20px;
}

.form-radio {
  cursor: pointer;
}
.form-radio:hover .form-radio__text::before {
  border: 1px solid #9ed0e0;
}

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

.form-radio__text {
  font-size: 14px;
  position: relative;
  padding-left: 32px;
}
@media screen and (min-width:768px) {
  .form-radio__text {
    font-size: 16px;
  }
}
.form-radio__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f5f5f5;
}
.form-radio__text::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #9ed0e0;
  opacity: 0;
}

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

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

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

.form__checkbox-text {
  font-size: 14px;
  padding-left: 36px;
  position: relative;
}
@media screen and (min-width:768px) {
  .form__checkbox-text {
    font-size: 16px;
  }
}
.form__checkbox-text::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  border: 1px solid transparent;
  top: 0;
  left: 0;
  border-radius: 4px;
  cursor: pointer;
}
.form__checkbox-text::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 9px;
  background: url(../img/form-check-icon.png) center center/contain no-repeat;
  top: 8px;
  left: 5px;
  opacity: 0;
}

.form__button__wrap {
  margin-top: 25px;
}
@media screen and (min-width:768px) {
  .form__button__wrap {
    margin-top: 42px;
  }
}

@media screen and (min-width:768px) {
  .form__button {
    padding: 4px 38px;
    font-size: 16px;
  }
}

/*ーーーーーーーーーー
footer
ーーーーーーーーーー*/
.footer {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .footer {
    margin-top: 120px;
    position: relative;
  }
}

.footer__bg-pad {
  display: none;
}
@media screen and (min-width:1200px) {
  .footer__bg-pad {
    display: block;
    width: 100px;
    position: absolute;
    top: -40px;
    right: 80px;
  }
}
.footer__inner {
  padding-inline: 20px;
  margin-inline: auto;
  max-width: 700px;
}
@media screen and (min-width:1200px) {
  .footer__inner {
    max-width: 1064px;
  }
}

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

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

.footer__head-icon-list {
  width: 32px;
}
@media screen and (min-width:768px) {
  .footer__head-icon-list {
    width: 40px;
  }
}

.footer__head-icon-link {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer__head-icon-link:hover {
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
}
.footer__main-img {
  padding-inline: 2px;
  margin-inline: auto;
  margin-top: 14px;
  margin-bottom: -2px;
}
@media screen and (min-width:1200px) {
  .footer__main-img {
    width: 755px;
    margin-top: 41px;
    margin-bottom: -4px;
    position: relative;
    z-index: 1;
  }
}
.footer__contents {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  width: auto;
}
@media screen and (min-width:1200px) {
  .footer__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    position: relative;
    z-index: 2;
    height: 400px;
  }
}

.footer__content-map iframe {
  display: block;
  aspect-ratio: 335/271;
}
@media screen and (min-width:1200px) {
  .footer__content-map {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 400px;
  }
}

.footer__google-map {
  width: 100%;
  height: 100%;
}

.footer__content-main {
  margin-top: 24px;
}
@media screen and (min-width:1200px) {
  .footer__content-main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 106px;
  }
}

.footer__content-main-logo {
  width: 153px;
  margin-inline: auto;
}
@media screen and (min-width:1200px) {
  .footer__content-main-logo {
    width: 183px;
    margin-inline: 61.5px;
  }
}
.footer__content-main-textarea {
  padding-inline: 10px;
  margin-inline: auto;
  max-width: 300px;
  margin-block: 24px;
  padding-block: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width:768px) {
  .footer__content-main-textarea {
    margin-block: 26px;
    max-width: 409px;
    padding-block: 0;
    gap: 12px;
  }
}

.footer-main__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.footer-main__text-title {
  margin-left: 16px;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  width: 64px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width:768px) {
  .footer-main__text-title {
    font-size: 16px;
    width: 104px;
  }
}
.footer-main__text-title::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #9ed0e0;
  border-radius: 50%;
  position: absolute;
  left: -16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer-main__text-content {
  font-size: 12px;
}
@media screen and (max-width: 374px) {
  .footer-main__text-content {
    font-size: 11px;
  }
}
@media screen and (min-width:768px) {
  .footer-main__text-content {
    font-size: 16px;
  }
}

.footer__copyright {
  text-align: center;
  background: #67b0c7;
  padding-bottom: 27px;
  margin-top: 170px;
  position: relative;
}
@media screen and (min-width:1200px) {
  .footer__copyright {
    margin-top: 240px;
    padding-bottom: 32px;
  }
}
.footer__copyright::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 0;
  background: url(../img/footer-wave.png) center bottom/contain repeat-x;
  height: 45.7px;
  width: 100%;
}
@media screen and (min-width:1200px) {
  .footer__copyright::before {
    height: 120px;
    top: -118px;
    background-image: url(../img/pc/footer-wave-pc.png);
  }
}

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

.page__top {
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  bottom: 110px;
  display: block;
  width: 78px;
  height: 78px;
  background: url(../img/page-top-bg.png) center center/cover no-repeat;
  color: #fff;
  font-family: "Josefin Sans", serif;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.1;
  padding-top: 44.25px;
  padding-left: 37px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page__top.is-show {
  opacity: 1;
  visibility: visible;
}
.page__top:hover {
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
}
@media screen and (min-width:1200px) {
  .page__top {
    position: fixed;
    bottom: 50px;
    right: 39px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 103px;
    height: 108px;
    padding-top: 61px;
    padding-left: 48px;
    font-size: 12px;
    z-index: 10;
  }
}