@charset "UTF-8";
html {
  min-width: 375px;
}

body {
  font-size: 12px;
  color: #4A3636;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}

body.is-fixed {
  overflow: hidden;
}

.wrapper {
  background: #E9F6F8;
  overflow: hidden;
}

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

.heading {
  text-align: center;
}
.heading__img img {
  width: 37.333px;
}
@media screen and (min-width: 900px) {
  .heading__img img {
    width: 48px;
  }
}
.heading__en {
  margin-top: 8px;
  font-family: "Courgette", cursive;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
  display: block;
}
@media screen and (min-width: 900px) {
  .heading__en {
    font-size: 20px;
  }
}
.heading__ja {
  margin-top: 6px;
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 125%;
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
}
@media screen and (min-width: 900px) {
  .heading__ja {
    font-size: 32px;
    margin-top: 8px;
    padding-bottom: 16px;
  }
}
.heading__ja::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  background: #FFEE56;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .heading__ja::after {
    height: 8px;
    margin-top: 8px;
  }
}

.btn {
  display: inline-block;
  font-size: 14px;
  border-radius: 40px;
  border: 2px solid #4A3636;
  background: #fff;
  font-weight: 700;
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
  padding: 4px 22px 6px 22px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background: #FFEE56;
}

.contents-btn {
  display: inline-block;
  font-size: 16px;
  border-radius: 40px;
  border: 2px solid #4A3636;
  background: #fff;
  font-weight: 700;
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
  padding: 4px 22px 6px 22px;
}
@media screen and (min-width: 900px) {
  .contents-btn {
    font-size: 20px;
    border: 3px solid #4A3636;
    padding: 8px 37px 9px 37px;
  }
}

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

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

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

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

.xl-visible {
  display: none;
}
@media screen and (min-width: 1200px) {
  .xl-visible {
    display: inline-block;
  }
}

.is-underline {
  text-decoration-line: underline;
}

.link-text {
  text-decoration: underline;
}
.link-text:hover {
  color: #67B0C7;
}

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

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  padding-right: 20px;
  padding-left: 20px;
}

@media screen and (min-width: 900px) {
  .header__inner {
    padding-right: 24px;
    padding-left: 24px;
  }
}
.header__logo a img {
  display: block;
  width: 210px;
}

@media screen and (min-width: 900px) {
  .header__logo a img {
    width: 183px;
  }
}
.header__nav {
  display: none;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  margin-left: auto;
}

@media screen and (min-width: 1200px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 12px;
}

@media (hover: hover) {
  .header__link {
    text-decoration-line: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
    -webkit-transition: color 0.3s, text-decoration-color 0.2s;
    transition: color 0.3s, text-decoration-color 0.2s;
  }
  .header__link:hover {
    color: #67b0c7;
    text-decoration-color: #67b0c7;
  }
}
.header__button {
  margin-left: 4px;
}

.header__open {
  margin-left: auto;
  line-height: 0;
}

@media screen and (min-width: 1200px) {
  .header__open {
    display: none;
  }
}
.drawer-icon {
  position: relative;
  width: 32px;
  height: 27px;
}

.drawer-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  height: 64px;
  content: "";
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.drawer-icon.is-checked .drawer-icon__bar .drawer-icon__dot {
  display: none;
}

.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  width: 100%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.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(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  left: 0;
  width: 32px;
  height: 3px;
  background-color: #4a3636;
  border-radius: 6px;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}

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

.drawer-icon__bar:nth-of-type(1) {
  top: 0;
  left: 0;
  width: 25.6px;
}

.drawer-icon__bar:nth-of-type(2) {
  top: 50%;
  background: #4a3636;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.drawer-icon__bar:nth-of-type(3) {
  bottom: 0;
  background: #4a3636;
}

.drawer-content {
  position: fixed;
  top: 64px;
  left: 0;
  z-index: 100;
  display: none;
  width: 100%;
  height: calc(100dvh - 64px);
  padding-top: 59px;
  padding-bottom: 60px;
  overflow-y: auto;
  background: #fff;
}

@media screen and (min-width: 1200px) {
  .drawer-content {
    display: none !important;
  }
}
.drawer-content__menu {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  margin: auto;
}

.drawer-content__link {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 1.572;
  text-align: center;
}

@media (hover: hover) {
  .drawer-content__link {
    text-decoration-line: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
    -webkit-transition: color 0.3s, text-decoration-color 0.2s;
    transition: color 0.3s, text-decoration-color 0.2s;
  }
  .drawer-content__link:hover {
    color: #67b0c7;
    text-decoration-color: #67b0c7;
  }
}
.drawer-content__button {
  margin-top: 20px;
}

/*****************************************
fv
*/
.fv {
  position: relative;
  padding-top: 17px;
  margin-top: 64px;
}
@media screen and (min-width: 900px) {
  .fv {
    padding-top: 34px;
  }
}
.fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 156px);
  overflow: hidden;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
}
@media screen and (min-width: 900px) {
  .fv__bg {
    height: calc(100% - 69px);
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}
.fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}
@media screen and (min-width: 900px) {
  .fv__bg img {
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}
.fv__inner {
  position: relative;
  width: 100%;
  padding-inline: 20px;
  max-width: 415px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .fv__inner {
    max-width: 888px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.fv__description {
  text-shadow: 0px 0px 30px #FFF;
  font-family: "Kiwi Maru", serif;
  font-size: 14px;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .fv__description {
    font-size: 24px;
    font-weight: 500;
  }
}
.fv__title {
  display: inline-block;
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .fv__title {
    margin-top: 24px;
  }
}
.fv__imagebox {
  position: relative;
  margin-top: 10px;
  height: 522px;
  padding-bottom: 11px;
}
.fv__message-en {
  position: absolute;
  top: 7px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .fv__message-en {
    top: -10px;
    left: 36px;
  }
}
.fv__message-en img {
  width: 142px;
}
@media screen and (min-width: 900px) {
  .fv__message-en img {
    width: 244px;
  }
}
.fv__message-ja {
  position: absolute;
  top: 0px;
  right: 25px;
}
@media screen and (min-width: 900px) {
  .fv__message-ja {
    top: 8px;
    right: 127px;
  }
}
.fv__message-ja img {
  width: 110px;
}
@media screen and (min-width: 900px) {
  .fv__message-ja img {
    width: 180px;
  }
}
.fv__smartphone {
  position: absolute;
  top: 103px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
}
@media screen and (min-width: 900px) {
  .fv__smartphone {
    width: 250px;
    top: 24px;
  }
}
.fv__smartphone img {
  width: 200px;
}
@media screen and (min-width: 900px) {
  .fv__smartphone img {
    width: 250px;
  }
}
.fv__food {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 900px) {
  .fv__food {
    bottom: -27px;
  }
}
.fv__food img {
  width: 90px;
}
@media screen and (min-width: 900px) {
  .fv__food img {
    width: 212px;
  }
}
.fv__cats {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 900px) {
  .fv__cats {
    bottom: -71px;
  }
}
.fv__cats picture img {
  width: 107px;
}
@media screen and (min-width: 900px) {
  .fv__cats picture img {
    width: 233px;
  }
}

/*****************************************
about
*/
.about {
  margin-top: 32px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .about {
    margin-top: 107px;
  }
}
.about__images {
  position: absolute;
}
.about__img-oblique {
  display: none;
}
@media screen and (min-width: 1200px) {
  .about__img-oblique {
    display: block;
    top: -20px;
    right: calc(50% + 527px);
    width: 250px;
  }
}
.about__img-left {
  top: 395px;
  right: calc(50% + 128px);
  overflow: hidden;
  width: 200px;
  max-width: 100%;
  z-index: 10;
}
@media screen and (min-width: 600px) {
  .about__img-left {
    right: calc(50% + 200px);
  }
}
@media screen and (min-width: 900px) {
  .about__img-left {
    right: calc(50% + 360px);
    width: 480px;
    top: 75px;
  }
}
@media screen and (min-width: 1200px) {
  .about__img-left {
    right: calc(50% + 614px);
  }
}
.about__img-stairs {
  top: 711px;
  width: 138px;
  left: 0;
  overflow: hidden;
  z-index: 9;
}
@media screen and (min-width: 600px) {
  .about__img-stairs {
    width: 200px;
    left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .about__img-stairs {
    width: 427px;
    top: 322px;
    left: calc(50% - 860px);
  }
}
.about__img-pawpads {
  width: 54px;
  max-width: 100%;
  top: -10px;
  left: calc(50% + 133px);
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .about__img-pawpads {
    left: calc(50% + 230px);
  }
}
@media screen and (min-width: 768px) {
  .about__img-pawpads {
    left: calc(50% + 300px);
  }
}
@media screen and (min-width: 1200px) {
  .about__img-pawpads {
    width: 100px;
    top: -79px;
    left: calc(50% + 489px);
  }
}
.about__img-right {
  position: absolute;
  top: 273px;
  left: calc(50% + 128px);
  overflow: hidden;
  width: 200px;
  max-width: 100%;
}
@media screen and (min-width: 600px) {
  .about__img-right {
    left: calc(50% + 200px);
  }
}
@media screen and (min-width: 900px) {
  .about__img-right {
    left: calc(50% + 360px);
    width: 480px;
    top: 75px;
  }
}
@media screen and (min-width: 1200px) {
  .about__img-right {
    left: calc(50% + 560px);
  }
}
.about__img-goods {
  width: 48px;
  max-width: 100%;
  bottom: 217.67px;
  left: calc(50% + 118px);
  z-index: 11;
}
@media screen and (min-width: 600px) {
  .about__img-goods {
    left: calc(50% + 240px);
    bottom: 350px;
    width: 101px;
  }
}
@media screen and (min-width: 900px) {
  .about__img-goods {
    bottom: 435.67px;
    left: calc(50% + 330px);
  }
}
@media screen and (min-width: 1200px) {
  .about__img-goods {
    left: calc(50% + 505px);
    bottom: 591.67px;
  }
}
.about__img-goods-2 {
  width: 133px;
  max-width: 100%;
  bottom: 158.67px;
  left: calc(50% - 3px);
}
@media screen and (min-width: 600px) {
  .about__img-goods-2 {
    left: calc(50% + 200px);
    width: 280px;
  }
}
@media screen and (min-width: 900px) {
  .about__img-goods-2 {
    bottom: 229.67px;
    left: calc(50% + 200px);
    width: 308px;
  }
}
@media screen and (min-width: 1200px) {
  .about__img-goods-2 {
    left: calc(50% + 373px);
    bottom: 385.67px;
  }
}
@media screen and (min-width: 1200px) {
  .about__img-goods-2 img {
    width: 100%;
  }
}
.about__img-wave {
  display: none;
  overflow: hidden;
  top: 607px;
  width: 873.922px;
  height: 46.021px;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .about__img-wave {
    display: block;
    left: calc(50% + 380px);
  }
}
@media screen and (min-width: 1200px) {
  .about__img-wave {
    left: calc(50% + 448px);
  }
}
.about__inner {
  z-index: 11;
  text-align: center;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  max-width: 375px;
  margin-bottom: 139.67px;
}
@media screen and (min-width: 600px) {
  .about__inner {
    max-width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .about__inner {
    max-width: 600px;
    margin-bottom: 167px;
  }
}
@media screen and (min-width: 1200px) {
  .about__inner {
    max-width: 908px;
  }
}
.about__inner::after {
  position: absolute;
  content: "";
  bottom: -36px;
  left: 50%;
  height: 36px;
  width: 100px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/about__img-arrow.png) no-repeat center center/cover;
}
@media screen and (min-width: 1200px) {
  .about__inner::after {
    width: 140px;
    height: 50px;
    bottom: -49px;
  }
}
.about__contents {
  border-radius: 24px;
  background: #fff;
  padding-block: 40px;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 600px) {
  .about__contents {
    max-width: 400px;
  }
}
@media screen and (min-width: 900px) {
  .about__contents {
    max-width: 600px;
  }
}
@media screen and (min-width: 1200px) {
  .about__contents {
    padding-inline: 114px;
    max-width: 848px;
    border-radius: 40px;
    padding-top: 42px;
  }
}
.about__contents::before, .about__contents::after {
  content: "";
  position: absolute;
  width: 87px;
  height: 68px;
  top: 33px;
}
@media screen and (min-width: 1200px) {
  .about__contents::before, .about__contents::after {
    width: 134px;
    height: 100px;
  }
}
.about__contents::before {
  right: calc(50% + 47px);
  background: url(../img/about__img-pic1.png) no-repeat center center/cover;
}
@media screen and (min-width: 1200px) {
  .about__contents::before {
    width: 148px;
    height: 117px;
    top: 40px;
    right: calc(50% + 192px);
  }
}
.about__contents::after {
  top: 32px;
  left: calc(50% + 59.78px);
  background: url(../img/about__img-pic2.png) no-repeat center center/cover;
}
@media screen and (min-width: 1200px) {
  .about__contents::after {
    width: 148px;
    height: 117px;
    top: 49px;
    left: calc(50% + 192px);
  }
}
.about__contents-lead {
  margin-block: 23px;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .about__contents-lead {
    font-size: 16px;
    margin-block: 32px;
  }
}
.about__contents-text {
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 900px) {
  .about__contents-text {
    font-size: 16px;
  }
}
.about__contents-text:not(:first-child) {
  margin-top: 19px;
}
@media screen and (min-width: 1200px) {
  .about__contents-text:not(:first-child) {
    margin-top: 27px;
  }
}
.about__contents-gift {
  margin-top: 22px;
  font-size: 14px;
  font-weight: 700;
  padding-block: 8px 7px;
  border-bottom: 2px dashed #9ED0E0;
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .about__contents-gift {
    font-size: 20px;
    padding-block: 12px 11px;
    margin-top: 33px;
  }
}
.about__contents-btn {
  margin-top: 25px;
  display: block;
}
@media screen and (min-width: 1200px) {
  .about__contents-btn {
    margin-top: 32px;
  }
}
.about__bg-box {
  position: absolute;
  display: none;
}
@media screen and (min-width: 1200px) {
  .about__bg-box {
    display: block;
  }
}

.about__bottom {
  padding-top: 37px;
}
@media screen and (min-width: 900px) {
  .about__bottom {
    padding-top: 95px;
  }
}

.about__slider-top {
  z-index: 3;
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
  width: 375px;
}
@media screen and (min-width: 900px) {
  .about__slider-top {
    width: 919px;
    top: -95px;
  }
}
.about__slider-top img {
  width: 354.642px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .about__slider-top img {
    width: 890px;
    max-width: 100%;
  }
}

.about__slider {
  position: relative;
  z-index: 15;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.about-swiper__slide {
  overflow: hidden;
}

/*****************************************
step
*/
.step {
  margin-top: 28px;
  padding-bottom: 17.67px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .step {
    margin-top: 120px;
    margin-bottom: 120px;
  }
}
.step__images {
  position: absolute;
}
.step__decoration-map {
  width: 137px;
  top: 34px;
  right: calc(50% + 51px);
}
@media screen and (min-width: 900px) {
  .step__decoration-map {
    width: 400px;
    top: -62px;
    right: calc(50% + 200px);
  }
}
@media screen and (min-width: 1200px) {
  .step__decoration-map {
    width: 460px;
    top: -62px;
    right: calc(50% + 260px);
  }
}
.step__decoration-cat-1 {
  width: 105px;
  top: 34px;
  left: calc(50% + 58px);
}
@media screen and (min-width: 900px) {
  .step__decoration-cat-1 {
    width: 200px;
    top: -28px;
    left: calc(50% + 200px);
  }
}
@media screen and (min-width: 1200px) {
  .step__decoration-cat-1 {
    width: 238px;
    top: -28px;
    left: calc(50% + 287px);
  }
}
.step__decoration-cat-2 {
  overflow: hidden;
  width: 94px;
  top: 39px;
  left: calc(50% + 124px);
}
@media screen and (min-width: 900px) {
  .step__decoration-cat-2 {
    width: 179px;
    top: -28px;
    left: calc(50% + 330px);
  }
}
@media screen and (min-width: 1200px) {
  .step__decoration-cat-2 {
    width: 214px;
    top: -19px;
    left: calc(50% + 437px);
  }
}
.step__decoration-pawpads-1 {
  width: 55px;
  top: 583px;
  right: calc(50% + 112px);
}
@media screen and (min-width: 900px) {
  .step__decoration-pawpads-1 {
    width: 80px;
    top: 579px;
    right: calc(50% + 450px);
  }
}
@media screen and (min-width: 1200px) {
  .step__decoration-pawpads-1 {
    width: 100px;
    top: 579px;
    right: calc(50% + 620px);
  }
}
.step__decoration-pawpads-2 {
  width: 55px;
  top: 108px;
  left: calc(50% + 111px);
}
@media screen and (min-width: 900px) {
  .step__decoration-pawpads-2 {
    width: 80px;
    top: 150px;
    left: calc(50% + 450px);
  }
}
@media screen and (min-width: 1200px) {
  .step__decoration-pawpads-2 {
    width: 100px;
    top: 147px;
    left: calc(50% + 618px);
  }
}
.step__decoration-pawpads-3 {
  width: 55px;
  top: 913px;
  left: calc(50% + 112px);
}
.step__inner {
  padding-top: 32px;
  padding-bottom: 20px;
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .step__inner {
    padding-top: 0;
    max-width: 1072px;
  }
}
.step__contents {
  margin-left: auto;
  margin-right: auto;
}
.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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 34px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .step__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 7px;
  }
}
@media screen and (min-width: 1200px) {
  .step__boxes {
    gap: 40px;
    max-width: 1024px;
    margin-top: 39px;
  }
}
.step__box {
  text-align: center;
  padding-bottom: 16px;
}
@media screen and (min-width: 900px) {
  .step__box {
    max-width: 290px;
  }
}
@media screen and (min-width: 1200px) {
  .step__box {
    max-width: 320px;
  }
}
.step__box:first-of-type {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .step__box:first-of-type {
    margin-left: -5px;
  }
}
.step__box:first-of-type::after {
  position: absolute;
  content: "";
  background: url("../img/step-line-sp.png") no-repeat center center/contain;
  width: 9px;
  height: 64px;
  top: calc(100% - 15px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: transparent;
}
@media screen and (min-width: 900px) {
  .step__box:first-of-type::after {
    background: url("../img/step-line-pc.png") no-repeat center center/contain;
    width: 83px;
    height: 24px;
    top: 134px;
    left: calc(50% + 144px);
  }
}
@media screen and (min-width: 1200px) {
  .step__box:first-of-type::after {
    width: 113px;
    height: 24px;
    top: 204px;
    left: calc(50% + 152px);
  }
}
.step__box:nth-of-type(2) {
  position: relative;
}
@media screen and (min-width: 1200px) {
  .step__box:nth-of-type(2) {
    padding-top: 69px;
    margin-left: -5px;
  }
}
.step__box:nth-of-type(2)::after {
  position: absolute;
  content: "";
  background: url("../img/step-line-sp.png") no-repeat center center/contain;
  width: 9px;
  height: 64px;
  top: calc(100% - 15px);
  background-color: transparent;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .step__box:nth-of-type(2)::after {
    background: url("../img/step-line-pc.png") no-repeat center center/contain;
    width: 83px;
    height: 24px;
    top: 134px;
    left: calc(50% + 144px);
  }
}
@media screen and (min-width: 1200px) {
  .step__box:nth-of-type(2)::after {
    width: 113px;
    height: 24px;
    top: 204px;
    left: calc(50% + 160px);
  }
}
.step__box-img {
  width: 196px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1200px) {
  .step__box-img {
    width: 280px;
  }
}
.step__box-body {
  margin-top: 16px;
}
@media screen and (min-width: 1200px) {
  .step__box-body {
    margin-top: 24px;
  }
}
.step__box-lead {
  margin-top: 16px;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .step__box-lead {
    font-size: 20px;
  }
}
.step__box-text {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .step__box-text {
    font-size: 16px;
  }
}
.step__box-bottom {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  max-width: 226px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .step__box-bottom {
    max-width: 254px;
    margin-top: 18px;
  }
}
.step__box-icon-instagram {
  width: 20px;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .step__box-icon-instagram {
    width: 24px;
  }
}
.step__box-bottom-text {
  font-size: 14px;
  font-weight: 700;
  width: calc(100% - 28px);
}
@media screen and (min-width: 768px) {
  .step__box-bottom-text {
    font-size: 16px;
  }
}
.step__btn {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .step__btn {
    margin-top: 34px;
  }
}
.step__btn .btn {
  font-size: 16px;
}
@media screen and (min-width: 1200px) {
  .step__btn .btn {
    font-size: 20px;
  }
}

/*****************************************
prizes
*/
.prizes {
  padding-top: 20px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .prizes {
    padding-top: 0;
  }
}
.prizes__inner {
  padding-left: 0;
  padding-right: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1200px) {
  .prizes__inner {
    max-width: 1024px;
  }
}
.prizes__contents {
  padding-left: 16px;
  padding-right: 17px;
  padding-bottom: 36.67px;
  position: relative;
  z-index: 99;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .prizes__contents {
    padding-left: 56px;
    padding-right: 56px;
    padding-bottom: 54.67px;
  }
}
.prizes__contents::before {
  position: absolute;
  content: "";
  background: url("../img/prizes__halfcircle-sp.png") no-repeat center center/cover;
  top: -20px;
  left: 51.5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  width: 238px;
  height: 83px;
}
@media screen and (min-width: 1200px) {
  .prizes__contents::before {
    background: url("../img/prizes__halfcircle-pc.png") no-repeat center center/cover;
    width: 378px;
    height: 150px;
    top: -30px;
    left: 50%;
  }
}
.prizes__contents::after {
  position: absolute;
  content: "";
  background: #fff;
  height: calc(100% - 63px);
  border-radius: 24px;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .prizes__contents::after {
    height: calc(100% - 119px);
  }
}
.prizes__lead-text {
  margin-top: 16px;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (min-width: 1200px) {
  .prizes__lead-text {
    font-size: 16px;
    margin-top: 40px;
  }
}
.prizes__boxes {
  margin-top: 34px;
  margin-bottom: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 24px;
}
@media screen and (min-width: 1200px) {
  .prizes__boxes {
    margin-bottom: 40px;
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(6, 1fr);
    grid-row-gap: 63px;
    grid-column-gap: 28px;
    margin-top: 65px;
  }
}
.prizes__box {
  width: calc(50% - 11.5px);
  border-radius: 8px;
  padding-top: 24px;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  .prizes__box {
    width: calc(50% - 16.5px);
  }
}
@media screen and (min-width: 1200px) {
  .prizes .prizes__box:nth-of-type(1) {
    grid-area: 1/1/2/4;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .prizes .prizes__box:nth-of-type(2) {
    grid-area: 1/4/2/7;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .prizes .prizes__box:nth-of-type(3) {
    grid-area: 2/1/3/3;
    width: calc(100% - 2.6666666667px);
  }
}
@media screen and (min-width: 1200px) {
  .prizes .prizes__box:nth-of-type(4) {
    grid-area: 2/3/3/5;
    width: calc(100% - 2.6666666667px);
    margin-left: 1px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes .prizes__box:nth-of-type(5) {
    grid-area: 2/5/3/7;
    grid-row-start: 2;
    grid-column-start: 5;
    grid-row-end: 3;
    grid-column-end: 7;
    width: calc(100% - 2.6666666667px);
    margin-left: 3px;
  }
}
.prizes .prizes-box {
  position: relative;
  border-radius: 8px;
  margin-top: -10px;
}
@media screen and (min-width: 1200px) {
  .prizes .prizes-box {
    border-radius: 24px;
  }
}
.prizes .prizes-box:hover .prizes-box__img img {
  -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;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  z-index: 4;
  overflow: hidden;
}
.prizes .prizes-box:hover .background {
  fill: #9ED0E0;
}
.prizes .prizes-box__number {
  position: absolute;
  top: -24px;
  left: 50%;
  z-index: 2;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 48px;
}
@media screen and (min-width: 1200px) {
  .prizes .prizes-box__number {
    width: 100px;
    top: -51px;
  }
}
.prizes .prizes-box__number img {
  width: 48px;
}
@media screen and (min-width: 1200px) {
  .prizes .prizes-box__number img {
    width: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes .prizes-box .number-pc-small {
    width: 80px;
    top: -40px;
  }
}
.prizes .prizes-box__inner {
  position: relative;
  background-color: #f5f5f5;
  border-radius: 8px;
}
@media screen and (min-width: 1200px) {
  .prizes .prizes-box__inner {
    border-radius: 24px;
  }
}
.prizes .prizes-box figure {
  display: block;
}
.prizes .prizes-box__img {
  display: block;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media screen and (min-width: 1200px) {
  .prizes .prizes-box__img {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}
.prizes .prizes-box__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -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: 1200px) {
  .prizes .prizes-box .h-padding {
    padding-top: 43px;
    padding-bottom: 44px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes .prizes-box .h-text {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .prizes .prizes-box .h-padding-2 {
    padding-top: 27px;
    padding-bottom: 28px;
  }
}
.prizes .prizes-box .h-padding-3 {
  padding-top: 9px;
  padding-bottom: 10px;
}
@media screen and (min-width: 900px) {
  .prizes .prizes-box .h-padding-3 {
    padding-top: 16px;
    padding-bottom: 14px;
  }
}
.prizes .prizes-box__heading {
  min-height: 70px;
  font-size: 12px;
  font-weight: 700;
  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;
  min-height: 56px;
  padding-top: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .prizes .prizes-box__heading {
    font-size: 20px;
    padding-top: 27px;
    padding-left: 30px;
    padding-bottom: 30px;
    padding-right: 30px;
  }
}
.prizes .prizes-box .prizes-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
}
.prizes .prizes-box .prizes-button:hover {
  border-color: #9ED0E0;
}
@media screen and (min-width: 1200px) {
  .prizes .prizes-box .prizes-button {
    border-radius: 24px;
  }
}
.prizes .prizes-box svg {
  position: absolute;
  right: -2px;
  bottom: -2px;
  display: block;
  width: 36px;
  height: 36px;
  border-bottom-right-radius: 8px;
}
@media screen and (min-width: 1200px) {
  .prizes .prizes-box svg {
    width: 100px;
    height: 100px;
    border-bottom-right-radius: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes .p-icon svg {
    width: 64px;
    height: 64px;
  }
}
.prizes__dialogs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
}
.prizes__dialogs .prizes-modal {
  position: fixed;
  z-index: 110;
  top: 50%;
  left: 50%;
  right: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 336px;
  max-width: calc(100% - 20px);
  height: 480px;
  max-height: calc(100% - 20px);
  padding: 0;
  padding-right: 20px;
  padding-bottom: 19px;
  padding-left: 20px;
  text-align: center;
  background: #fff;
  border: none;
  border-radius: 24px;
}
@media screen and (min-width: 900px) {
  .prizes__dialogs .prizes-modal {
    width: 420px;
    height: 600px;
  }
}
.prizes__dialogs .prizes-modal__img {
  width: calc(100% + 40px);
  margin-left: -20px;
}
.prizes__dialogs .prizes-modal__img img {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  width: 100%;
}
.prizes__modal-head {
  margin-top: 39px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .prizes__modal-head {
    margin-top: 32px;
    font-size: 20px;
  }
}
.prizes__modal-text {
  color: #000;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .prizes__modal-text {
    font-size: 16px;
  }
}
.prizes__modal-button {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .prizes__modal-button {
    margin-top: 24px;
  }
}
.prizes__modal-button button {
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 6px 24px;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  /* JP/Text 16px Bold */
  font-size: 16px;
  font-weight: 700;
  border-radius: 40px;
  border: 2px solid var(--LP-Blown, #4A3636);
  background: var(--LP-White, #FFF);
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
}
.prizes__cover-background {
  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: -45px;
}

@media screen and (min-width: 900px) {
  .prizes__cover-background {
    display: block;
    margin-top: 0;
  }
}
.prizes__cover-background img {
  display: block;
  width: 100%;
  min-width: 580px;
}

@media screen and (min-width: 900px) {
  .prizes__cover-background img {
    min-height: 600px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center bottom;
    object-position: center bottom;
  }
}
.prizes__modal-text {
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .prizes__modal-text {
    font-size: 16px;
    font-weight: 400;
  }
}

/*****************************************
spots
*/
.spots {
  position: relative;
  padding-top: 45.7px;
  padding-bottom: 45.7px;
  margin-top: -45.7px;
}
.spots .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 56px;
  padding: 10px 40px 12px 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}

@media screen and (min-width: 900px) {
  .spots {
    padding-top: 120px;
    padding-bottom: 120px;
    margin-top: -120px;
  }
}
.spots::before,
.spots::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 45.7px;
  content: "";
  background-color: transparent;
  background-repeat: repeat-x;
  background-position: left -3px center;
  background-size: contain;
}

@media screen and (min-width: 900px) {
  .spots::before,
  .spots::after {
    height: 120px;
    background-position: left center;
  }
}
.spots::before {
  top: 1px;
  background-image: url(../img/bg_wavearea.png), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
}

@media screen and (min-width: 900px) {
  .spots::before {
    background-image: url(../img/bg_wavearea-pc.png), linear-gradient(to bottom, transparent 33px, #67b0c7 33px);
  }
}
.spots::after {
  bottom: 1px;
  background-image: url(../img/img_bg_wave-bottom.png), linear-gradient(to top, transparent 13px, #67b0c7 13px);
  background-position: left -6px center;
}

@media screen and (min-width: 900px) {
  .spots::after {
    background-image: url(../img/bg_wavearea-2-pc.png), linear-gradient(to top, transparent 33px, #67b0c7 33px);
  }
}
.spots__decoration-pawpads {
  position: absolute;
  bottom: 120px;
  left: 0;
  width: 80px;
}

@media screen and (min-width: 1200px) {
  .spots__decoration-pawpads {
    bottom: 120px;
    left: calc(50% - 720px);
    width: 100px;
  }
}
.spots__outer {
  padding-bottom: 14.86px;
  background-color: #67b0c7;
}

@media screen and (min-width: 900px) {
  .spots__outer {
    padding-bottom: 2px;
  }
}
.spots__inner {
  padding-left: 20.5px;
  padding-right: 20.5px;
}

@media screen and (min-width: 900px) {
  .spots__inner {
    max-width: 1084px;
    padding-right: 30px;
    padding-left: 30px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 900px) {
  .spots__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-column-gap: 32px;
    -webkit-column-gap: 32px;
            column-gap: 32px;
    padding-left: max(30px, 50% - 512px);
  }
}
.spots__heading-wrap {
  text-align: center;
}

@media screen and (min-width: 900px) {
  .spots__heading-wrap {
    width: 56px;
  }
}
.spots__heading {
  position: relative;
  display: inline-block;
  padding-left: 36px;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
}

@media screen and (min-width: 900px) {
  .spots__heading {
    padding-top: 72px;
    padding-right: 3px;
    padding-left: 3px;
    font-size: 40px;
    letter-spacing: 0.25em;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
  }
}
.spots__heading::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 28px;
  height: 28px;
  content: "";
  background-color: transparent;
  background-image: url(../img/spots-star.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 900px) {
  .spots__heading::before {
    top: 0;
    left: 50%;
    width: 56px;
    height: 56px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.spots__slider {
  margin-top: 25px;
}

@media screen and (min-width: 900px) {
  .spots__slider {
    width: calc(100% - 56px - 32px);
    margin-top: 0;
  }
}
.spots__arrows {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-top: -10px;
  margin-right: auto;
  margin-left: auto;
  display: none;
}

@media screen and (min-width: 1200px) {
  .spots__arrows {
    max-width: 944px;
    margin-top: -32px;
    display: block;
  }
}
.spots__bottom {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .spots__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 40px;
  }
}

.spots__decoration-english {
  display: block;
  width: 254px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1;
}

@media screen and (min-width: 900px) {
  .spots__decoration-english {
    width: 360px;
    margin-top: -45px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__decoration-english {
    width: 494px;
    margin: 0;
  }
}
.spots__text-wrap {
  margin-top: 15px;
}

@media screen and (min-width: 1200px) {
  .spots__text-wrap {
    margin-top: 0;
  }
}
.spots__text {
  font-size: 11.444px;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 600px) {
  .spots__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__text {
    font-size: 16px;
    text-align: right;
  }
}
.spots__button .btn {
  font-size: 16px;
  padding: 6px 21px 8px 21px;
  line-height: 1.6;
  margin-top: 23px;
  height: 40px;
  width: 338px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .spots__button .btn {
    font-size: 20px;
    font-weight: 700;
    height: 56px;
    padding-left: 40px;
    padding-right: 40px;
    width: 443px;
  }
}

@media screen and (min-width: 1200px) {
  .spots__button {
    text-align: right;
  }
}
.spots-swiper__slide {
  height: auto !important;
}

.spots-swiper-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.spots-swiper-arrows__prev,
.spots-swiper-arrows__next {
  position: static !important;
  width: 80px !important;
  height: 80px !important;
  background-color: #ffee56 !important;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px 27px !important;
  border-radius: 50% !important;
  -webkit-transition: background-position 0.3s !important;
  transition: background-position 0.3s !important;
}

.spots-swiper-arrows__prev::after,
.spots-swiper-arrows__next::after {
  content: "" !important;
}

.spots-swiper-arrows__prev {
  background-image: url(../img/spots-arrow-1.png);
}

@media (hover: hover) {
  .spots-swiper-arrows__prev:hover {
    background-position: center left 40%;
  }
}
.spots-swiper-arrows__next {
  background-image: url(../img/spots-arrow-2.png);
}

@media (hover: hover) {
  .spots-swiper-arrows__next:hover {
    background-position: center right 40%;
  }
}
.spots-card {
  height: 100%;
  padding-right: 24px;
  padding-bottom: 30px;
  padding-left: 24px;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
}

@media screen and (min-width: 900px) {
  .spots-card {
    padding-right: 32px;
    padding-bottom: 40px;
    padding-left: 32px;
    border-radius: 24px;
  }
}
.spots-card__image {
  display: block;
  width: calc(100% + 48px);
  margin-left: -24px;
}

@media screen and (min-width: 900px) {
  .spots-card__image {
    width: calc(100% + 64px);
    margin-left: -32px;
  }
}
.spots-card__heading {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 900px) {
  .spots-card__heading {
    margin-top: 25px;
    font-size: 20px;
  }
}
.spots-card__text {
  margin-top: 16px;
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .spots-card__text {
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .spots-card__text {
    margin-top: 25px;
  }
}
.spots-text-decoration-english {
  font-family: "Josefin Sans", sans-serif;
  font-size: 72px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  color: transparent;
  letter-spacing: 7.2px;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 1.14px;
}

@media screen and (min-width: 900px) {
  .spots-text-decoration-english {
    -webkit-text-stroke-width: 2px;
    font-size: 78px;
  }
}
@media screen and (min-width: 1200px) {
  .spots-text-decoration-english {
    font-size: 140px;
  }
}
/*****************************************
qa
*/
.qa {
  margin-top: 46px;
}
@media screen and (min-width: 900px) {
  .qa {
    margin-top: 117px;
  }
}
.qa__inner {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .qa__inner {
    max-width: 1072px;
  }
}
.qa__boxes {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .qa__boxes {
    gap: 25px;
    margin-top: 40px;
  }
}
.qa__box {
  border: 2px solid #4A3636;
  border-radius: 12px;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .qa__box {
    border-radius: 16px;
  }
}
.qa__box-q {
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 14px 10px 14px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .qa__box-q {
    padding: 22px 22px 18px 22px;
  }
}
.qa__box-q.is-active .qa__box-toggle::before {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.qa__box-q-icon {
  margin-top: -9px;
}
.qa__box-q-icon img {
  width: 22px;
}
@media screen and (min-width: 900px) {
  .qa__box-q-icon img {
    width: 25px;
  }
}
.qa__box-q-text {
  font-size: 14px;
  font-weight: 700;
  color: #4A3636;
  text-align: left;
  margin-left: 12px;
  margin-right: 12px;
}
@media screen and (min-width: 900px) {
  .qa__box-q-text {
    font-size: 20px;
    margin-left: 16px;
    margin-right: 16px;
    margin-left: 19px;
  }
}
.qa__box-toggle {
  height: 26.18px;
  width: 26.18px;
  background: #9ED0E0;
  border-radius: 50%;
  position: relative;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .qa__box-toggle {
    width: 48px;
    height: 48px;
  }
}
.qa__box-toggle::before, .qa__box-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19px;
  height: 3px;
  content: "";
  background: #fff;
  border-radius: 50px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 900px) {
  .qa__box-toggle::before, .qa__box-toggle::after {
    width: 19px;
    height: 3px;
  }
}
.qa__box-toggle::before {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  /* 最初は縦線 */
}
.qa__box-toggle::after {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  /* 最初は横線 */
}
.qa__box-body {
  background: #F5F5F5;
  padding: 16px;
  border-radius: 12px;
  display: none;
  padding-bottom: 14px;
}
@media screen and (min-width: 900px) {
  .qa__box-body {
    padding: 28px;
    padding-left: 21px;
    padding-bottom: 23px;
  }
}
.qa__box-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.qa__box-a-icon {
  margin-top: -6px;
  width: 17px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .qa__box-a-icon {
    width: 23px;
  }
}
.qa__box-a-icon img {
  width: 23px;
}
.qa__box-a-text {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .qa__box-a-text {
    font-size: 16px;
  }
}

/*****************************************
entry
*/
.entry {
  margin-top: 30.67px;
}
@media screen and (min-width: 900px) {
  .entry {
    margin-top: 121px;
  }
}
@media screen and (min-width: 900px) {
  .entry__inner {
    max-width: 1072px;
    margin-left: auto;
    margin-right: auto;
  }
}
.entry__contents {
  padding-right: 15.5px;
  padding-bottom: 18px;
  padding-left: 14px;
  padding-top: 17px;
  border: 8px solid #FFF;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 900px) {
  .entry__contents {
    padding: 34px 48px 41px 48px;
  }
}
.entry__table {
  margin-top: 21px;
}
@media screen and (min-width: 900px) {
  .entry__table {
    margin-top: 37px;
  }
}
.entry .entry-table {
  text-align: left;
}
.entry .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;
  border-bottom: 1px solid #CCC;
  padding-bottom: 15px;
}
@media screen and (min-width: 900px) {
  .entry .entry-table__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 12px;
  }
}
.entry .entry-table .entry-table__row + .entry-table__row {
  margin-top: 11px;
}
@media screen and (min-width: 900px) {
  .entry .entry-table .entry-table__row + .entry-table__row {
    margin-top: 12px;
  }
}
.entry .entry-table__row:last-child {
  border-bottom: none;
}
.entry .entry-table__header {
  font-size: 14px;
  font-weight: 700;
  position: relative;
  padding-left: 16px;
}
@media screen and (min-width: 900px) {
  .entry .entry-table__header {
    font-size: 16px;
    width: 231px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-left: 30px;
    height: 100%;
  }
}
.entry .entry-table__header::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #9ed0e0;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .entry .entry-table__header::before {
    left: 14px;
  }
}
@media screen and (min-width: 900px) {
  .entry .entry-table__data {
    font-size: 16px;
    max-width: calc(100% - 240px);
  }
}
.entry .entry-table__data-item {
  position: relative;
  padding-left: 18px;
  line-height: 19px;
}
@media screen and (min-width: 900px) {
  .entry .entry-table__data-item {
    padding-left: 23px;
    font-size: 16px;
    line-height: 26px;
  }
}
.entry .entry-table__data-item::before {
  position: absolute;
  content: "・";
  width: 1px;
  height: 1px;
  top: 2px;
  left: 3px;
}
.entry__bottom-bg {
  display: block;
  margin-top: 30px;
}
@media screen and (min-width: 900px) {
  .entry__bottom-bg {
    margin-top: 112px;
  }
}
.entry__bottom-bg img {
  width: 100%;
}

/*****************************************
contact
*/
.contact {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #fff;
}
.contact .link-text {
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .contact .link-text {
    font-size: 16px;
  }
}
.contact__inner {
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}
.contact .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 209px;
  height: 40px;
  padding: 6px 24px 8px 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  /* 25.6px */
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .contact .btn {
    width: 240px;
  }
}

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

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

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

.contact__privacy {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
}

@media screen and (min-width: 900px) {
  .contact__privacy {
    margin-top: 40px;
  }
}
.contact__button {
  padding-bottom: 4px;
  margin-top: 24px;
  text-align: center;
}

@media screen and (min-width: 900px) {
  .contact__button {
    margin-top: 40px;
  }
}
@media screen and (min-width: 900px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.form-field--top-alignment {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form-field__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 900px) {
  .form-field__heading {
    width: 180px;
  }
}
label.form-field__label {
  cursor: pointer;
}

.form-field__label {
  font-size: 14px;
  font-weight: 700;
}

@media screen and (min-width: 600px) {
  .form-field__label {
    font-size: 16px;
  }
}
.form-field__tag {
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background-color: #ce2073;
  border-radius: 4px;
}

@media screen and (min-width: 900px) {
  .form-field__tag {
    margin-bottom: 1px;
  }
}
.form-field__item {
  margin-top: 8px;
}

@media screen and (min-width: 900px) {
  .form-field__item {
    width: calc(100% - 180px - 40px);
    margin-top: 0;
  }
}
.form-text,
.form-textarea {
  width: 100%;
  height: 56px;
  padding: 14.5px 15px;
  font-size: 14px;
  background: #f5f5f5;
  border: none;
  border: 1px solid transparent;
  border-radius: 8px;
}

@media screen and (min-width: 900px) {
  .form-text,
  .form-textarea {
    font-size: 16px;
  }
}
.form-text::-moz-placeholder,
.form-textarea::-moz-placeholder {
  color: #cccccc;
}

.form-text::-webkit-input-placeholder, .form-textarea::-webkit-input-placeholder {
  color: #cccccc;
}

.form-text::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #cccccc;
}

.form-text:-ms-input-placeholder, .form-textarea:-ms-input-placeholder {
  color: #cccccc;
}

.form-text::-ms-input-placeholder, .form-textarea::-ms-input-placeholder {
  color: #cccccc;
}

.form-text::placeholder,
.form-textarea::placeholder {
  color: #cccccc;
}

.form-text:hover,
.form-text:focus,
.form-textarea:hover,
.form-textarea:focus {
  outline: none;
}

.form-text:focus,
.form-textarea:focus {
  background-color: #e9f6f8;
  border-color: #9ed0e0;
}

.form-text.is-error,
.form-textarea.is-error {
  background-color: #fff0f7;
  border-color: #ce2073;
}

.form-textarea {
  height: 160px;
}

@media (hover: hover) {
  .from-radio:hover .from-radio__text::before {
    border-color: #9ed0e0;
  }
}
.from-radio__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.from-radio__input:checked + .from-radio__text {
  font-weight: 700;
}

.from-radio__input:checked + .from-radio__text::after {
  opacity: 1;
}

.from-radio__input:focus + .from-radio__text::before {
  border-color: #9ed0e0;
}

.from-radio__text {
  position: relative;
  padding-left: 32px;
  font-size: 14px;
}

@media screen and (min-width: 900px) {
  .from-radio__text {
    font-size: 16px;
  }
}
.from-radio__text::before,
.from-radio__text::after {
  position: absolute;
  top: 50%;
  content: "";
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.from-radio__text::before {
  left: 0;
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  border: 1px solid transparent;
}

.from-radio__text::after {
  left: 6px;
  width: 12px;
  height: 12px;
  background: #9ed0e0;
  opacity: 0;
}

.form-select {
  position: relative;
  width: 100%;
  height: 56px;
  padding: 14.5px 15px;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url(../img/contact-arrow.png), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat, no-repeat;
  background-position: center right 18.65px, center center;
  background-size: 14.9px 8.78px, cover;
  border: 1px solid transparent;
  border-radius: 8px;
}

@media screen and (min-width: 900px) {
  .form-select {
    font-size: 16px;
  }
}
.form-select:hover,
.form-select:focus {
  outline: none;
}

.form-select:focus {
  border-color: #9ed0e0;
}

.form-select.is-error {
  background-image: url(../img/contact-arrow.png), linear-gradient(to left, #ce2073 52px, #fff0f7 52px);
  border-color: #ce2073;
}

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

@media screen and (min-width: 900px) {
  .form-field__radios {
    height: 56px;
    padding-left: 2px;
  }
}
.form-checkbox {
  cursor: pointer;
}

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

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

.form-checkbox__input:focus + .form-checkbox__text::before {
  border-color: #9ed0e0;
}

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

.form-checkbox__text {
  position: relative;
  padding-left: 36px;
  font-size: 14px;
}

@media screen and (min-width: 900px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before,
.form-checkbox__text::after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

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

.form-checkbox__text::after {
  top: 50%;
  left: 5px;
  width: 14px;
  height: 9px;
  background-image: url(../img/contact-check.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*****************************************
footer
*/
.footer {
  padding-top: 40px;
}
@media screen and (min-width: 900px) {
  .footer {
    padding-top: 120px;
  }
}
.footer__inner {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer__inner {
    max-width: 1072px;
    margin-left: auto;
    margin-right: auto;
  }
}
.footer__sns {
  position: relative;
}
.footer__sns-text {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  line-height: 125%;
}
@media screen and (min-width: 900px) {
  .footer__sns-text {
    font-size: 24px;
  }
}
.footer__sns-list {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__sns-item img {
  max-width: 32px;
}
@media screen and (min-width: 900px) {
  .footer__sns-item img {
    max-width: 40px;
  }
}
.footer__decoration-en {
  margin-left: auto;
  margin-right: auto;
  margin-top: 14px;
}
@media screen and (min-width: 900px) {
  .footer__decoration-en {
    margin-top: 43px;
    max-width: 742px;
  }
}
.footer__decoration-en img {
  max-width: 333px;
}
@media screen and (min-width: 900px) {
  .footer__decoration-en img {
    max-width: 742px;
  }
}
.footer__logo {
  margin-bottom: 30px;
}
@media screen and (min-width: 900px) {
  .footer__logo {
    margin-bottom: 24px;
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .footer__logo {
    text-align: left;
  }
}
.footer__logo img {
  width: 153px;
}
@media screen and (min-width: 900px) {
  .footer__logo img {
    width: 183px;
  }
}
.footer .address-box {
  margin-top: -2px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
  max-width: 383px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
}
@media screen and (min-width: 900px) {
  .footer .address-box {
    max-width: 588px;
  }
}
@media screen and (min-width: 1200px) {
  .footer .address-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    max-width: 1024px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 400px;
    gap: 0px;
    margin-top: -4px;
  }
}
.footer .iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 81%;
  /* = height ÷ width × 100*/
  height: 0;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .footer .iframe-wrap {
    padding-top: 420px;
  }
}
@media screen and (min-width: 1200px) {
  .footer .iframe-wrap {
    padding-top: 400px;
    width: 50%;
    display: inline-block;
  }
}
.footer .iframe-wrap iframe {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .footer .iframe-wrap iframe {
    aspect-ratio: 512/400;
    border-top-left-radius: 0px;
    border-bottom-right-radius: 16px;
  }
}
.footer .address-info {
  padding: 0 24px 30px 24px;
}
@media screen and (min-width: 900px) {
  .footer .address-info {
    padding-top: 60px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    max-width: 440px;
  }
}
@media screen and (min-width: 1200px) {
  .footer .address-info {
    height: 100%;
    padding: 106px 61.5px;
    margin-right: 0;
    margin-left: 0;
    max-width: 512px;
  }
}
.footer .address-info-row {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.footer .address-info-row:first-child {
  margin-top: 0;
  /* 最初の要素にはマージンを適用しない */
}
.footer .address-info .address-info-row + .address-info-row {
  margin-top: 8px;
  /* 2番目以降の要素にマージンを適用 */
}
@media screen and (min-width: 900px) {
  .footer .address-info .address-info-row + .address-info-row {
    margin-top: 12px;
  }
}
.footer .address-info-item {
  width: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 700;
  position: relative;
  padding-left: 19px;
}
@media screen and (min-width: 900px) {
  .footer .address-info-item {
    width: 116px;
    padding-left: 16px;
    font-size: 16px;
  }
}
.footer .address-info-item::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ED0E0;
  left: 3px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .footer .address-info-item::before {
    left: 0;
  }
}
@media screen and (min-width: 900px) {
  .footer .address-info-description {
    font-size: 16px;
  }
}
.footer .page-top {
  padding-top: 24px;
  z-index: 99;
}
@media screen and (min-width: 900px) {
  .footer .page-top {
    position: fixed;
    bottom: 88px;
    right: 40px;
  }
}
.footer .page-top img {
  max-width: 75px;
}
@media screen and (min-width: 900px) {
  .footer .page-top img {
    max-width: 100px;
  }
}
.footer__bottom {
  position: relative;
  padding-top: 45.7px;
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .footer__bottom {
    margin-top: 120px;
    padding-top: 120px;
  }
}
.footer__bottom::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 45.7px;
  content: "";
  background: url(../img/bg_wavearea.png);
  background-repeat: repeat-x;
  background-position: left 2px center;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .footer__bottom::before {
    width: 100%;
    height: 120px;
    background: url(../img/bg_wavearea-pc.png);
  }
}
.footer__copyright {
  text-align: center;
  color: #fff;
  font-size: 10px;
  display: block;
  background: #67B0C7;
  padding-bottom: 25px;
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    font-size: 14px;
    padding-bottom: 32px;
  }
}