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

ul li {
  list-style: none;
}

.button {
  display: inline-block;
  margin: 0 auto;
  -ms-flex-item-align: end;
      align-self: flex-end;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  padding: 5px 22px 6px 22px;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  max-width: 100%;
}
.button:hover {
  background: #ffee56;
  outline: none;
}
@media screen and (min-width: 900px) {
  .button {
    font-size: 20px;
    padding: 9px 39px 11px 39px;
  }
}

.inner {
  width: min(415px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .inner {
    width: min(2000px, 100%);
    padding-inline: 244px;
  }
}

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

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

.link-text {
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.link-text:hover {
  color: #9ed0e0;
}

.section__hedding {
  position: relative;
  padding-top: 43.3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
@media screen and (min-width: 900px) {
  .section__hedding {
    padding-top: 52px;
    gap: 8px;
  }
}
.section__hedding::before {
  content: "";
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 37.33px;
  height: 37.33px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 900px) {
  .section__hedding::before {
    width: 48px;
    height: 48px;
    top: -3px;
  }
}

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

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

.wrapper {
  overflow: hidden;
}

.header {
  height: 64px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: #fff;
  vertical-align: middle;
}

.header__inner {
  padding-inline: 20px;
  padding-block: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1200px) {
  .header__inner {
    padding-inline: 24px;
    padding-block: 14px;
  }
}

.header__logo img {
  width: 210px;
  vertical-align: middle;
}
@media screen and (min-width: 1200px) {
  .header__logo img {
    width: 183px;
    margin: 0;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 12px;
  }
}

.header__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  vertical-align: middle;
}
@media screen and (min-width: 1200px) {
  .header__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.header__nav-button {
  height: 36px;
  padding: 5px 23px 7px 23px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
}
.header__nav-button:hover {
  background: #ffee56;
  outline: none;
}
@media screen and (min-width: 1200px) {
  .header__nav-button {
    font-size: 14px;
    font-weight: 700;
    margin-left: 2px;
  }
}

.drawer-icon {
  width: 32px;
  height: 26px;
  position: relative;
  z-index: 51;
}
@media screen and (min-width: 1200px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  width: 100%;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.drawer-icon.is-checked .drawer-icon__dot {
  display: none;
}

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

.drawer-icon__dot {
  width: 4.8px;
  height: 3px;
  background: #4a3636;
  position: absolute;
  top: 0;
  right: -6px;
  border-radius: 6px;
}

.drawer__content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: -150%;
  right: 0;
  background: #fff;
  padding-block: 82px;
  padding-inline: 114px;
  z-index: 49;
  margin-top: 64px;
  padding: 40px 15px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
}
.drawer__content.is-checked {
  top: 0;
}

.drawer__content-menu {
  display: block;
  text-align: center;
}

.drawer__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

.drawer__nav-list {
  list-style: none;
}

.drawer-content__link {
  font-size: 14px;
  font-weight: 400;
}

.fv {
  margin-top: 64px;
  background-color: #e9f6f8;
  padding-top: 17px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .fv {
    padding-top: 34px;
    padding-bottom: 80px;
  }
}

.fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 156px);
  overflow: hidden;
  border-radius: 0px 0px 24px 24px;
}
.fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 900px) {
  .fv__bg img {
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}
@media screen and (min-width: 900px) {
  .fv__bg {
    height: calc(100% - 138px);
  }
}

.fv__inner {
  position: relative;
  width: min(415px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .fv__inner {
    width: 100%;
    padding-inline: 200px;
  }
}

.fv__lead {
  text-align: center;
}

.fv__lead-text {
  font-family: "Kiwi Maru", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .fv__lead-text {
    font-size: 24px;
    font-weight: 500;
  }
}

.fv__lead-title {
  display: block;
  margin-top: 20px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 900px) {
  .fv__lead-title {
    margin-top: 24px;
  }
  .fv__lead-title img + img {
    margin-top: 16px;
  }
}

.title__img-1 {
  display: block;
  margin: 0 auto;
  width: 335px;
}
@media screen and (min-width: 900px) {
  .title__img-1 {
    width: 520px;
  }
}

.title__img-2 {
  margin-top: 12px;
  width: 240px;
}
@media screen and (min-width: 900px) {
  .title__img-2 {
    width: 356px;
  }
}

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

.fv__image-smartphone {
  position: absolute;
  width: 200px;
  top: 103px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .fv__image-smartphone {
    top: 33px;
    width: 250px;
    height: 510px;
  }
}

.fv-picture__wrap {
  position: absolute;
  top: calc(50% - 5px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  border-radius: 12.8px;
  background: #fff;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .fv-picture__wrap {
    border-radius: 16px;
    width: calc(100% - 50px);
    height: 194px;
  }
}

.fv-picture__heading {
  font-weight: 700;
  font-size: 12.8px;
  color: #fff;
  border-top-right-radius: 12.8px;
  border-top-left-radius: 12.8px;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  padding-block: 6.4px;
  padding-inline: 9.6px;
}
@media screen and (min-width: 900px) {
  .fv-picture__heading {
    padding-block: 8px;
    padding-inline: 12px;
    font-size: 16px;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
  }
}

.fv-picture__body {
  font-size: 12px;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (min-width: 900px) {
  .fv-picture__body {
    font-size: 14px;
    padding-top: 14px;
    padding-bottom: 20px;
  }
}

.fv-picture__sub-heading span {
  display: inline-block;
  font-size: 12px;
  border-bottom: 2.4px solid #ce2073;
  padding-bottom: 1px;
}
@media screen and (min-width: 900px) {
  .fv-picture__sub-heading span {
    font-size: 14px;
    border-bottom-width: 3px;
  }
}

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

.fv-picture__button {
  position: relative;
  padding-bottom: 4px;
  margin-top: 12.8px;
}
@media screen and (min-width: 900px) {
  .fv-picture__button {
    margin-top: 18px;
  }
}

.button__smoll {
  padding-top: 2px;
  padding-right: 22px;
  padding-bottom: 2px;
  padding-left: 22px;
  font-size: 14px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .button__smoll {
    font-size: 16px;
    padding-top: 4px;
    padding-right: 22px;
    padding-bottom: 4px;
    padding-left: 22px;
  }
}

.fv__image-english-message {
  position: absolute;
  top: 8px;
  left: auto;
  right: calc(50% + 25.5px);
  width: 139.672px;
}
.fv__image-english-message img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .fv__image-english-message {
    top: 0;
    right: calc(50% + 144px);
    width: 244px;
  }
}

.fv__image-red-circle {
  position: absolute;
  top: 1px;
  left: calc(50% + 32.5px);
  right: auto;
  width: 110px;
}
.fv__image-red-circle img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .fv__image-red-circle {
    top: 17px;
    left: calc(50% + 116px);
    width: 180px;
  }
}

.fv__image-foods {
  position: absolute;
  bottom: 0px;
  width: 90px;
  height: auto;
  right: calc(50% + 77px);
  z-index: 3;
}
.fv__image-foods img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .fv__image-foods {
    bottom: -36px;
    right: calc(50% + 214px);
    width: 210px;
  }
}

.fv__images-cats {
  position: absolute;
  bottom: 125px;
  right: 107px;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .fv__images-cats {
    bottom: 210px;
    right: calc(50% - 190px);
  }
}

.fv__images-cat {
  position: relative;
}

.fv__image-cat1 {
  position: absolute;
  top: 0;
  left: 45px;
  height: auto;
  width: 62px;
}
.fv__image-cat1 img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .fv__image-cat1 {
    width: 170px;
    top: -2px;
    left: 0;
  }
}

.fv__image-cat2 {
  position: absolute;
  width: 98px;
  top: 55px;
  height: auto;
  left: 0px;
}
.fv__image-cat2 img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .fv__image-cat2 {
    width: 233px;
    left: 0;
    top: 120px;
  }
}

.about {
  padding-top: 33px;
  background: #e9f6f8;
  margin-bottom: 64px;
  position: relative;
}

.about__inner {
  position: relative;
  max-width: 375px;
  padding-inline: 20px;
  margin: 0 auto;
}
@media screen and (min-width: 601px) {
  .about__inner {
    max-width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .about__inner {
    max-width: 640px;
    padding-inline: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .about__inner {
    max-width: 908px;
  }
}

.about__decoration-stripe {
  position: absolute;
  top: 20px;
  width: 250px;
  right: calc(50% + 230px);
  overflow: hidden;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .about__decoration-stripe {
    right: calc(50% + 530px);
  }
}
.about__decoration-stripe img {
  width: 100%;
}

.about__decoration-image-left {
  position: absolute;
  top: 429px;
  right: calc(50% + 130px);
  overflow: hidden;
  width: 200px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .about__decoration-image-left {
    width: 450px;
    top: 110px;
    right: calc(50% + 362px);
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-image-left {
    width: 480px;
    top: 110px;
    right: calc(50% + 614px);
  }
}
.about__decoration-image-left img {
  width: 100%;
}

.about__decoration-stairs {
  position: absolute;
  left: -60px;
  bottom: 0px;
  width: 225px;
  height: auto;
}
@media screen and (min-width: 601px) {
  .about__decoration-stairs {
    width: 250px;
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-stairs {
    width: 427px;
    left: -104px;
    bottom: 155px;
  }
}
.about__decoration-stairs img {
  width: 100%;
}

.about__decoration-foot {
  position: absolute;
  top: 22px;
  left: calc(50% + 134px);
  width: 54px;
}
@media screen and (min-width: 900px) {
  .about__decoration-foot {
    top: 0;
    left: calc(50% + 300px);
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-foot {
    width: 100px;
    top: -42px;
    left: calc(50% + 490px);
  }
}

.about__decoration-image-right {
  position: absolute;
  top: 306px;
  left: calc(50% + 128px);
  overflow: hidden;
  width: 200px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .about__decoration-image-right {
    width: 480px;
    top: 112px;
    left: calc(50% + 360px);
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-image-right {
    width: 480px;
    top: 112px;
    left: calc(50% + 560px);
  }
}
.about__decoration-image-right img {
  width: 100%;
}

.about__decoration-wave {
  position: absolute;
  bottom: 576px;
  left: calc(50% + 200px);
  width: 873.922px;
  height: auto;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .about__decoration-wave {
    bottom: 638px;
    left: calc(50% + 447px);
  }
}
.about__decoration-wave img {
  width: 100%;
}

.about__decoration-goods1 {
  position: absolute;
  bottom: 216px;
  left: calc(50% + 118px);
  width: 48px;
  height: auto;
}
@media screen and (min-width: 601px) {
  .about__decoration-goods1 {
    width: 80px;
    left: calc(50% + 280px);
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-goods1 {
    width: 101px;
    bottom: 490px;
    left: calc(50% + 305px);
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-goods1 {
    width: 101px;
    bottom: 590px;
    left: calc(50% + 505px);
  }
}
.about__decoration-goods1 img {
  width: 100%;
}

.about__decoration-goods2 {
  position: absolute;
  bottom: 157px;
  left: calc(50% - 2px);
  width: 133px;
  height: auto;
}
@media screen and (min-width: 601px) {
  .about__decoration-goods2 {
    width: 200px;
    left: calc(50% + 97px);
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-goods2 {
    width: 308px;
    bottom: 253px;
    left: calc(50% + 150px);
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-goods2 {
    width: 308px;
    bottom: 383px;
    left: calc(50% + 375px);
  }
}
.about__decoration-goods2 img {
  width: 100%;
}

.about__main {
  text-align: center;
  border-radius: 24px;
  padding-top: 40px;
  padding-bottom: 27px;
  padding-inline: 12px;
  background: #fff;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .about__main {
    padding-top: 48px;
    max-width: 845px;
    margin: 0 auto;
  }
}
.about__main span {
  font-weight: 700;
}
.about__main::after {
  position: absolute;
  background: url(../img/icon-arrow.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  content: "";
  bottom: -36px;
  left: 50%;
  width: 100px;
  height: 36px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .about__main::after {
    width: 140px;
    height: 50px;
    bottom: -53px;
  }
}
.about__main::after img {
  width: 100%;
  height: auto;
}

.heading__about {
  position: relative;
}
.heading__about::before {
  background: url(../img/icon-about.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.about__text-lead {
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .about__text-lead {
    font-size: 16px;
    margin-top: 32px;
  }
}

.about__text-wrap {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .about__text-wrap {
    font-size: 16px;
    margin-top: 34px;
    line-height: 1.6;
  }
}
.about__text-wrap p + p {
  margin-top: 1.5em;
}
@media screen and (min-width: 900px) {
  .about__text-wrap p + p {
    margin-top: 1.7em;
  }
}

.about__text-present {
  margin: 0 auto;
  display: inline-block;
  margin-top: 32px;
  padding-top: 10px;
  padding-bottom: 6px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px dashed #9ed0e0;
}
@media screen and (min-width: 900px) {
  .about__text-present {
    font-size: 20px;
    margin-top: 42px;
    padding-block: 10px;
  }
}

.about__text-button {
  margin-top: 24px;
  margin-bottom: 10px;
}
@media screen and (min-width: 900px) {
  .about__text-button {
    margin-top: 34px;
  }
}

.about__img-left {
  position: absolute;
  width: 90px;
  top: 30px;
  right: calc(50% + 45px);
  z-index: 5;
}
@media screen and (min-width: 900px) {
  .about__img-left {
    width: 144px;
    top: 49px;
    right: calc(50% + 198px);
  }
}

.about__img-right {
  position: absolute;
  width: 90px;
  top: 29px;
  left: calc(50% + 58px);
}
@media screen and (min-width: 900px) {
  .about__img-right {
    width: 144px;
    top: 49px;
    left: calc(50% + 193px);
  }
}

.about__photo-left {
  position: absolute;
  top: 395px;
  left: -160px;
  width: 200px;
  z-index: 1;
}

.about__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 139.7px;
}
@media screen and (min-width: 900px) {
  .about__bottom {
    margin-top: 170px;
  }
}

.about__bottom-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 355px;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .about__bottom-img {
    width: 886px;
  }
}
/* スライドの動き等速 */
.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100px;
}
@media screen and (min-width: 900px) {
  .swiper-slide img {
    width: 200px;
  }
}

.step {
  background: #e9f6f8;
  margin-top: 66px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 17px;
}
@media screen and (min-width: 900px) {
  .step {
    margin-top: 120px;
  }
}

.step__inner {
  padding-inline: 20px;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 601px) {
  .step__inner {
    max-width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .step__inner {
    max-width: 1512px;
  }
}
@media screen and (min-width: 900px) {
  .step__inner {
    padding-inline: 30px;
  }
}

.step__decoration-map {
  position: absolute;
  top: 0;
  right: 0;
  right: calc(50% + 40px);
  width: 149px;
}
@media screen and (min-width: 900px) {
  .step__decoration-map {
    width: 380px;
    top: -65px;
    right: calc(50% + 180px);
  }
}
@media screen and (min-width: 1200px) {
  .step__decoration-map {
    width: 460px;
    top: -65px;
    right: calc(50% + 260px);
  }
}
.step__decoration-map img {
  max-width: 100%;
  height: auto;
}

.step__decoration-cats {
  position: absolute;
  top: 0;
  left: calc(50% + 60px);
}
@media screen and (min-width: 900px) {
  .step__decoration-cats {
    top: -15px;
    left: calc(50% + 181px);
  }
}
@media screen and (min-width: 1200px) {
  .step__decoration-cats {
    top: -31px;
    left: calc(50% + 287px);
  }
}

.step__decoration-cats2 {
  position: relative;
}

.step__decoration-cats-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 105px;
}
@media screen and (min-width: 900px) {
  .step__decoration-cats-1 {
    width: 238px;
  }
}
.step__decoration-cats-1 img {
  max-width: 100%;
  height: auto;
}

.step__decoration-cats-2 {
  position: absolute;
  top: 5px;
  left: 65px;
  width: 94px;
}
@media screen and (min-width: 900px) {
  .step__decoration-cats-2 {
    width: 214px;
    top: 10px;
    left: 150px;
  }
}
.step__decoration-cats-2 img {
  max-width: 100%;
  height: auto;
}

.step__decoration-foot1 {
  position: absolute;
  width: 55px;
  top: 74px;
  right: 20px;
}
@media screen and (min-width: 900px) {
  .step__decoration-foot1 {
    width: 70px;
    top: 150px;
    right: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .step__decoration-foot1 {
    width: 100px;
    top: 144px;
    right: 36px;
  }
}
.step__decoration-foot1 img {
  max-width: 100%;
  height: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.step__decoration-foot2 {
  position: absolute;
  width: 55px;
  top: 550px;
  left: 20px;
}
@media screen and (min-width: 900px) {
  .step__decoration-foot2 {
    width: 70px;
    top: 663px;
    left: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .step__decoration-foot2 {
    width: 100px;
    top: 575px;
    left: 36px;
  }
}
.step__decoration-foot2 img {
  max-width: 100%;
  height: auto;
}

.step__decoration-foot3 {
  position: absolute;
  bottom: 367px;
  width: 55px;
  right: 20px;
}
.step__decoration-foot3 img {
  max-width: 100%;
  height: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 900px) {
  .step__decoration-foot3 {
    display: none;
  }
}

.heading__step {
  position: relative;
}
.heading__step::before {
  background: url(../img/icon-camera.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.step__boxes {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .step__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 40px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.step-box_wrap {
  position: relative;
  text-align: center;
  padding-bottom: 16px;
}
@media screen and (min-width: 900px) {
  .step-box_wrap {
    width: 320px;
  }
  .step-box_wrap:nth-child(2) {
    margin-top: 69px;
  }
}
.step-box_wrap::after {
  content: "";
  position: absolute;
  background: url(../img/step_line-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 34px;
  width: 7px;
  bottom: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .step-box_wrap::after {
    position: absolute;
    background: url(../img/step_line-pc.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    top: calc(50% - 69px);
    left: 313px;
    width: 113px;
    height: 24px;
    z-index: 3;
  }
}
.step-box_wrap:nth-child(3)::after {
  display: none;
}
@media screen and (min-width: 900px) {
  .step-box_wrap:nth-child(2)::after {
    top: calc(50% - 107px);
    left: 320px;
  }
}

.step-box__img img {
  height: 210px;
}
@media screen and (min-width: 900px) {
  .step-box__img img {
    height: 300px;
  }
}

.step-box__lead {
  font-size: 16px;
  font-weight: 700;
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .step-box__lead {
    font-size: 20px;
    margin-top: 24px;
  }
}

.step-box__text {
  font-weight: 400;
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .step-box__text {
    font-size: 16px;
  }
}

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

.step-box__link-text {
  background: #fff;
  color: #4a3636;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  padding-left: 38px;
  padding-block: 7px;
  padding-right: 11px;
  position: relative;
  border: solid 1px #fff;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.step-box__link-text:hover {
  border-color: #67b0c7;
}
@media screen and (min-width: 900px) {
  .step-box__link-text {
    font-size: 16px;
    padding: 8px 12px 8px 44px;
  }
}
.step-box__link-text::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10px;
  background-image: url(../img/icon-instagram.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .step-box__link-text::before {
    width: 24px;
    height: 24px;
    left: 12px;
  }
}

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

.prize {
  padding-top: 41px;
}
@media screen and (min-width: 900px) {
  .prize {
    padding-top: 139px;
  }
}

.prize__outer {
  text-align: center;
  padding-bottom: 32px;
}

.prize__inner {
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .prize__inner {
    max-width: 1084px;
    padding-inline: 30px;
  }
}

.prize__contents {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .prize__contents {
    padding-inline: 35px;
  }
}
.prize__contents::before {
  position: absolute;
  content: "";
  width: 238px;
  height: 83px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  top: -19px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/price1-sp.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 900px) {
  .prize__contents::before {
    background: url(../img/price1-pc.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 365.624px;
    height: 148.967px;
    top: -29px;
  }
}
.prize__contents::after {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 30px);
  background-color: #fff;
  border-radius: 24px;
  top: 64px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .prize__contents::after {
    height: calc(100% - 63px);
    max-width: 1024px;
    top: 120px;
  }
}

.prize__decoration-left {
  position: absolute;
  width: 316px;
  top: 0;
  right: calc(50% + 196px);
}

.prize__decoration-right {
  position: absolute;
  width: 316px;
  top: 0;
  left: calc(50% + 196px);
}

.heading__prize {
  position: relative;
}
.heading__prize::before {
  background: url(../img/icon-prize.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.prize__contents-inner {
  padding-inline: 20px;
}

.prize__text {
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .prize__text {
    font-size: 16px;
    margin-top: 40px;
  }
}

.prize__cards {
  margin-top: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 39px;
  -webkit-column-gap: 14px;
     -moz-column-gap: 14px;
          column-gap: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .prize__cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 33px;
    grid-row-gap: 80px;
    margin-top: 82px;
  }
}

.prize__card {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 160px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .prize__card {
    width: 100%;
  }
  .prize__card:nth-child(1) {
    grid-column: 1/4;
    grid-row: 1/2;
  }
  .prize__card:nth-child(2) {
    grid-column: 4/7;
    grid-row: 1/2;
  }
  .prize__card:nth-child(3) {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .prize__card:nth-child(4) {
    grid-column: 3/5;
    grid-row: 2/3;
  }
  .prize__card:nth-child(5) {
    grid-column: 5/7;
    grid-row: 2/3;
  }
}
.prize__card:hover .prize-picture img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.prize-card {
  position: relative;
}

@media screen and (min-width: 900px) {
  .prize__card-large .prize-card__number {
    width: 100px;
    top: -50px;
    left: 50%;
  }
}

.prize-card__number {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 48px;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .prize-card__number {
    width: 80px;
    top: -40px;
    left: 50%;
  }
}
.prize-card__number img {
  max-width: 100px;
  width: 100%;
  height: auto;
}

.prize-card__inner {
  border-radius: 8px;
  background-color: #f5f5f5;
}
@media screen and (min-width: 900px) {
  .prize-card__inner {
    border-radius: 24px;
  }
}

.prize-card-picture__wrap {
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media screen and (min-width: 900px) {
  .prize-card-picture__wrap {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}

.prize-picture {
  width: 100%;
}
.prize-picture img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease; /* 画像の変化にトランジションを追加 */
}
@media screen and (min-width: 900px) {
  .prize-picture img {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}

@media screen and (min-width: 900px) {
  .prize__card-large .prize-card__inner .prize-card__hedding {
    font-size: 20px;
    min-height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    vertical-align: middle;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}

@media screen and (min-width: 900px) {
  .prize__card-large .prize-card__inner .prize-card__button svg {
    width: 100px;
    height: 100px;
  }
}

.prize-card__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 900px) {
  .prize-card__text {
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    vertical-align: middle;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}

.prize-card__hedding {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 56px;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media screen and (min-width: 900px) {
  .prize-card__hedding {
    font-size: 16px;
    min-height: 80px;
  }
}

.prize-card__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
}
@media screen and (min-width: 900px) {
  .prize-card__button {
    border-radius: 24px;
  }
}
.prize-card__button:hover {
  border-color: #9ed0e0;
}

.prize-card__icon svg {
  position: absolute;
  right: -2px;
  bottom: -2px;
  display: block;
  width: 36px;
  height: 36px;
  border-bottom-right-radius: 8px;
}
@media screen and (min-width: 900px) {
  .prize-card__icon svg {
    width: 64px;
    height: 64px;
    border-bottom-right-radius: 24px;
  }
}

.prize-card__icon .icon-path {
  fill: #67b0c7;
}

.prize-card__button:hover .prize-card__icon svg {
  fill: #9ed0e0; /* ホバー時の色に変更 */
}

.prize__modal {
  overscroll-behavior-y: contain;
  padding: 0;
  padding-inline: 20px;
  padding-bottom: 19px;
  border: none;
  border-radius: 24px;
  background: #fff;
  width: 336px;
  max-width: calc(100% - 20px);
  height: 480px;
  max-height: calc(100% - 20px);
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .prize__modal {
    width: 480px;
    height: 650px;
  }
}
.prize__modal::-ms-backdrop {
  opacity: 0.4;
  background-color: #000;
}
.prize__modal::backdrop {
  opacity: 0.4;
  background-color: #000;
}

figure {
  margin: 0; /* デフォルトのマージンをリセット */
}

.prize-modal__img {
  width: calc(100% + 40px);
  margin-left: -20px;
}
.prize-modal__img img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

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

.prize-modal__text {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .prize-modal__text {
    font-size: 16px;
  }
}

.prize-modal__button {
  margin-top: 16px;
  padding-bottom: 4px;
}
@media screen and (min-width: 900px) {
  .prize-modal__button {
    margin-top: 24px;
  }
}

.button__modal {
  padding: 4px 22px 6px 22px;
}

.prize__button-wrap {
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .prize__button-wrap {
    margin-top: 40px;
  }
}

.prize__cover-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -43px;
}
.prize__cover-bg img {
  display: block;
  width: 100%;
  min-width: 580px;
}
@media screen and (min-width: 900px) {
  .prize__cover-bg {
    margin-top: 19px;
  }
}

.spot {
  text-align: center;
  padding-top: 44.7px;
  padding-bottom: 45.7px;
  margin-top: -43.7px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .spot {
    margin-top: -40px;
    padding-top: 40.7px;
  }
}
.spot::before {
  content: "";
  top: 0px;
  left: 0;
  width: 100%;
  height: 45.7px;
  position: absolute;
  background-color: transparent;
  background-image: url(../img/spot__wave-top.png);
  background-repeat: repeat-x;
  background-position: left center;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .spot::before {
    height: 120px;
    top: -79px;
  }
}
.spot::after {
  content: "";
  bottom: 12px;
  left: 0;
  width: 100%;
  height: 45.714px;
  position: absolute;
  background-color: transparent;
  background-image: url(../img/spot__wave-bottom.png);
  background-repeat: repeat-x;
  background-position: left center;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .spot::after {
    height: 120px;
    bottom: 0;
  }
}

.spot__decoration_footprint {
  position: absolute;
  width: 100px;
  left: 36px;
  bottom: 0px;
}
.spot__decoration_footprint img {
  height: 100%;
}
@media screen and (min-width: 900px) {
  .spot__decoration_footprint {
    bottom: 123px;
  }
}

.spot__outer {
  background: #67b0c7;
  padding-bottom: 12px;
}
@media screen and (min-width: 900px) {
  .spot__outer {
    padding-bottom: 60px;
  }
}

@media screen and (min-width: 900px) {
  .spot__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    padding-left: max(30px, 50% - 544px);
  }
}

@media screen and (min-width: 900px) {
  .spot__heading-wrap {
    padding-top: 70px;
    letter-spacing: 10px;
  }
}

.spot__headding {
  color: #fff;
  display: inline-block;
  padding-left: 36px;
  font-family: "Kiwi Maru";
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  position: relative;
}
@media screen and (min-width: 900px) {
  .spot__headding {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 40px;
  }
}
.spot__headding::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 28px;
  height: 28px;
  background-image: url(../img/spot__icon-top.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .spot__headding::before {
    width: 56px;
    height: 56px;
    top: -42px;
    right: -3px;
    z-index: 2;
  }
}
.spot__slider-wrap {
  margin-top: 22px;
}
@media screen and (min-width: 900px) {
  .spot__slider-wrap {
    margin-top: 0;
    width: calc(100% - 56px - 32px);
  }
}

.spot__swiper {
  position: relative;
}

.spot__swiper-wrapper {
  position: relative;
}

.spot__swiper-slide {
  height: auto;
}

.spot-card__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.spot-card {
  border-radius: 12px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 30px;
  -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: 14px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .spot-card {
    border-radius: 24px;
    gap: 24px;
    padding-bottom: 40px;
  }
}

.spot-card__img {
  aspect-ratio: 240/180;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .spot-card__img {
    aspect-ratio: 344/240;
  }
}
.spot-card__img img {
  width: 100%;
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 900px) {
  .spot-card__img img {
    border-radius: 24px 24px 0 0;
  }
}

.spot-card__description {
  padding-inline: 26px;
  border-radius: 0 0 12px 12px;
  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;
}
@media screen and (min-width: 900px) {
  .spot-card__description {
    padding-inline: 32px;
    gap: 24px;
    border-radius: 0 0 24px 24px;
  }
}

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

.spot-card__text {
  color: #4a3636;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 900px) {
  .spot-card__text {
    font-size: 16px;
  }
}

.spot__arrows {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .spot__arrows {
    max-width: 944px;
    margin-top: -30px;
  }
}

.spot-swiper-arrow {
  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 {
  content: "";
}

.spot__swiper-arrows-prev {
  background-image: url(../img/icon-prev-arrow.png);
  background-size: 57px 57px;
}
.spot__swiper-arrows-prev:hover {
  background-position: calc(50% - 5px) center;
}

.spot__swiper-arrows-next {
  background-image: url(../img/icon-next-arrow.png);
  background-size: 57px 57px;
}
.spot__swiper-arrows-next:hover {
  background-position: calc(50% + 5px) center;
}

.spot__swiper-arrows-prev,
.spot__swiper-arrows-next {
  position: static;
  width: 80px;
  height: 80px;
  background-color: #ffee56;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
  -webkit-transition: background-position 0.3s;
  transition: background-position 0.3s;
}

@media screen and (min-width: 1200px) {
  .spot__inner {
    max-width: 1084px;
    padding-inline: 30px;
    margin: 0 auto;
  }
}

.spot__arrows {
  position: relative;
}

.spot__bottom {
  padding-bottom: 19px;
}
@media screen and (min-width: 900px) {
  .spot__bottom {
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .spot__bottom {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 80px;
  }
}

.spot__english img {
  width: 255px;
}
@media screen and (min-width: 900px) {
  .spot__english img {
    width: 495px;
  }
}

.spot__text-wrap {
  margin-top: 16px;
}
@media screen and (min-width: 1200px) {
  .spot__text-wrap {
    margin-top: 0;
    text-align: right;
  }
}

.spot__text {
  color: #fff;
  font-size: 11.444px;
}
@media screen and (min-width: 900px) {
  .spot__text {
    font-size: 16px;
  }
}

.spot__button {
  margin-top: 24px;
}

.faq {
  text-align: center;
  padding-top: 28px;
  padding-bottom: 30px;
}
@media screen and (min-width: 900px) {
  .faq {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

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

.heading__faq::before {
  background: url(../img/icon-faq.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.faq__boxes {
  text-align: left;
  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: 24px;
}
@media screen and (min-width: 900px) {
  .faq__boxes {
    gap: 22px;
    margin-top: 40px;
  }
}

.faq-box {
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .faq-box {
    border-radius: 16px;
  }
}

.faq-box__heading {
  position: relative;
  padding: 10px 13px 10px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .faq-box__heading {
    padding: 22px 22px 20px 22px;
    gap: 16px;
  }
}
.faq-box__heading::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 21px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50px;
  background-color: #fff;
  width: 10px;
  height: 2px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media screen and (min-width: 900px) {
  .faq-box__heading::before {
    right: 36px;
    width: 19px;
    height: 2.5px;
  }
}
.faq-box__heading::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 21px;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  border-radius: 50px;
  background-color: #fff;
  width: 10px;
  height: 2px;
  -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: 900px) {
  .faq-box__heading::after {
    right: 36px;
    width: 20px;
    height: 2.5px;
  }
}

.show::before {
  opacity: 0;
}
.show::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

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

.faq-box__heading-text {
  color: #4a3636;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 900px) {
  .faq-box__heading-text {
    font-size: 20px;
  }
}

.faq-box__heading-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 26px;
  height: 26px;
  background-color: #9ed0e0;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .faq-box__heading-toggle {
    width: 48px;
    height: 48px;
  }
}

.faq-box__body {
  text-align: left;
  padding: 19px 14px 12px 14px;
  border-radius: 0 0 12px 12px;
  background: #f5f5f5;
}
@media screen and (min-width: 900px) {
  .faq-box__body {
    padding: 22px 22px 22px 22px;
    border-radius: 0 0 16px 16px;
  }
}

.faq-box__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.faq-box__answer-icon {
  color: #9ed0e0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  line-height: 1.25;
  padding-top: 6px;
}
@media screen and (min-width: 900px) {
  .faq-box__answer-icon {
    font-size: 32px;
    padding-top: 4px;
  }
}

.faq-box__answer-text {
  color: #4a3636;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .faq-box__answer-text {
    font-size: 16px;
  }
}

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

.entry__content {
  border: 8px solid #fff;
  padding-top: 15px;
  padding-inline: 16px;
  padding-bottom: 19px;
  background-color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}
@media screen and (min-width: 900px) {
  .entry__content {
    padding: 36px 56px;
    margin-bottom: 120px;
  }
}

.heading__entry::before {
  background: url(../img/icon-entry.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.entry__table {
  margin-top: 14px;
}
@media screen and (min-width: 900px) {
  .entry__table {
    margin-top: 40px;
  }
}

.entry-table {
  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;
}

.entry-table__row {
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 11px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
.entry-table__row:last-child {
  border: none;
}
@media screen and (min-width: 900px) {
  .entry-table__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 75px;
    padding-top: 13px;
    padding-bottom: 11px;
  }
  .entry-table__row:first-child {
    padding-top: 0;
  }
}

.enyty-tabel__head {
  font-size: 14px;
  font-weight: 700;
  padding-left: 1.2em;
  line-height: 1.6;
  position: relative;
  text-align: left;
}
.enyty-tabel__head::before {
  background: #9ed0e0;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 8px;
}
@media screen and (min-width: 900px) {
  .enyty-tabel__head::before {
    left: 8px;
  }
}
@media screen and (min-width: 900px) {
  .enyty-tabel__head {
    font-size: 16px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 157px;
    padding-left: 1.5em;
  }
}

.enyty-tabel__date {
  font-size: 12px;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .enyty-tabel__date {
    font-size: 16px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.enyty-tabel__date li {
  padding-left: 1.5em;
  position: relative;
  line-height: 1.58;
}
@media screen and (min-width: 900px) {
  .enyty-tabel__date li {
    line-height: 1.62;
  }
}
.enyty-tabel__date li::before {
  content: "・";
  position: absolute;
  top: 2px;
  left: 2px;
}

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

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

.heading__contact::before {
  background: url(../img/icon-mail.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

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

.contact__fiels {
  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;
  margin-top: 23px;
}
@media screen and (min-width: 900px) {
  .contact__fiels {
    margin-top: 40px;
    max-width: 848px;
    margin-left: auto;
    margin-right: auto;
    gap: 22px;
  }
}

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

.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;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .form-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.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: 900px) {
  .form-field__head {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

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

.form-text {
  width: 100%;
  border-radius: 8px;
  border: none;
  border: 1px solid transparent;
  background: #f5f5f5;
  padding: 16px;
}

.form-text:focus,
.form-textarea:focus,
.form-checkbox__input:focus {
  background-color: #e9f6f8;
  outline: none;
  border-color: #9ed0e0;
}
.form-text.is-error,
.form-textarea.is-error,
.form-checkbox__input.is-error {
  background-color: #fff0f7;
  border-color: #ce2073;
}

.form-select:focus {
  background-color: #e9f6f8;
  outline: none;
  border-color: #9ed0e0;
}
.form-select.is-error {
  background-image: url(../img/select-allow.png), linear-gradient(to left, #ce2073 52px, #fff0f7 52px);
  border-color: #ce2073;
}

.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 input {
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .form-field__item input {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .form-field__item {
    width: 628px;
  }
}

.form-select {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border-radius: 8px;
  border: 1px solid transparent;
  height: 56px;
  background-image: url(../img/select-allow.png), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat, no-repeat;
  background-position: center right 10px, center center;
  background-size: 32px 32px, cover;
  padding: 16px;
}

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

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

.form-field__radio:hover .form-radio__text::before {
  border-color: #9ed0e0; /* ホバー時のボーダー色 */
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}

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

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

.form-textarea {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: #f5f5f5;
  padding: 16px;
  font-family: "Noto Sans JP";
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .form-textarea {
    font-size: 16px;
  }
}

.contact__bottom {
  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: 25px;
  margin-top: 25px;
}
@media screen and (min-width: 900px) {
  .contact__bottom {
    margin-top: 43px;
    gap: 40px;
  }
}

.form-checkbox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}

.form-checkbox__text {
  position: relative;
  padding-left: 34px;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}

.form-checkbox__text::before,
.form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* チェック時にボーダー色を変更 */
.form-checkbox__input:checked + .form-checkbox__text::before {
  border-color: #9ed0e0; /* チェック時のボーダー色 */
}

.form-checkbox__input.is-error + .form-checkbox__text::before {
  border-color: #ce2073;
}

.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #f5f5f5;
  border: 1px solid transparent;
}

.form-checkbox__text::after {
  width: 23px;
  height: 17.53px;
  left: -1px;
  margin-top: -1.2px;
  background: url(../img/check-icon.png) no-repeat center center/contain;
  opacity: 0;
}

@media screen and (min-width: 900px) {
  .button-contact {
    font-size: 16px;
    padding: 4px 38px 6px 38px;
    height: auto;
  }
}

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

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

.footer__decoration-foot {
  position: absolute;
  width: 100px;
  left: calc(50% + 500px);
  right: auto;
  top: -40px;
}
@media screen and (min-width: 900px) {
  .footer__decoration-foot {
    left: calc(50% + 576px);
  }
}
.footer__decoration-foot img {
  width: 100%;
  height: auto;
}

.footer__sns-links {
  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;
}

.sns-links__title {
  font-family: "Josefin Sans";
  font-size: 20px;
  text-align: center;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .sns-links__title {
    font-size: 24px;
  }
}

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

.sns-link {
  position: relative;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  -webkit-filter: brightness(1);
          filter: brightness(1);
}
.sns-link:hover {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}
.sns-link img {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 900px) {
  .sns-link img {
    width: 40px;
    height: 40px;
  }
}

.footer__decoration-logo {
  margin-top: 15px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer__decoration-logo {
    margin-top: 39px;
  }
}
.footer__decoration-logo img {
  width: 325px;
}
@media screen and (min-width: 900px) {
  .footer__decoration-logo img {
    width: 738px;
  }
}

.footer__address-wrap {
  width: 100%;
}
.address-wrap {
  overflow: hidden;
  background-color: #fff;
  border-radius: 16px;
}
@media screen and (min-width: 900px) {
  .address-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
}

.address-wrap__map {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .address-wrap__map {
    width: 50%;
  }
}
.address-wrap__map iframe {
  border: none;
  display: block;
  width: 100%;
  border-radius: 16px 16px 0 0;
  aspect-ratio: 335/271;
}
@media screen and (min-width: 900px) {
  .address-wrap__map iframe {
    aspect-ratio: 512/400;
    border-radius: 0 16px 16px 0;
  }
}

@media screen and (min-width: 900px) {
  .address-wrap__map,
  .address-wrap__body {
    width: 50%;
  }
}

.address-wrap__body {
  border-radius: 0 0 16px 16px;
  background: #fff;
  padding-top: 21px;
  padding-bottom: 30px;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 900px) {
  .address-wrap__body {
    border-radius: 16px 0 0 16px;
    padding: 10px;
  }
}

@media screen and (min-width: 900px) {
  .address-body_wrap {
    max-width: 410px;
  }
}

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

.address-wrap__info-wrap {
  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;
  margin-top: 30px;
}
@media screen and (min-width: 900px) {
  .address-wrap__info-wrap {
    gap: 12px;
    margin-top: 24px;
  }
}

.address-wrap__info-row {
  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: 900px) {
  .address-wrap__info-row {
    font-size: 16px;
    gap: 40px;
  }
}

.address-wrap__info-term {
  padding-left: 17px;
  font-weight: 700;
  width: 80px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .address-wrap__info-term {
    padding-left: 44px;
    font-size: 16px;
    width: 80px;
    padding-left: 16px;
  }
}
.address-wrap__info-term::before {
  background: #9ed0e0;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 8px;
  height: 8px;
}
.address-wrap__info-descriptiom {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.footer__pagetop {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .footer__pagetop {
    position: fixed;
    right: 40px;
    bottom: 40px;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
  }
  .footer__pagetop.is-show {
    opacity: 1;
    visibility: visible;
  }
}

.pagetop {
  padding-top: 24px;
  padding-bottom: 24px;
}
.pagetop img {
  width: 75px;
  height: 78px;
}
@media screen and (min-width: 900px) {
  .pagetop img {
    width: 100px;
    height: 104px;
  }
}

.footer__bottom {
  background: #67b0c7;
  margin-top: 42.714px;
  padding-bottom: 24px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 900px) {
  .footer__bottom {
    margin-top: 240px;
    padding-bottom: 32px;
  }
}
.footer__bottom::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 45.714px;
  top: -45px;
  left: 0px;
  background-color: transparent;
  background-image: url(../img/spot__wave-top.png);
  background-repeat: repeat-x;
  background-position: right;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .footer__bottom::before {
    height: 120px;
    top: -120px;
  }
}

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