body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #4a3636;
  line-height: 1.6;
  padding-top: 64px;
  background-color: #e9f6f8;
}
body.is-fixed {
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  body {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  body {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  body {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  body {
    font-size: 16px;
  }
}

figure,
figcaption {
  margin: 0;
  padding: 0;
}

.wrapper {
  overflow: hidden;
}

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

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 24px 8px 21px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0 4px 0 0 #4a3636;
          box-shadow: 0 4px 0 0 #4a3636;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1200px) {
  .button {
    font-size: 14px;
  }
}
.button:hover {
  background: #ffee56;
}

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

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

.header__logo a img {
  width: 210px;
  display: block;
}
@media screen and (min-width: 1200px) {
  .header__logo a img {
    width: 183px;
  }
}

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

.header__link {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (min-width: 1200px) {
  .header__link {
    font-size: 12px;
  }
}

.header__button {
  padding: 15px 23px 16px 21px;
}

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

.drawer-icon {
  width: 32px;
  height: 24px;
  margin-top: -3px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  width: 32px;
  -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,
.drawer-icon__dot {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 6px;
  background: #4a3636;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.drawer-icon__bar:nth-of-type(1),
.drawer-icon__dot:nth-of-type(1) {
  top: 0;
  width: 25.6px;
}
.drawer-icon__bar:nth-of-type(1).drawer-icon__dot,
.drawer-icon__dot:nth-of-type(1).drawer-icon__dot {
  top: 0;
  left: 27.2px;
  width: 4.8px;
}
.drawer-icon__bar:nth-of-type(2),
.drawer-icon__dot:nth-of-type(2) {
  top: 12px;
}
.drawer-icon__bar:nth-of-type(3),
.drawer-icon__dot:nth-of-type(3) {
  top: 24px;
}

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

.drawer-content__menu {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

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

.drawer-content__link-button {
  display: block;
  padding-top: 18px;
  text-align: center;
}

.drawer-content__button {
  padding: 5px 23px 6px 21px;
}

.fv {
  position: relative;
}

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

.fv__background-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}

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

.fv__content {
  position: relative;
  padding-top: 17px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .fv__content {
    padding-top: 35px;
  }
}

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

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

.fv__lead-image img {
  width: 100%;
  height: auto;
}

.fv__decoration-content {
  margin-top: 10px;
  position: relative;
  height: 522px;
}
@media screen and (min-width: 900px) {
  .fv__decoration-content {
    max-width: 848px;
    height: 603px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

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

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

.fv__decoration-fukidashi {
  position: absolute;
  top: 7px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .fv__decoration-fukidashi {
    top: 0;
    left: 37px;
  }
}

.decoration-fukidashi {
  width: 142px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .decoration-fukidashi {
    width: 244px;
    max-width: 100%;
  }
}

.fv__decoration-present {
  position: absolute;
  top: 0;
  right: 25px;
}
@media screen and (min-width: 900px) {
  .fv__decoration-present {
    top: 17px;
    right: 127px;
  }
}

.decoration-present {
  width: 110px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .decoration-present {
    width: 180px;
    max-width: 100%;
  }
}

.fv__decoration-food {
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 3;
  width: 86px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .fv__decoration-food {
    width: 202px;
    bottom: 44px;
  }
}

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

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

.decoration-cat-brown {
  position: absolute;
  top: 55px;
  right: 9px;
  width: 98px;
}
@media screen and (min-width: 900px) {
  .decoration-cat-brown {
    width: 233px;
    top: 120px;
    right: 0;
  }
}

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

.about__decoration {
  position: absolute;
}

.about__decoration-ashiato {
  top: -10px;
  left: calc(50% + 133.5px);
  width: 54px;
}
@media screen and (min-width: 600px) {
  .about__decoration-ashiato {
    top: -20px;
    left: calc(50% + 205px);
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-ashiato {
    top: -60px;
    left: calc(50% + 300px);
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-ashiato {
    top: -80px;
    left: calc(50% + 490.12px);
    width: 100px;
  }
}
.about__decoration-ashiato img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.about__decoration-ship {
  top: 273px;
  left: calc(50% + 127.5px);
  width: 200px;
  overflow: hidden;
  border-radius: 24px;
}
@media screen and (min-width: 600px) {
  .about__decoration-ship {
    left: calc(50% + 180px);
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-ship {
    top: 73px;
    left: calc(50% + 360px);
    width: 480px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-ship {
    top: 73.07px;
    left: calc(50% + 560.2px);
  }
}
.about__decoration-ship img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.about__decoration-nanamesen {
  display: none;
}
@media screen and (min-width: 900px) {
  .about__decoration-nanamesen {
    display: block;
    position: absolute;
    top: -20px;
    right: calc(50% + 280px);
    width: 250px;
    overflow: hidden;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-nanamesen {
    top: -20px;
    right: calc(50% + 527px);
  }
}
.about__decoration-nanamesen img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.about__decoration-ropeway {
  top: 395px;
  right: calc(50% + 127.5px);
  width: 200px;
  overflow: hidden;
  border-radius: 24px;
}
@media screen and (min-width: 600px) {
  .about__decoration-ropeway {
    right: calc(50% + 180px);
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-ropeway {
    top: 74px;
    right: calc(50% + 360px);
    width: 480px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-ropeway {
    top: 74px;
    right: calc(50% + 614px);
  }
}
.about__decoration-ropeway img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

.about__decoration-button {
  bottom: 217.2px;
  left: calc(50% + 118.5px);
  width: 48px;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .about__decoration-button {
    left: calc(50% + 280px);
    width: 80px;
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-button {
    top: 601.63px;
    left: calc(50% + 300px);
    width: 101px;
    height: 101px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-button {
    left: calc(50% + 505px);
  }
}
.about__decoration-button img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.about__decoration-naminami {
  display: none;
}
@media screen and (min-width: 900px) {
  .about__decoration-naminami {
    display: block;
    position: absolute;
    bottom: 632px;
    left: calc(50% + 200px);
    width: 874px;
    z-index: -1;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-naminami {
    bottom: 632px;
    left: calc(50% + 448.08px);
  }
}
.about__decoration-naminami img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.about__decoration-nuno {
  bottom: 158.2px;
  left: calc(50% - 2.5px);
  width: 133px;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .about__decoration-nuno {
    left: calc(50% + 97px);
    width: 200px;
  }
}
@media screen and (min-width: 900px) {
  .about__decoration-nuno {
    bottom: 290px;
    left: calc(50% + 120px);
    width: 308px;
  }
}
@media screen and (min-width: 1200px) {
  .about__decoration-nuno {
    bottom: 379px;
    left: calc(50% + 374px);
  }
}
.about__decoration-nuno img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.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-top {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 24px;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .about-top {
    border-radius: 40px;
  }
}
.about-top::after {
  content: "";
  position: absolute;
  bottom: -36px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  width: 100px;
  height: 36px;
  background: url(../img/about/about__arrow.svg) no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .about-top::after {
    width: 140px;
    height: 50px;
    bottom: -50px;
    background: url(../img/about/about__arrow-pc.svg) no-repeat center center/contain;
  }
}

.about-top__image-left {
  position: absolute;
  top: 37.87px;
  left: calc(50% - 130.5px);
}
@media screen and (min-width: 900px) {
  .about-top__image-left {
    top: 49.35px;
    left: calc(50% - 333px);
  }
}
.about-top__image-left img {
  width: 80px;
  height: 60px;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .about-top__image-left img {
    width: 134px;
    height: 100px;
  }
}

.about-top__image-right {
  position: absolute;
  top: 36px;
  right: calc(50% - 143.72px);
}
@media screen and (min-width: 900px) {
  .about-top__image-right {
    top: 55px;
    right: calc(50% - 333.7px);
  }
}
.about-top__image-right img {
  width: 80px;
  height: 60px;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .about-top__image-right img {
    width: 134px;
    height: 100px;
  }
}

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

.heading--conpaign::before {
  background: url(../img/heading-icon/about__icon.svg) no-repeat center center/contain;
}

.heading-title__lead1 {
  margin-bottom: 6px;
  text-align: center;
  font-family: Courgette;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .heading-title__lead1 {
    font-size: 20px;
    margin-bottom: 8px;
  }
}

.heading-title__lead2 {
  display: inline-block;
  text-align: center;
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  position: relative;
}
@media screen and (min-width: 900px) {
  .heading-title__lead2 {
    font-size: 32px;
  }
}
.heading-title__lead2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 6px;
  background: #ffee56;
}
@media screen and (min-width: 900px) {
  .heading-title__lead2::after {
    bottom: -16px;
    height: 8px;
  }
}

.about-top__sub-heading-sp,
.about-top__sub-heading-pc {
  margin-top: 36px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 600px) {
  .about-top__sub-heading-sp,
  .about-top__sub-heading-pc {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .about-top__sub-heading-sp,
  .about-top__sub-heading-pc {
    margin-top: 49px;
  }
}

@media screen and (min-width: 900px) {
  .about-top__sub-heading-sp {
    display: none;
  }
}

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

.about-top__text-wrapper {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .about-top__text-wrapper {
    margin-top: 32px;
  }
}

.about-top__text {
  font-weight: 400;
  line-height: 1.6;
}
.about-top__text:nth-child(n+2) {
  margin-top: 1.5em;
}
@media screen and (min-width: 900px) {
  .about-top__text:nth-child(n+2) {
    margin-top: 1.7em;
  }
}

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

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

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

.text-tag {
  font-weight: 700;
}

.about-top__strong-text {
  display: inline-block;
  margin: 25px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  padding: 6px 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 2px dashed #9ed0e0;
}
@media screen and (min-width: 900px) {
  .about-top__strong-text {
    margin: 31px;
    font-size: 20px;
    padding: 12px 0;
  }
}

.about-top__button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  height: 40px;
  padding: 4px 22px 8px 22px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0 4px 0 0 #4a3636;
          box-shadow: 0 4px 0 0 #4a3636;
}
@media screen and (min-width: 900px) {
  .about-top__button {
    height: 56px;
    padding: 10px 38px 12px;
  }
}
.about-top__button a {
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .about-top__button a {
    font-size: 20px;
  }
}

.about__bottom {
  margin-top: 138px;
}
@media screen and (min-width: 900px) {
  .about__bottom {
    margin-top: 167px;
  }
}

.about__bottom-title {
  position: relative;
  display: block;
  width: 354.64px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .about__bottom-title {
    width: 770px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bottom-title {
    width: 891px;
  }
}
.about__bottom-title img {
  width: 100%;
}

.about .swiper {
  margin-top: -1px;
}
@media screen and (min-width: 900px) {
  .about .swiper {
    margin-top: -6px;
  }
}
.about .swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.about .swiper .swiper-slide {
  width: 100px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .about .swiper .swiper-slide {
    width: 200px;
    height: auto;
  }
}
.about .swiper .swiper-slide img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

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

.how-to-entry__inner {
  max-width: 375px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (min-width: 600px) {
  .how-to-entry__inner {
    max-width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-entry__inner {
    max-width: 1512px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__inner {
    padding-left: 36px;
    padding-right: 36px;
  }
}

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

.how-to-entry__decoration-map {
  width: 149px;
  height: auto;
  right: calc(50% + 38.5px);
}
@media screen and (min-width: 600px) {
  .how-to-entry__decoration-map {
    width: 180px;
    right: calc(50% + 80px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-entry__decoration-map {
    width: 380px;
    top: -60px;
    right: calc(50% + 180px);
    left: auto;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__decoration-map {
    width: 460px;
    right: calc(50% + 260px);
  }
}
.how-to-entry__decoration-map img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.how-to-entry__decoration-cats {
  left: calc(50% + 58.5px);
  position: relative;
}
@media screen and (min-width: 900px) {
  .how-to-entry__decoration-cats {
    top: -26px;
    left: calc(50% + 200px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__decoration-cats {
    left: calc(50% + 287px);
  }
}

.decoration-cats {
  position: absolute;
}

.decoration-cats__1 {
  width: 105px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .decoration-cats__1 {
    width: 238px;
  }
}
.decoration-cats__1 img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.decoration-cats__2 {
  top: 4px;
  left: 66px;
  overflow: hidden;
  width: 94px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .decoration-cats__2 {
    top: 10px;
    width: 214px;
    left: 150px;
  }
}
.decoration-cats__2 img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.how-to-entry__decoration-ashiato1 {
  width: 55px;
  height: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 74px;
  right: 20px;
}
@media screen and (min-width: 900px) {
  .how-to-entry__decoration-ashiato1 {
    width: 70px;
    top: 148px;
    right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__decoration-ashiato1 {
    width: 100px;
    right: 36px;
  }
}
.how-to-entry__decoration-ashiato1 img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.how-to-entry__decoration-ashiato2 {
  width: 55px;
  height: auto;
  top: 549.55px;
  left: 20px;
}
@media screen and (min-width: 900px) {
  .how-to-entry__decoration-ashiato2 {
    width: 70px;
    top: 580px;
    left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-entry__decoration-ashiato2 {
    width: 100px;
    left: 36px;
  }
}
.how-to-entry__decoration-ashiato2 img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.how-to-entry__decoration-ashiato3 {
  width: 55px;
  height: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 879.88px;
  right: 20px;
}
@media screen and (min-width: 900px) {
  .how-to-entry__decoration-ashiato3 {
    display: none;
  }
}
.how-to-entry__decoration-ashiato3 img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.heading--camera::before {
  background: url(../img/heading-icon/hte__icon.svg) no-repeat center center/contain;
}

.how-to-entry__steps {
  margin-top: 44px;
}
@media screen and (min-width: 1200px) {
  .how-to-entry__steps {
    margin-top: 56px;
  }
}

.how-to-entry__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 320px;
  margin-right: auto;
  margin-left: auto;
  gap: 33px;
}
@media screen and (min-width: 900px) {
  .how-to-entry__step {
    max-width: none;
    -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) {
  .how-to-entry__step {
    gap: 32px;
  }
}

.step-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .step-box {
    margin-bottom: 0;
    max-width: 294px;
  }
  .step-box:nth-child(2) {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .step-box {
    max-width: 320px;
  }
  .step-box:nth-child(2) {
    margin-top: 69px;
  }
}
.step-box:nth-child(-n+2)::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 34px;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/how-to-entry/hte__namisen-sp.svg) no-repeat center center/contain;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .step-box:nth-child(-n+2)::after {
    bottom: 340px;
    left: calc(100% - 10px);
    width: 70px;
    height: 16px;
    background: url(../img/how-to-entry/hte__namisen-pc.svg) no-repeat center center/contain;
  }
}
@media screen and (min-width: 1200px) {
  .step-box:nth-child(-n+2)::after {
    bottom: 318px;
    left: calc(100% - 8.5px);
    width: 113px;
    height: 24px;
  }
}
@media screen and (min-width: 900px) {
  .step-box:nth-child(2)::after {
    left: 100%;
  }
}

.step-box__image {
  width: 196px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .step-box__image {
    width: 87.5%;
  }
}
@media screen and (min-width: 1200px) {
  .step-box__image {
    margin-bottom: 8px;
  }
}
.step-box__image img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.step-box__title {
  text-align: center;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .step-box__title {
    font-size: 20px;
  }
}

.step-box__text {
  text-align: center;
  font-weight: 400;
}
@media screen and (min-width: 900px) {
  .step-box__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .step-box__text {
    font-size: 16px;
    line-height: 1.65;
  }
}

.step-box__button {
  padding: 8px 12px;
  background: #fff;
}
.step-box__button a {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .step-box__button a {
    font-size: 16px;
  }
}
.step-box__button a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-top: -4px;
  margin-right: 8px;
  background: url(../img/how-to-entry/hte__Icon=instagram.svg) no-repeat center center/contain;
  vertical-align: middle;
}
@media screen and (min-width: 1200px) {
  .step-box__button a::before {
    width: 25px;
    height: 25px;
  }
}

.how-to-entry__button {
  padding-bottom: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  height: 40px;
  padding: 6px 22px 8px 22px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0 4px 0 0 #4a3636;
          box-shadow: 0 4px 0 0 #4a3636;
}
@media screen and (max-width: 374px) {
  .how-to-entry__button {
    max-width: calc(100vw - 80px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-entry__button {
    margin-top: 46px;
    height: 56px;
    padding: 10px 38px 12px;
  }
}
.how-to-entry__button a {
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  white-space: nowrap;
}
@media screen and (max-width: 374px) {
  .how-to-entry__button a {
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(8px, 3vw, 16px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-entry__button a {
    font-size: 20px;
  }
}

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

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

.prizes__contents {
  position: relative;
  border-radius: 24px;
  background: var(--LP-White, #fff);
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 35px;
}
@media screen and (min-width: 900px) {
  .prizes__contents {
    padding-right: 56px;
    padding-left: 56px;
    padding-bottom: 52px;
  }
}
.prizes__contents::before {
  content: "";
  position: absolute;
  background: url(../img/prizes/deco_prizes1_sp.svg) no-repeat center center/contain;
  width: 237.6px;
  height: 83px;
  top: -83px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .prizes__contents::before {
    background: url(../img/prizes/deco_prizes1_pc.svg) no-repeat center center/contain;
    width: 366px;
    height: 149px;
    top: -149px;
  }
}

.prizes__decoration-triangle-left,
.prizes__decoration-triangle-right {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes__decoration-triangle-left,
  .prizes__decoration-triangle-right {
    display: block;
    position: absolute;
    width: 30.76171875%;
    height: auto;
    top: -120px;
  }
}

.prizes__decoration-triangle-left {
  left: 0;
}

.prizes__decoration-triangle-right {
  right: 0;
}

.heading--prizes {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -63px;
}
.heading--prizes::before {
  background: url(../img/heading-icon/gifts__icon.svg) no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .heading--prizes {
    top: -121px;
  }
}

.prizes__text {
  text-align: center;
  padding-top: 60px;
}
@media screen and (min-width: 900px) {
  .prizes__text {
    padding-top: 65px;
  }
}

.prizes__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 47px;
  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;
}
@media screen and (min-width: 900px) {
  .prizes__cards {
    margin-top: 82px;
    row-gap: 80px;
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
}

.prizes__card {
  width: calc(50% - 7.5px);
}
@media screen and (min-width: 900px) {
  .prizes__card {
    width: calc(50% - 16px);
  }
  .prizes__card:nth-child(3), .prizes__card:nth-child(4), .prizes__card:nth-child(5) {
    width: calc(33.3333333333% - 22px);
  }
}

.prizes-card__content {
  position: relative;
  border-radius: 8px;
  -webkit-transition: outline 0.3s ease;
  transition: outline 0.3s ease;
}
.prizes-card__content:hover .prizes-card__image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.prizes-card__content:hover .prizes-card__icon svg > path:first-child {
  fill: #9ed0e0;
}
@media screen and (min-width: 900px) {
  .prizes-card__content {
    border-radius: 24px;
  }
}

.prizes-card__number {
  position: absolute;
  width: 48px;
  height: 48px;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.prizes-card__number img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .prizes-card__number {
    width: 100px;
    height: 100px;
    top: -50px;
  }
}

@media screen and (min-width: 900px) {
  .prizes__card:nth-child(3) .prizes-card__number,
  .prizes__card:nth-child(4) .prizes-card__number,
  .prizes__card:nth-child(5) .prizes-card__number {
    width: 80px;
    height: 80px;
    top: -40px;
  }
  .prizes__card:nth-child(3) .prizes-card__text,
  .prizes__card:nth-child(4) .prizes-card__text,
  .prizes__card:nth-child(5) .prizes-card__text {
    min-height: 80px;
    padding: 12px;
  }
  .prizes__card:nth-child(3) .prizes-card__text h3,
  .prizes__card:nth-child(4) .prizes-card__text h3,
  .prizes__card:nth-child(5) .prizes-card__text h3 {
    font-size: 16px;
  }
  .prizes__card:nth-child(3) .prizes-card__icon svg,
  .prizes__card:nth-child(4) .prizes-card__icon svg,
  .prizes__card:nth-child(5) .prizes-card__icon svg {
    width: 64px;
    height: 64px;
    border-bottom-right-radius: 16px;
  }
  .prizes__card:nth-child(3) .prizes-card__content,
  .prizes__card:nth-child(3) .prizes-card__inner,
  .prizes__card:nth-child(3) .prizes-card__button,
  .prizes__card:nth-child(4) .prizes-card__content,
  .prizes__card:nth-child(4) .prizes-card__inner,
  .prizes__card:nth-child(4) .prizes-card__button,
  .prizes__card:nth-child(5) .prizes-card__content,
  .prizes__card:nth-child(5) .prizes-card__inner,
  .prizes__card:nth-child(5) .prizes-card__button {
    border-radius: 16px;
  }
  .prizes__card:nth-child(3) .prizes-card__image,
  .prizes__card:nth-child(4) .prizes-card__image,
  .prizes__card:nth-child(5) .prizes-card__image {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
}

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

.prizes-card__image {
  display: block;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media screen and (min-width: 900px) {
  .prizes-card__image {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}
.prizes-card__image img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.prizes-card__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 56px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prizes-card__text {
    min-height: 120px;
    padding: 28px;
  }
}
.prizes-card__text h3 {
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .prizes-card__text h3 {
    font-size: 20px;
  }
}

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

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

.prizes-modal {
  width: 336px;
  max-width: calc(100% - 20px);
  height: 480px;
  max-height: calc(100% - 20px);
  border-radius: 24px;
  background: #fff;
  padding: 0;
  text-align: center;
  border: none;
}
@media screen and (min-width: 600px) {
  .prizes-modal {
    width: 400px;
    height: 540px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-modal {
    width: 480px;
    height: 650px;
  }
}
.prizes-modal::-ms-backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(2px);
}
.prizes-modal::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(2px);
}

.prizes-modal__image img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

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

.prizes-modal__text {
  margin-top: 12px;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__text {
    font-size: 16px;
    margin-top: 12px;
    padding-right: 40px;
    padding-left: 40px;
  }
}

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

.button--mg-medium {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .button--mg-medium {
    font-size: 20px;
    padding-top: 8px;
    padding-bottom: 10px;
    padding-right: 37px;
    padding-left: 37px;
    border-width: 3px;
  }
}

.prizes__button {
  margin-top: 18px;
}
@media screen and (min-width: 900px) {
  .prizes__button {
    margin-top: 39px;
  }
}

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

.prizes-bg__image img {
  width: 100%;
  height: auto;
  min-width: 580px;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .prizes-bg__image img {
    min-height: 600px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}

.spots {
  background-color: #67b0c7;
  position: relative;
  margin-bottom: 47.5px;
  margin-top: 1px;
}
@media screen and (min-width: 900px) {
  .spots {
    margin-top: 0px;
    margin-bottom: 200px;
  }
}
.spots::before {
  content: "";
  position: absolute;
  background: url(../img/spots/deco/sp/top-sp.svg);
  top: -47px;
  width: 100%;
  height: 47.5px;
  background-repeat: repeat-x;
  background-position: center left -12px;
  background-size: auto 100%;
}
@media screen and (min-width: 900px) {
  .spots::before {
    background: url(../img/spots/deco/pc/top-pc.svg);
    top: -120px;
    height: 120px;
  }
}
.spots::after {
  content: "";
  position: absolute;
  background: url(../img/spots/deco/sp/bottom-sp.svg);
  bottom: -43px;
  width: 100%;
  height: 43px;
  background-repeat: repeat-x;
  background-position: center left 8px;
  background-size: auto 100%;
}
@media screen and (min-width: 900px) {
  .spots::after {
    background: url(../img/spots/deco/pc/bottom-pc.svg);
    bottom: -102px;
    height: 120px;
  }
}

.spots__decoration-ashiato {
  position: absolute;
  width: 80px;
  left: 0;
  bottom: 0;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .spots__decoration-ashiato {
    width: 100px;
    left: calc(50% - 720px);
    bottom: 20px;
  }
}
.spots__decoration-ashiato img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

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

.spots__heading {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spots__heading {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: left;
  }
}

.spots__title {
  display: inline-block;
  padding-left: 36px;
  color: #fff;
  font-family: "Kiwi Maru";
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  position: relative;
}
@media screen and (min-width: 900px) {
  .spots__title {
    padding-left: 3px;
    padding-top: 71px;
    font-size: 40px;
    letter-spacing: 0.25em;
  }
}
.spots__title::before {
  content: "";
  position: absolute;
  background: url(../img/spots/deco/star-icon1.svg) no-repeat center center/contain;
  width: 28px;
  height: 28px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .spots__title::before {
    width: 56px;
    height: 56px;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.spots__cards {
  margin-top: 23px;
}
@media screen and (min-width: 900px) {
  .spots__cards {
    margin-top: 0;
    margin-left: 35px;
  }
}

.spots__cards.swiper .swiper-slide {
  width: 64%;
  border-radius: 12px;
  background: #fff;
  min-width: 240px;
}
@media screen and (min-width: 900px) {
  .spots__cards.swiper .swiper-slide {
    width: 344px;
    border-radius: 24px;
    min-width: 296px;
  }
}

.spots__card-image img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .spots__card-image img {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
}

.spots__card-caption {
  display: block;
  min-height: 222px;
  padding-right: 24px;
  padding-left: 24px;
  padding-top: 16px;
}
@media screen and (min-width: 900px) {
  .spots__card-caption {
    min-height: 302px;
    padding-top: 24px;
    padding-right: 32px;
    padding-left: 32px;
  }
}

.spots__card-head {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .spots__card-head {
    font-size: 20px;
  }
}

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

.spots__nav-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 700px;
}
@media screen and (min-width: 1200px) {
  .spots__nav-btn {
    margin-top: -34px;
    max-width: 944px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  display: none;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none !important;
  display: none !important;
}
@media screen and (min-width: 900px) {
  .swiper-button-prev,
  .swiper-button-next {
    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;
    position: static;
    width: 80px;
    height: 80px;
    background-color: #ffee56 !important;
    border-radius: 50%;
    background-size: 57px !important;
    cursor: pointer;
    -webkit-transition: background-position 0.3s;
    transition: background-position 0.3s;
  }
}

.swiper-button-prev {
  background: url(../img/spots/swiper/arrow-icon/icon-prev.svg) no-repeat center center/contain;
}
.swiper-button-prev:hover {
  background-position: calc(50% - 5px) center;
}

.swiper-button-next {
  background: url(../img/spots/swiper/arrow-icon/Icon-next.svg) no-repeat center center/contain;
}
.swiper-button-next:hover {
  background-position: calc(50% + 5px) center;
}

.spots__bottom-area {
  display: block;
}
@media screen and (min-width: 900px) {
  .spots__bottom-area {
    margin-top: -50px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__bottom-area {
    margin-top: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .spots__underarea-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
    gap: 80px;
  }
}

.spots__logo {
  display: block;
  width: 255px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .spots__logo {
    width: 360px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__logo {
    width: 495px;
  }
}
.spots__logo img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.spots__underarea-2 {
  margin-top: 16px;
  padding-bottom: 22px;
  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: 1200px) {
  .spots__underarea-2 {
    margin-top: 20px;
  }
}

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

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

.qa {
  padding-top: 36px;
}
@media screen and (min-width: 900px) {
  .qa {
    padding-top: 22px;
  }
}

.heading--qa::before {
  background: url(../img/heading-icon/qa__icon.svg) no-repeat center center/contain;
}

.qa__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 35px;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .qa__boxes {
    margin-top: 56px;
    gap: 24px;
  }
}

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

.qa-box__head {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 14px;
  width: 100%;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .qa-box__head {
    gap: 16px;
    padding: 21px 20px 19px 22px;
  }
}

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

.qa-box__text,
.qa-box__a-text {
  color: #4a3636;
  font-family: "Noto Sans JP";
  font-size: 14px;
}

.qa-box__text {
  font-weight: 700;
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 900px) {
  .qa-box__text {
    font-size: 20px;
  }
}

.qa-box__toggle {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 26px;
  height: 26px;
  background-color: #9ed0e0;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (min-width: 900px) {
  .qa-box__toggle {
    width: 48px;
    height: 48px;
  }
}
.qa-box__toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  width: 2px;
  height: 10px;
  background-color: #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;
}
@media screen and (min-width: 900px) {
  .qa-box__toggle::before {
    width: 3px;
    height: 19px;
  }
}
.qa-box__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  height: 2px;
  background-color: #fff;
  border-radius: 50px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 900px) {
  .qa-box__toggle::after {
    width: 19px;
    height: 3px;
  }
}
.is-open .qa-box__toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}

.qa-box__body {
  max-height: 0;
  overflow: hidden;
  background-color: #f5f5f5;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.is-open .qa-box__body {
  max-height: 500px;
}

.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 17px 14px 13px;
  width: 100%;
  gap: 16px;
}
@media screen and (min-width: 900px) {
  .qa-box__a {
    gap: 16px;
    padding: 26px 24px 22px 22px;
  }
}

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

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

.info__wrapper {
  padding-top: 15px;
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 900px) {
  .info__wrapper {
    padding-top: 33px;
  }
}

.heading--info::before {
  background: url(../img/heading-icon/info__icon.svg) no-repeat center center/contain;
}

.info__contents {
  margin-top: 36px;
  margin-bottom: 18px;
  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;
  padding-left: 15.5px;
  padding-right: 15.5px;
}
@media screen and (min-width: 900px) {
  .info__contents {
    margin-top: 56px;
    margin-bottom: 33px;
    padding-left: 48px;
    padding-right: 48px;
    gap: 12.5px;
  }
}

.info__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 900px) {
  .info__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 11px;
    gap: 16px;
  }
}
.info__content:last-child {
  border-bottom: none;
}

.info__content-head {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  padding-left: 16px;
}
@media screen and (min-width: 600px) {
  .info__content-head {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .info__content-head {
    min-width: 224px;
    padding-left: 32px;
  }
}
.info__content-head::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #9ed0e0;
  border-radius: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .info__content-head::before {
    top: 11.8px;
    left: 16px;
  }
}

.info__content-body {
  font-weight: 400;
}

.info__content-list {
  position: relative;
  padding-left: 18px;
  line-height: 19px;
}
@media screen and (min-width: 900px) {
  .info__content-list {
    padding-left: 24px;
    line-height: 26px;
  }
}
.info__content-list::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: #4a3636;
  border-radius: 50%;
  left: 7.5px;
  top: 8.1px;
}
@media screen and (min-width: 900px) {
  .info__content-list::before {
    width: 4px;
    height: 4px;
    left: 10px;
    top: 12px;
  }
}

.info-content-body__link {
  text-decoration: underline;
}

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

.info-bg__image img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

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

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

.heading--contact::before {
  background: url(../img/heading-icon/mail__icon.svg) no-repeat center center/contain;
}

.contact__text {
  margin-top: 36px;
  margin-bottom: 22px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact__text {
    margin-top: 49px;
    margin-bottom: 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__field:nth-child(4), .contact__field:nth-child(5) {
    margin-top: 15px;
  }
}

.form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .form-field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 12px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.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-last {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form-field__label {
  color: #4a3636;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 900px) {
  .form-field__label {
    font-size: 16px;
  }
}
.is-error .form-field__label {
  color: #ce2073;
}

.form-field__tag {
  padding: 4px 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  background: #ce2073;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

@media screen and (min-width: 900px) {
  .form-field__item {
    width: 628px;
  }
}

.form-text {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  background: #f5f5f5;
  padding: 15px;
  border: 1px solid transparent;
  color: #4a3636;
  -webkit-transform: all 0.3s ease;
          transform: all 0.3s ease;
}
.form-text::-webkit-input-placeholder {
  color: #ccc;
  font-size: 14px;
}
.form-text::-moz-placeholder {
  color: #ccc;
  font-size: 14px;
}
.form-text:-ms-input-placeholder {
  color: #ccc;
  font-size: 14px;
}
.form-text::-ms-input-placeholder {
  color: #ccc;
  font-size: 14px;
}
.form-text::placeholder {
  color: #ccc;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .form-text::-webkit-input-placeholder {
    font-size: 16px;
  }
  .form-text::-moz-placeholder {
    font-size: 16px;
  }
  .form-text:-ms-input-placeholder {
    font-size: 16px;
  }
  .form-text::-ms-input-placeholder {
    font-size: 16px;
  }
  .form-text::placeholder {
    font-size: 16px;
  }
}
.form-text:focus {
  outline: none;
  border-color: #9ed0e0;
  background: #e9f6f8;
}
.form-text.is-error {
  border-color: #ce2073;
  background: rgba(206, 32, 115, 0.1);
}

.form-select {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  background: #f5f5f5;
  padding: 15px;
  border: 1px solid transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  color: #4a3636;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-image: url(../img/info/info__select-arrow.svg);
  background-repeat: no-repeat;
  background-position: right -4px center;
  background-size: 56px 56px;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .form-select {
    font-size: 16px;
  }
}
.form-select:focus {
  outline: none;
  border-color: #9ed0e0;
  background: #e9f6f8;
  background-image: url(../img/info/info__select-arrow.svg);
  background-repeat: no-repeat;
  background-position: right -4px center;
  background-size: 56px 56px;
}
.form-select.is-error {
  border-color: #ce2073;
  background: rgba(206, 32, 115, 0.1);
  background-image: url(../img/info/info__select-arrow.svg);
  background-repeat: no-repeat;
  background-position: right -4px center;
  background-size: 56px 56px;
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.form-field__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

.form-radio__text {
  color: #4a3636;
  font-size: 14px;
  font-weight: 400;
  padding-left: 32px;
  position: relative;
}
@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 {
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid transparent;
  background-color: #f5f5f5;
}
.form-radio__text::after {
  left: 6px;
  width: 12px;
  height: 12px;
  background-color: #9ed0e0;
  opacity: 0;
}

.form-textarea {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  background: #f5f5f5;
  padding: 15px;
  border: 1px solid transparent;
  color: #4a3636;
}
.form-textarea::-webkit-input-placeholder {
  font-size: 14px;
  color: #ccc;
}
.form-textarea::-moz-placeholder {
  font-size: 14px;
  color: #ccc;
}
.form-textarea:-ms-input-placeholder {
  font-size: 14px;
  color: #ccc;
}
.form-textarea::-ms-input-placeholder {
  font-size: 14px;
  color: #ccc;
}
.form-textarea::placeholder {
  font-size: 14px;
  color: #ccc;
}
@media screen and (min-width: 900px) {
  .form-textarea::-webkit-input-placeholder {
    font-size: 16px;
  }
  .form-textarea::-moz-placeholder {
    font-size: 16px;
  }
  .form-textarea:-ms-input-placeholder {
    font-size: 16px;
  }
  .form-textarea::-ms-input-placeholder {
    font-size: 16px;
  }
  .form-textarea::placeholder {
    font-size: 16px;
  }
}
.form-textarea:focus {
  outline: none;
  border-color: #9ed0e0;
  background: #e9f6f8;
}
.form-textarea.is-error {
  border-color: #ce2073;
  background: rgba(206, 32, 115, 0.1);
}

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

.form-checkbox {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

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

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

.contact__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .contact__button {
    margin-top: 40px;
  }
}

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

.access {
  margin-bottom: 69px;
}
@media screen and (min-width: 900px) {
  .access {
    margin-bottom: 240px;
  }
}

.access__decoration {
  position: relative;
}

.access__decoration-ashiato {
  position: absolute;
}
@media screen and (min-width: 900px) {
  .access__decoration-ashiato {
    width: 70px;
    height: auto;
    top: -40px;
    right: -30px;
  }
}
@media screen and (min-width: 1200px) {
  .access__decoration-ashiato {
    width: 100px;
    left: calc(50% + 576px);
  }
}
.access__decoration-ashiato img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

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

.access__head-title {
  color: #4a3636;
  font-family: "Josefin Sans";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .access__head-title {
    font-size: 24px;
  }
}

.access__head-icons {
  margin-top: 24px;
  margin-bottom: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (min-width: 900px) {
  .access__head-icons {
    margin-bottom: 41px;
  }
}

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

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

.access__map {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin-top: -3px;
}
@media screen and (min-width: 900px) {
  .access__map {
    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) {
  .iframe-wrap {
    width: 50%;
  }
}
.iframe-wrap iframe {
  overflow: hidden;
  width: 100%;
  height: auto;
  vertical-align: top;
  aspect-ratio: 335/271;
}
@media screen and (min-width: 900px) {
  .iframe-wrap iframe {
    aspect-ratio: 512/400;
  }
}

.access__body {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 25px;
  padding-top: 21px;
  padding-bottom: 29px;
}
@media screen and (min-width: 900px) {
  .access__body {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
    padding-top: 25px;
  }
}

.access__body-title {
  margin-right: auto;
  margin-left: auto;
  width: 153px;
}
@media screen and (min-width: 900px) {
  .access__body-title {
    width: 183px;
    margin: 0;
  }
}
.access__body-title img {
  width: 100%;
}

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

.access__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 900px) {
  .access__info-row {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
}

.access__info-dt {
  position: relative;
  color: #4a3636;
  font-weight: 700;
  padding-left: 16px;
  width: 80px;
}
@media screen and (min-width: 768px) {
  .access__info-dt {
    width: 120px;
  }
}
.access__info-dt::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #9ed0e0;
  border-radius: 50%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.access__pagetop {
  margin-top: 24px;
  text-align: center;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .access__pagetop {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 10;
  }
}
.access__pagetop img {
  width: 76px;
  height: auto;
  vertical-align: middle;
}
@media screen and (min-width: 900px) {
  .access__pagetop img {
    width: 100px;
  }
}

.footer {
  background-color: #67b0c7;
  position: relative;
  padding-bottom: 26px;
}
@media screen and (min-width: 900px) {
  .footer {
    padding-bottom: 32px;
  }
}
.footer::before {
  content: "";
  position: absolute;
  background: url(../img/spots/deco/sp/top-sp.svg);
  top: -46px;
  width: 100%;
  height: 47.5px;
  background-repeat: repeat-x;
  background-position: center left -12px;
  background-size: auto 100%;
}
@media screen and (min-width: 900px) {
  .footer::before {
    background: url(../img/spots/deco/pc/top-pc.svg);
    top: -120px;
    height: 120px;
  }
}

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