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

.body.is-fixed {
  overflow: hidden;
}

.wrapper {
  overflow: hidden;
}

.button {
  display: inline-block;
  padding-top: 4px;
  padding-right: 22px;
  padding-bottom: 6px;
  padding-left: 22px;
  font-size: 16px;
  font-weight: 700;
  color: #4a3636;
  text-align: center;
  cursor: pointer;
  background: #fff;
  border: 2px solid #4a3636;
  border-radius: 40px;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.button:hover {
  background-color: #ffee56;
}
@media screen and (min-width: 900px) {
  .button {
    padding-top: 8px;
    padding-right: 37px;
    padding-bottom: 10px;
    padding-left: 37px;
    font-size: 20px;
    border-width: 3px;
  }
}

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

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

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 900px) {
  .header__inner {
    padding-right: 24px;
    padding-left: 24px;
  }
}

.header__logo {
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.header__logo a img {
  width: 210px;
  display: block;
}
@media screen and (min-width: 900px) {
  .header__logo a img {
    width: 183px;
  }
}

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

@media screen and (min-width: 1200px) {
  .header__link:hover {
    color: #9ed0e0;
    text-decoration: underline;
    text-decoration-color: #9ed0e0;
  }
}

.header__button {
  text-align: center;
  padding-top: 40px;
}
@media screen and (min-width: 1200px) {
  .header__button {
    margin-left: 4px;
    padding-top: 0;
  }
}
@media screen and (min-width: 900px) {
  .header__button .button {
    font-size: 14px;
  }
}

.header__open {
  margin-left: auto;
  line-height: 0;
}
@media screen and (min-width: 1200px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 32px;
  height: 24px;
  position: relative;
}
.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::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__bar {
  position: absolute;
  width: 32px;
  height: 3px;
  left: 0;
  background: #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: inherit;
  border-radius: 6px;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
  width: 25.6px;
}
.drawer-icon__bar:nth-child(2) {
  top: 12px;
}
.drawer-icon__bar:nth-child(3) {
  top: 24px;
}

.drawer-content {
  position: fixed;
  top: 64px;
  left: 0;
  z-index: 999;
  width: 100%;
  height: calc(100dvh - 64px);
  padding-top: 59px;
  padding-bottom: 60px;
  overflow-y: auto;
  background: #fff;
}
.drawer-content.is-checked {
  display: block;
}
@media screen and (min-width: 1200px) {
  .drawer-content {
    display: none;
  }
}

.drawer-content__menu {
  padding: 82px 114px;
}

.drawer-content__link {
  display: block;
  font-size: 14px;
  color: #4a3636;
  font-weight: 400;
  text-align: center;
}
.drawer-content__link:hover {
  color: #9ed0e0;
  text-decoration: underline;
  text-decoration-color: #9ed0e0;
}
.drawer-content__link:nth-child(n+2) {
  padding-top: 40px;
}

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

.fv_bg__image {
  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__image {
    height: calc(100% - 96px);
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
  }
}
.fv_bg__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.fv__inner {
  position: relative;
  width: 100%;
  max-width: 335px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .fv__inner {
    max-width: 848px;
  }
}

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

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

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

.fv__decoration--smart-phone {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 2;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .fv__decoration--smart-phone {
    bottom: 15px;
  }
}

.decoration--smart-phone {
  width: 200px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .decoration--smart-phone {
    width: 250px;
  }
}

.fv__decoration--smart-phone__image {
  position: relative;
}
.fv__decoration--smart-phone__image img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.decoration--smart-phone__wrap {
  position: absolute;
  top: calc(50% - 3px);
  left: 50%;
  width: calc(100% - 40px);
  overflow: hidden;
  text-align: center;
  background: #fff;
  border-radius: 12.8px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 900px) {
  .decoration--smart-phone__wrap {
    top: calc(50% - 6px);
    width: calc(100% - 50px);
    border-radius: 16px;
  }
}

.decoration--smart-phone__heading {
  padding: 6px 9.6px;
  font-size: 12.8px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
}
@media screen and (min-width: 900px) {
  .decoration--smart-phone__heading {
    padding: 8px 12px;
    font-size: 16px;
  }
}

.decoration--smart-phone__body {
  padding-top: 12.8px;
  padding-bottom: 19.2px;
}
@media screen and (min-width: 900px) {
  .decoration--smart-phone__body {
    padding-top: 14px;
    padding-bottom: 20px;
  }
}

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

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

.decoration--smart-phone__button {
  padding-bottom: 4px;
  margin-top: 12.8px;
}
@media screen and (min-width: 900px) {
  .decoration--smart-phone__button {
    margin-top: 16px;
  }
}

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

.fv__decoration--english-message {
  position: absolute;
  top: 7px;
  left: 0;
  width: 142px;
  max-width: 100%;
}
.fv__decoration--english-message img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .fv__decoration--english-message {
    top: 0;
    right: calc(50% + 143px);
    left: auto;
    width: 244px;
  }
}

.fv__decoration--circle {
  position: absolute;
  top: 0;
  right: 25px;
  width: 110px;
  max-width: 100%;
}
.fv__decoration--circle img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .fv__decoration--circle {
    top: 17px;
    right: auto;
    left: calc(50% + 117px);
    width: 180px;
  }
}

.fv__decoration--sweets {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 3;
  width: 90px;
  max-width: 100%;
}
.fv__decoration--sweets img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .fv__decoration--sweets {
    bottom: -3px;
    width: 212px;
  }
}

.fv__decoration--cats {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .fv__decoration--cats {
    bottom: -44px;
  }
}

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

.decoration--cats1_1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 62px;
}
@media screen and (min-width: 900px) {
  .decoration--cats1_1 {
    left: 0;
    width: 170px;
  }
}

.decoration--cats1_2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 98px;
}
@media screen and (min-width: 900px) {
  .decoration--cats1_2 {
    right: 0;
    bottom: 0;
    width: 100%;
  }
}

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

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

.about__decoration-striped-pattern {
  top: -20px;
  right: calc(50% + 280px);
  width: 250px;
  overflow: hidden;
  border-radius: 24px;
}
@media screen and (min-width: 1200px) {
  .about__decoration-striped-pattern {
    right: calc(50% + 527px);
  }
}

.about__decoration {
  position: absolute;
}

.about__decoration-staircase {
  bottom: 61px;
  left: 0;
  width: 138px;
}
@media screen and (min-width: 600px) {
  .about__decoration-staircase {
    width: 200px;
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-staircase {
    right: calc(50% + 150px);
    bottom: 149px;
    left: auto;
    width: 427px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-staircase {
    right: calc(50% + 432px);
  }
}
.about__decoration-staircase img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.about__top--bg {
  position: absolute;
  top: -9px;
  left: calc(50% + 133px);
  width: 54px;
}
.about__top--bg img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media screen and (min-width: 600px) {
  .about__top--bg {
    top: -20px;
    left: calc(50% + 205px);
  }
}
@media screen and (min-width: 900px) {
  .about__top--bg {
    top: -60px;
    left: calc(50% + 300px);
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .about__top--bg {
    top: -80px;
    left: calc(50% + 490px);
    width: 100px;
  }
}

.about__inner {
  max-width: 375px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 600px) {
  .about__inner {
    max-width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .about__inner {
    max-width: 640px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .about__inner {
    max-width: 908px;
  }
}

.about__contents {
  position: relative;
  padding-top: 40px;
  padding-right: 20px;
  padding-bottom: 36px;
  padding-left: 20px;
  background-color: #fff;
  border-radius: 24px;
  z-index: 20;
}
@media screen and (min-width: 900px) {
  .about__contents {
    border-radius: 40px;
  }
}
.about__contents::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100px;
  height: 36px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  background-color: #cce1e4;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .about__contents::after {
    width: 140px;
    height: 50px;
  }
}

.section__heading {
  position: relative;
  padding-top: 43.33px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .section__heading {
    padding-top: 56px;
  }
}
.section__heading::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 37.33px;
  height: 37.33px;
  content: "";
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .section__heading::before {
    width: 48px;
    height: 48px;
  }
}

.heading--campaign::before {
  background-image: url(../img/about_Icon.png);
}

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

.section__heading--title__ja {
  border-bottom: 6px solid #ffee56;
  line-height: 1.25;
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  font-family: "Kiwi Maru", serif;
  margin-top: 6px;
  padding-bottom: 6px;
}
@media screen and (min-width: 900px) {
  .section__heading--title__ja {
    padding-bottom: 8px;
    margin-top: 8px;
    font-size: 32px;
    border-bottom: 8px solid #ffee56;
  }
}

.about__heading--image1 {
  position: absolute;
  top: 31.87px;
  right: calc(50% + 46.5px);
  width: 80px;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}
.about__heading--image1 img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .about__heading--image1 {
    top: 41px;
    right: calc(50% + 192px);
    width: 134px;
  }
}

.about__heading--image2 {
  position: absolute;
  top: 30px;
  left: calc(50% + 60.15px);
  width: 80px;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
.about__heading--image2 img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .about__heading--image2 {
    top: 46px;
    left: calc(50% + 192px);
    width: 134px;
  }
}

.about__text {
  text-align: center;
}

.about__text--heading-sp {
  margin-top: 24px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .about__text--heading-sp {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .about__text--heading-sp {
    margin-top: 34px;
  }
}

.about__text--heading-pc {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .about__text--heading-pc {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .about__text--heading-pc {
    margin-top: 34px;
  }
}

.about__text--wrap {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .about__text--wrap {
    margin-top: 37px;
  }
}

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

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

.about__text--main {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .about__text--main {
    font-size: 16px;
  }
}
.about__text--main:not(:first-child) {
  margin-top: 1.5em;
}
@media screen and (min-width: 900px) {
  .about__text--main:not(:first-child) {
    margin-top: 1.7em;
  }
}

.about__text--last {
  display: inline-block;
  padding-bottom: 6px;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px dashed #9ed0e0;
}
@media screen and (min-width: 900px) {
  .about__text--last {
    padding-bottom: 10px;
    margin-top: 44px;
    font-size: 20px;
  }
}

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

.about__button {
  display: inline-block;
  padding-top: 4px;
  padding-right: 22px;
  padding-bottom: 6px;
  padding-left: 22px;
  font-size: 16px;
  font-weight: 700;
  color: #4a3636;
  text-align: center;
  cursor: pointer;
  background: #fff;
  border: 2px solid #4a3636;
  border-radius: 40px;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 900px) {
  .about__button {
    padding-top: 8px;
    padding-right: 37px;
    padding-bottom: 10px;
    padding-left: 37px;
    font-size: 20px;
    border: 3px solid #4a3636;
  }
}

.about__deco {
  position: absolute;
}

.about__side-image1 {
  top: 395px;
  right: calc(50% + 128px);
  width: 200px;
  overflow: hidden;
  border-radius: 24px;
}
@media screen and (min-width: 600px) {
  .about__side-image1 {
    right: calc(50% + 180px);
  }
}
@media screen and (min-width: 900px) {
  .about__side-image1 {
    top: 74px;
    right: calc(50% + 360px);
    z-index: 2;
    width: 480px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about__side-image1 {
    right: calc(50% + 614px);
  }
}

.about__side-image2 {
  top: 274px;
  left: calc(50% + 127px);
  width: 200px;
  overflow: hidden;
  border-radius: 24px;
}
@media screen and (min-width: 600px) {
  .about__side-image2 {
    left: calc(50% + 180px);
  }
}
@media screen and (min-width: 900px) {
  .about__side-image2 {
    top: 73px;
    left: calc(50% + 360px);
    width: 480px;
    height: 480px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about__side-image2 {
    left: calc(50% + 560px);
  }
}

.about__bottom_wave {
  bottom: 632px;
  left: calc(50% + 200px);
  width: 874px;
}
@media screen and (min-width: 1200px) {
  .about__bottom_wave {
    left: calc(50% + 448px);
  }
}

.about__goods1 {
  bottom: 217px;
  left: calc(50% + 118px);
  width: 48px;
}
@media screen and (min-width: 600px) {
  .about__goods1 {
    left: calc(50% + 280px);
    width: 80px;
  }
}
@media screen and (min-width: 900px) {
  .about__goods1 {
    top: 601px;
    left: calc(50% + 300px);
    width: 101px;
    height: 101px;
  }
}
@media screen and (min-width: 1200px) {
  .about__goods1 {
    left: calc(50% + 505px);
  }
}

.about__goods2 {
  bottom: 157px;
  left: calc(50% - 3px);
  width: 133px;
}
@media screen and (min-width: 600px) {
  .about__goods2 {
    left: calc(50% + 97px);
    width: 200px;
  }
}
@media screen and (min-width: 900px) {
  .about__goods2 {
    bottom: 290px;
    left: calc(50% + 120px);
    width: 308px;
  }
}
@media screen and (min-width: 1200px) {
  .about__goods2 {
    bottom: 377px;
    left: calc(50% + 374px);
  }
}

.about__bottom {
  position: relative;
  height: 176px;
}
@media screen and (min-width: 900px) {
  .about__bottom {
    height: 258px;
  }
}

.about__bottom--img__en {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 354.64px;
  max-width: 100%;
  z-index: 2;
}
.about__bottom--img__en img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .about__bottom--img__en {
    width: 770px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bottom--img__en {
    width: 890.6px;
  }
}

.about__slider {
  z-index: 2;
  margin-top: -2px;
}
@media screen and (min-width: 900px) {
  .about__slider {
    margin-top: 0;
  }
}

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

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

.about-swiper {
  width: 100%;
  overflow: hidden;
}

.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-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-slide {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  width: auto;
}
.swiper-slide img {
  width: auto;
  border-radius: 12px;
}
@media screen and (min-width: 900px) {
  .swiper-slide img {
    border-radius: 24px;
  }
}

.how-to-enter {
  margin-top: 66px;
}
@media screen and (min-width: 900px) {
  .how-to-enter {
    margin-top: 120px;
  }
}

.how-to-enter__inner {
  position: relative;
}
@media screen and (min-width: 900px) {
  .how-to-enter__inner {
    padding: 0 30px 0 30px;
  }
}

.how-to-enter__deco {
  position: absolute;
}

.how-to-enter__map {
  top: 0;
  right: calc(50% + 39px);
  width: 149px;
}
.how-to-enter__map img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .how-to-enter__map {
    width: 460px;
    height: 628.496px;
    top: -60px;
    right: calc(50% + 260px);
  }
}

.how-to-enter__cats {
  width: 160px;
  height: 194px;
  top: 0;
  left: calc(50% + 58px);
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .how-to-enter__cats {
    width: 433px;
    height: 394px;
    top: -26px;
    left: calc(50% + 285px);
  }
}

.how-to-enter__bg1 {
  width: 55px;
  top: 550px;
  left: 20px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__bg1 {
    width: 100px;
    top: 580px;
    left: 35px;
  }
}

.how-to-enter__bg2 {
  width: 55px;
  height: 120.12px;
  bottom: 370px;
  right: 20px;
}

.heading--how-to-enter {
  max-width: 130px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.heading--how-to-enter::before {
  background-image: url(../img/sp/howtoIcon_sp.svg);
}
@media screen and (min-width: 900px) {
  .heading--how-to-enter::before {
    background-image: url(../img/howto_icon_pc.svg);
  }
}
@media screen and (min-width: 900px) {
  .heading--how-to-enter {
    max-width: 200px;
  }
}

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

.how-to-enter__step:first-of-type {
  position: relative;
}
.how-to-enter__step:nth-of-type(2) {
  position: relative;
}
@media screen and (min-width: 900px) {
  .how-to-enter__step:nth-of-type(2) {
    margin-top: 68px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__step {
    max-width: 320px;
  }
}
.how-to-enter__step:first-of-type::after {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 3;
  width: 7px;
  height: 34px;
  content: "";
  background-color: transparent;
  background-image: url(../img/sp/howto_step_line_sp.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .how-to-enter__step:first-of-type::after {
    left: auto;
    background-image: url(../img/howto_line_pc.png);
    width: 114px;
    height: 24px;
    top: 204px;
    right: -50px;
    -webkit-transform: initial;
            transform: initial;
  }
}
.how-to-enter__step:nth-of-type(2)::after {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 3;
  width: 7px;
  height: 34px;
  content: "";
  background-color: transparent;
  background-image: url(../img/sp/howto_step_line_sp.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .how-to-enter__step:nth-of-type(2)::after {
    background-image: url(../img/howto_line_pc.png);
    width: 114px;
    height: 24px;
    top: 136px;
    right: -57px;
    -webkit-transform: initial;
            transform: initial;
    left: auto;
  }
}

.step-box {
  text-align: center;
}

.step-box__imge {
  width: 196px;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .step-box__imge {
    width: 87.5%;
  }
}

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

.step-box__text {
  margin-top: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 900px) {
  .step-box__text {
    font-size: 16px;
  }
}
.step-box__text .link-text {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.step-box__text .link-text:hover {
  color: #9ed0e0;
  text-decoration: underline;
  text-decoration-color: #9ed0e0;
}

.step-box__follow-button {
  margin-top: 16px;
}

.follow-button {
  position: relative;
  display: inline-block;
  padding-top: 7px;
  padding-right: 11px;
  padding-bottom: 7px;
  padding-left: 39px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background: #fff;
  border: solid 1px transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.follow-button:hover {
  background-color: #ffee56;
}
@media screen and (min-width: 900px) {
  .follow-button {
    padding-left: 44px;
    font-size: 16px;
  }
}
.follow-button::before {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 20px;
  height: 20px;
  content: "";
  background-image: url(../img/sp/howto_Icon_sp.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) {
  .follow-button::before {
    width: 24px;
    height: 24px;
  }
}

.how-to-enter--button {
  padding-bottom: 4px;
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .how-to-enter--button {
    margin-top: 48px;
  }
}

.how-to-enter__button {
  display: inline-block;
  padding-top: 4px;
  padding-right: 22px;
  padding-bottom: 6px;
  padding-left: 22px;
  font-size: 16px;
  font-weight: 700;
  color: #4a3636;
  text-align: center;
  cursor: pointer;
  background: #fff;
  border: 2px solid #4a3636;
  border-radius: 40px;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 900px) {
  .how-to-enter__button {
    padding-top: 8px;
    padding-right: 37px;
    padding-bottom: 10px;
    padding-left: 37px;
    font-size: 20px;
    border-width: 3px;
  }
}

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

.prizes__inner {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .prizes__inner {
    max-width: 1084px;
    padding-right: 30px;
    padding-left: 30px;
  }
}

.prizes__contents {
  position: relative;
  z-index: 2;
  padding-top: 20.3px;
  padding-right: 20px;
  padding-bottom: 30px;
  padding-left: 20px;
}
@media screen and (min-width: 900px) {
  .prizes__contents {
    max-width: 100%;
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 49px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__contents {
    padding-right: 56px;
    padding-left: 56px;
  }
}
.prizes__contents::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: 238px;
  height: 83px;
  background-color: transparent;
  background-image: url(../img/sp/prizes_deco1_sp.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .prizes__contents::before {
    background-image: url(../img/prizes_deco1_pc.png);
    width: 372px;
    height: 148px;
  }
}
.prizes__contents::after {
  position: absolute;
  z-index: -1;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 83px);
  border-radius: 24px;
  background-color: #fff;
}
@media screen and (min-width: 900px) {
  .prizes__contents::after {
    height: calc(100% - 148px);
  }
}

.prizes__deco-left {
  position: absolute;
  top: 0;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc((100% - 390px) / 2);
  min-height: 148px;
}
@media screen and (min-width: 900px) {
  .prizes__deco-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 0;
  }
}

.prizes__deco-right {
  position: absolute;
  top: 0;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc((100% - 390px) / 2);
  min-height: 148px;
}
@media screen and (min-width: 900px) {
  .prizes__deco-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    right: 0;
  }
}

.heading--prizes {
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.heading--prizes::before {
  background-image: url(../img/sp/prizes_Icon_sp.svg);
}
@media screen and (min-width: 900px) {
  .heading--prizes::before {
    background-image: url(../img/prizes_Icon_pc.svg);
  }
}

.prizes__text {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prizes__text {
    font-size: 16px;
    margin-top: 40px;
  }
}

.prizes__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 39px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 46px;
}
@media screen and (min-width: 900px) {
  .prizes__cards {
    gap: 0;
    margin-top: 82px;
  }
}

.prizes__card {
  width: calc(50% - 7.5px);
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-of-type(1), .prizes__card:nth-of-type(2) {
    width: calc(50% - 16px);
  }
  .prizes__card:nth-of-type(2) {
    margin-left: 32px;
  }
  .prizes__card:nth-of-type(3), .prizes__card:nth-of-type(4), .prizes__card:nth-of-type(5) {
    width: calc(33.3333333333% - 24px);
    margin-top: 80px;
  }
  .prizes__card:nth-of-type(4), .prizes__card:nth-of-type(5) {
    margin-left: 36px;
  }
}

.prizes-card {
  position: relative;
  border-radius: 8px;
}
.prizes-card .prizes-card:hover .prizes-card__icon svg .background {
  fill: #9ed0e0;
}
.prizes-card:hover .prizes-card__pic img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.25);
          transform: scale(1.25);
}
.prizes-card:hover .prizes-card__button-icon img {
  opacity: 0.6;
}

.prizes-card--head {
  width: 48px;
  position: absolute;
  top: -24px;
  left: 50%;
  z-index: 2;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .prizes-card--head {
    top: -30px;
    width: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card--head {
    top: -40px;
    width: 80px;
  }
}

@media screen and (min-width: 900px) {
  .prizes-card--large .prizes-card--head {
    top: -40px;
    width: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card--large .prizes-card--head {
    top: -50px;
    width: 100px;
  }
}
.prizes-card--large .prizes-card--content {
  border-radius: 24px;
}
@media screen and (min-width: 900px) {
  .prizes-card--large .prizes-card__pic {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card--large .prizes-card__heading {
    min-height: 120px;
    font-size: 20px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card--large .prizes-card__button {
    border-radius: 24px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card--large .prizes-card__button-icon {
    background-image: url(../img/prizes_button_icon.svg);
    width: 100px;
    height: 100px;
    border-bottom-right-radius: 24px;
  }
}

.prizes-card--content {
  position: relative;
  background-color: #f5f5f5;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .prizes-card--content {
    border-radius: 16px;
  }
}

figure {
  width: 100%;
  margin: 0;
  padding: 0;
}

.prizes-card__pic {
  display: block;
  overflow: hidden;
  position: relative;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media screen and (min-width: 900px) {
  .prizes-card__pic {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
}
.prizes-card__pic:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.prizes-card__pic img {
  display: block;
  width: 100%;
  -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;
}

.prizes-card__heading {
  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: 900px) {
  .prizes-card__heading {
    min-height: 80px;
    padding-top: 7px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    font-size: 16px;
  }
}

.prizes-card__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 0 2px transparent;
          box-shadow: 0 0 0 2px transparent;
  border-radius: 8px;
  outline: none;
}
@media screen and (min-width: 900px) {
  .prizes-card__button {
    border-radius: 16px;
  }
  .prizes-card__button:hover, .prizes-card__button:focus {
    -webkit-box-shadow: 0 0 0 4px #9ed0e0;
            box-shadow: 0 0 0 4px #9ed0e0;
  }
}
.prizes-card__button:hover {
  -webkit-box-shadow: 0 0 0 2px #9ed0e0;
          box-shadow: 0 0 0 2px #9ed0e0;
}
.prizes-card__button:focus {
  -webkit-box-shadow: 0 0 0 2px #9ed0e0;
          box-shadow: 0 0 0 2px #9ed0e0;
}

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

.prizes-card__button-icon {
  position: absolute;
  right: -2px;
  bottom: -2px;
  display: block;
  width: 36px;
  height: 36px;
  border-bottom-right-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .prizes-card__button-icon {
    background-image: url(../img/prizes_button_icon2.svg);
    width: 64px;
    height: 64px;
    border-bottom-right-radius: 16px;
    bottom: -4px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card__button-icon img {
    display: none;
  }
}

.prizes__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;
}
@media screen and (min-width: 900px) {
  .prizes__bg {
    display: block;
    margin-top: 0;
  }
}
.prizes__bg img {
  display: block;
  width: 100%;
  min-width: 580px;
}
@media screen and (min-width: 900px) {
  .prizes__bg img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}

.prizes-modal {
  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: 600px) {
  .prizes-modal {
    width: 400px;
    height: 540px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-modal {
    width: 480px;
    height: 650px;
    padding-right: 40px;
    padding-bottom: 23px;
    padding-left: 40px;
  }
}
.prizes-modal::-ms-backdrop {
  background: #000;
  opacity: 0.7;
}
.prizes-modal::backdrop {
  background: #000;
  opacity: 0.7;
}

.prizes-modal__pic {
  width: calc(100% + 40px);
  margin-left: -20px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__pic {
    width: calc(100% + 80px);
    margin-left: -40px;
  }
}

.prizes-modal__heading {
  margin-top: 39px;
  font-size: 16px;
  font-weight: 700;
}

.prizes-modal__text {
  margin-top: 12px;
}
@media screen and (min-width: 600px) {
  .prizes-modal__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-modal__text {
    font-size: 16px;
  }
}

.prizes-modal__button {
  margin-top: 16px;
}

.spots {
  position: relative;
  padding-top: 45.7px;
  padding-bottom: 45.7px;
  margin-top: -45.7px;
}
@media screen and (min-width: 900px) {
  .spots {
    padding-top: 120px;
    padding-bottom: 120px;
    margin-top: -120px;
  }
}
.spots::before {
  top: 1px;
  background-image: url(../img/sp/spots_wave_sp.svg), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
}
@media screen and (min-width: 900px) {
  .spots::before {
    background-image: url(../img/spots_wave_pc.svg), linear-gradient(to bottom, transparent 33px, #67b0c7 33px);
  }
}
.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::after {
  bottom: 1px;
  background-image: url(../img/sp/spots_wave_bottom_sp.svg), 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/spots_wave_bottom_pc.svg), linear-gradient(to top, transparent 33px, #67b0c7 33px);
  }
}

@media screen and (min-width: 900px) {
  .spots__deco__bg {
    position: absolute;
    bottom: 120px;
    left: 0;
    width: 80px;
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .spots__deco__bg {
    bottom: 120px;
    left: calc(50% - 720px);
    width: 100px;
  }
}

.spots__contents {
  padding-bottom: 14.86px;
  background-color: #67b0c7;
}
@media screen and (min-width: 900px) {
  .spots__contents {
    padding-bottom: 0;
  }
}

.spots__content--top {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .spots__content--top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 32px;
       -moz-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-icon_pc.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: 24px;
}
@media screen and (min-width: 900px) {
  .spots__slider {
    width: calc(100% - 56px - 32px);
    margin-top: 0;
  }
}

.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__image img {
  border-radius: 0;
}

.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;
}
@media screen and (min-width: 900px) {
  .spots-card__text {
    margin-top: 25px;
    font-size: 16px;
  }
}

@media screen and (min-width: 900px) {
  .spots__content--bottom {
    max-width: 1084px;
    padding-right: 30px;
    padding-left: 30px;
    margin-right: auto;
    margin-left: auto;
  }
}

.spots__buttons {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-top: -10px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1200px) {
  .spots__buttons {
    max-width: 944px;
    margin-top: -32px;
  }
}

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

.spots-swiper-button--prev {
  background-image: url(../img/spots_prev_icon.svg);
}
.spots-swiper-button--prev:hover {
  background-position: center left 30%;
}

.spots-swiper-button--next {
  background-image: url(../img/spots_next_icon.svg);
}
.spots-swiper-button--next:hover {
  background-position: center right 30%;
}

.spots-swiper-button--prev::after,
.spots-swiper-button--next::after {
  content: "";
}

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

.spots__bottom {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1200px) {
  .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__bottom__deco-en {
  display: block;
  width: 254px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1;
}
@media screen and (min-width: 900px) {
  .spots__bottom__deco-en {
    width: 360px;
    margin-top: -45px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__bottom__deco-en {
    width: 494px;
    margin: 0;
  }
}

.spots__bottom__text-wrap {
  margin-top: 15px;
}
@media screen and (min-width: 1200px) {
  .spots__bottom__text-wrap {
    margin-top: 0;
  }
}

.spots__bottom__text {
  font-size: 11.444px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .spots__bottom__text {
    font-size: 16px;
    text-align: right;
  }
}

.spots__bottom__button {
  padding-bottom: 4px;
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .spots__bottom__button {
    text-align: right;
  }
}

.qa {
  margin-top: 42px;
}
@media screen and (min-width: 900px) {
  .qa {
    margin-top: 124px;
  }
}

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

.heading--qa::before {
  background-image: url(../img/sp/question_sp.svg);
}

.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 {
    margin-top: 40px;
    gap: 24px;
  }
}

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

.qa-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px 14px;
}
@media screen and (min-width: 900px) {
  .qa-box__head {
    gap: 16px;
    padding-top: 20.5px;
    padding-right: 22px;
    padding-bottom: 19.5px;
    padding-left: 22px;
  }
}
@media screen and (min-width: 900px) {
  .qa-box__head.is-open {
    padding-bottom: 21.5px;
  }
}
.qa-box__head.is-open .qa-box__heading-toggle::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

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

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

.qa-box__heading-toggle {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  background-color: #9ed0e0;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .qa-box__heading-toggle {
    width: 48px;
    height: 48px;
  }
}
.qa-box__heading-toggle::before, .qa-box__heading-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: #fff;
  border-radius: 50px;
  -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: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 900px) {
  .qa-box__heading-toggle::before, .qa-box__heading-toggle::after {
    width: 19px;
    height: 3px;
  }
}
.qa-box__heading-toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.qa-box__body {
  display: none;
  padding-top: 16px;
  padding-right: 14px;
  padding-bottom: 14px;
  padding-left: 14px;
  background: #f5f5f5;
}
@media screen and (min-width: 900px) {
  .qa-box__body {
    padding-top: 24px;
    padding-right: 22px;
    padding-bottom: 22px;
    padding-left: 22px;
  }
}

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

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

.qa-box__a-text {
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .qa-box__a-text {
    font-size: 16px;
  }
}

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

@media screen and (min-width: 900px) {
  .entry__inner {
    max-width: 1084px;
  }
}

.entry__contents {
  border: 8px solid #fff;
  padding-top: 15.5px;
  padding-bottom: 32px;
  padding-left: 16px;
  padding-right: 15.5px;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 900px) {
  .entry__contents {
    padding-top: 32px;
    padding-right: 48px;
    padding-bottom: 44px;
    padding-left: 48px;
  }
}

.heading--entry::before {
  background-image: url(../img/sp/entry_icon_sp.svg);
}
@media screen and (min-width: 900px) {
  .heading--entry::before {
    background-image: url(../img/entry_icon_pc.svg);
  }
}

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

.entry-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.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;
  padding-top: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ccc;
}
@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: 20px;
    padding-bottom: 12px;
    padding-left: 16px;
  }
}
.entry-table__row:first-child {
  padding-top: 0;
}
.entry-table__row:last-child {
  padding-bottom: 0;
  border: none;
}

.entry-table__header {
  position: relative;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding-left: 16px;
}
@media screen and (min-width: 900px) {
  .entry-table__header {
    font-size: 16px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 188px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.entry-table__header::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  border-radius: 50%;
  background-color: #9ed0e0;
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.entry-table__data {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .entry-table__data {
    font-size: 16px;
    width: calc(100% - 224px);
  }
}
.entry-table__data ul li {
  position: relative;
  padding-left: 1.5em;
  line-height: 19px;
}
@media screen and (min-width: 900px) and (min-width: 900px) {
  .entry-table__data ul li {
    line-height: 26px;
  }
}
.entry-table__data ul li::before {
  position: absolute;
  top: 0.1em;
  left: 0.2em;
  content: "・";
}

.entry-table__header,
.entry-table__data {
  text-align: left;
  vertical-align: middle;
}

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

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

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

.contact__inner {
  max-width: 848px;
}
@media screen and (min-width: 900px) {
  .contact__inner {
    min-width: 908px;
  }
}

.heading--contact::before {
  background-image: url(../img/sp/contact_icon_sp.svg);
}
@media screen and (min-width: 900px) {
  .heading--contact::before {
    background-image: url(../img/contact_icon_pc.svg);
  }
}

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

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

@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__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 {
    width: 180px;
  }
}

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

.form-field__tag {
  display: inline-block;
  border-radius: 4px;
  background: #ce2073;
  padding: 4px 8px 4px 8px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
@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 {
  width: 100%;
  border-radius: 8px;
  background: #f5f5f5;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 400;
  padding: 16px 16px 16px;
}
.form-text.is-error {
  background-color: #fff0f7;
  border-color: #ce2073;
}
.form-text:focus {
  background-color: #e9f6f8;
  border-color: #9ed0e0;
}
@media screen and (min-width: 900px) {
  .form-text {
    font-size: 16px;
  }
}

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

.form-radio__text {
  font-size: 14px;
  font-weight: 400;
  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: 1px solid transparent;
  background: #f5f5f5;
  left: 0;
}
.form-radio__text::after {
  width: 10px;
  height: 10px;
  background: #9ed0e0;
  left: 7px;
  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_form-select.svg), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat, no-repeat;
  background-position: center right 10.65px, center center;
  background-size: 32px 32px, cover;
  border: 1px solid transparent;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .form-select {
    font-size: 16px;
  }
}

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

.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;
    padding-left: 2px;
    -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-textarea {
  border-radius: 8px;
  background: #f5f5f5;
  border: 1px solid transparent;
  width: 100%;
  height: 160px;
  font-size: 14px;
  font-weight: 400;
  padding: 16px 14px 19px 16px;
}
.form-textarea.is-error {
  background-color: #fff0f7;
  border-color: #ce2073;
}
.form-textarea:focus {
  background-color: #e9f6f8;
  border-color: #9ed0e0;
}
@media screen and (min-width: 900px) {
  .form-textarea {
    font-size: 16px;
  }
}

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

.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: 36px;
  color: #4a3636;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #f5f5f5;
  border: 1px solid transparent;
}
.form-checkbox__text::after {
  width: 24px;
  height: 24px;
  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;
  color: #9ed0e0;
  font-size: 16px;
  content: "✔";
  border-radius: 4px;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.form-checkbox__text a {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

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

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

@media screen and (min-width: 900px) {
  .button--submit {
    border-radius: 40px;
    border: 2px solid #4a3636;
    padding-top: 4px;
    padding-bottom: 6px;
    font-size: 16px;
    width: 240px;
    height: 40px;
  }
}

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

.footer__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__deco {
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .footer__deco {
    top: -40px;
    right: 0;
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__deco {
    right: auto;
    left: calc(50% + 576px);
    width: 100px;
  }
}

.sns-links {
  text-align: center;
}

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

.footer__sns-icons {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sns-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.sns-link:hover {
  opacity: 0.7;
}
@media screen and (min-width: 900px) {
  .sns-link {
    width: 40px;
    height: 40px;
  }
}
.sns-link img {
  width: 100%;
}

.footer__deco__en {
  display: block;
  max-width: 328px;
  margin-top: 13px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .footer__deco__en {
    max-width: 755px;
    margin-top: 40px;
  }
}
.footer__deco__en img {
  width: 100%;
}

.footer__address__contents {
  margin-top: -3px;
}

.address__content {
  overflow: hidden;
  background-color: #fff;
  border-radius: 16px;
}
@media screen and (min-width: 900px) {
  .address__content {
    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;
  }
}

@media screen and (min-width: 900px) {
  .address__content__map {
    width: 50%;
  }
}
.address__content__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 335/271;
  vertical-align: top;
}
@media screen and (min-width: 900px) {
  .address__content__map iframe {
    aspect-ratio: 512/400;
  }
}

.address__content__body {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 22px;
  padding-right: 26px;
  padding-bottom: 30px;
  padding-left: 27px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .address__content__body {
    padding: 10px;
    margin-top: 0;
  }
}

.address__content__logo {
  width: 153px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .address__content__logo {
    display: inline-block;
    width: 183px;
    margin: 0;
  }
}

.address__content__info {
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 30px;
}
@media screen and (min-width: 900px) {
  .address__content__info {
    gap: 12px;
    margin-top: 26px;
  }
}

.address__content__info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .address__content__info__row {
    gap: 40px;
  }
}

.address__content__info__term {
  position: relative;
  min-width: 64px;
  padding-left: 16px;
  font-style: normal;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .address__content__info__term {
    width: 80px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .address__content__info__term {
    font-size: 16px;
  }
}
.address__content__info__term::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background-color: #9ed0e0;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.address__content__info__term__description {
  font-style: normal;
}
@media screen and (min-width: 600px) {
  .address__content__info__term__description {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .address__content__info__term__description {
    font-size: 16px;
  }
}

.footer__page-top {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer__page-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 10;
    margin-top: 0;
  }
}

.footer__page-top-button {
  width: 75px;
  cursor: pointer;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.footer__page-top-button:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
@media screen and (min-width: 900px) {
  .footer__page-top-button {
    display: none;
    width: 80px;
    height: 83.2px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__page-top-button {
    width: 100px;
    height: 104px;
  }
}

.footer__bottom {
  position: relative;
  padding-top: 45.7px;
  margin-top: 24px;
}
.footer__bottom::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 45.7px;
  content: "";
  background-image: url(../img/sp/footer_wave_sp.svg), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
  background-repeat: repeat-x;
  background-position: left -6px center;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .footer__bottom::before {
    height: 120px;
    background-image: url(../img/footer_wave_pc.svg), linear-gradient(to bottom, transparent 33px, #67b0c7 33px);
    background-position: left center;
  }
}
@media screen and (min-width: 900px) {
  .footer__bottom {
    padding-top: 120px;
    margin-top: 120px;
  }
}

.footer__copyright {
  display: block;
  padding-bottom: 25px;
  font-size: 10px;
  color: #fff;
  text-align: center;
  background-color: #67b0c7;
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    padding-bottom: 32px;
    font-size: 14px;
  }
}