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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

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

.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  padding-bottom: 12px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .heading {
    gap: 8px;
    padding-bottom: 14px;
  }
}

.heading-icon img {
  width: 37.333px;
}
@media screen and (min-width: 900px) {
  .heading-icon img {
    width: 48px;
  }
}

.heading-text {
  font-family: Courgette;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .heading-text {
    font-size: 20px;
  }
}

.heading-title {
  position: relative;
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .heading-title {
    font-size: 32px;
  }
}
.heading-title::after {
  content: "";
  width: 200px;
  height: 6px;
  background-color: #ffee56;
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .heading-title::after {
    width: 320px;
    height: 8px;
    bottom: -16px;
  }
}

.button {
  display: inline-block;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #fff;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  padding: 4px 22px 6px;
  text-align: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  margin-inline: auto;
}
.button:hover {
  background-color: #ffee56;
}
.button:focus {
  outline-color: #9ed0e0;
}

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

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

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

/* === ヘッダー =================== */
.header {
  height: 64px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
  background: #fff;
}

.header__inner {
  height: inherit;
  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;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 1512px;
  }
}

.header__logo a img {
  width: 210px;
}
@media screen and (min-width: 768px) {
  .header__logo a img {
    width: 183px;
  }
}
@media screen and (min-width: 768px) {
  .header__logo {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header__logo:hover {
    opacity: 0.6;
  }
}

.drawer-icon {
  width: 32px;
  height: 28px;
  position: relative;
  background-color: #fff;
}
@media screen and (min-width: 1200px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  width: 32px;
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1)::after {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  content: "";
  width: 0;
  height: 0;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0.5px;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 10px;
  background: #4a3636;
  -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:nth-of-type(1) {
  width: 25.6px;
}
.drawer-icon__bar:nth-of-type(1)::after {
  position: absolute;
  content: "";
  top: 0.5px;
  right: -6px;
  width: 4.8px;
  height: 3px;
  border-radius: 10px;
  background: #4a3636;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 12px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 24px;
}

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

@media screen and (min-width: 768px) {
  .header__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
  }
}

.header__link {
  -webkit-transition: color 0.3s, text-decoration-line 0.3s;
  transition: color 0.3s, text-decoration-line 0.3s;
}
@media screen and (min-width: 768px) {
  .header__link {
    font-size: 8px;
  }
}
@media screen and (min-width: 900px) {
  .header__link {
    font-size: 11px;
  }
}
@media screen and (min-width: 1200px) {
  .header__link {
    font-size: 12px;
  }
}
.header__link:hover {
  color: #67b0c7;
  text-decoration-line: underline;
}

@media screen and (min-width: 768px) {
  .header__button {
    font-size: 10px;
  }
}
@media screen and (min-width: 900px) {
  .header__button {
    font-size: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .header__button {
    margin-left: 4px;
    font-size: 14px;
  }
}

.drawer-content {
  background: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 60px;
  right: 0;
  padding-top: 81px;
  -webkit-transform: translateY(-106%);
          transform: translateY(-106%);
  -webkit-transition: -webkit-transform 0.5s linear;
  transition: -webkit-transform 0.5s linear;
  transition: transform 0.5s linear;
  transition: transform 0.5s linear, -webkit-transform 0.5s linear;
  z-index: 40;
}
@media screen and (min-width: 1200px) {
  .drawer-content {
    display: none;
  }
}
.drawer-content.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer-content__lists {
  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: 40px;
}

.drawer-content__link {
  -webkit-transition: color 0.3s, text-decoration-line 0.3s;
  transition: color 0.3s, text-decoration-line 0.3s;
}
.drawer-content__link:hover {
  color: #67b0c7;
  text-decoration-line: underline;
}

/* === ファーストビュー =================== */
.fv {
  background: url(../img/sp/fv-bg-sp.png) no-repeat center center/cover;
  border-radius: 0px 0px 24px 24px;
}
@media screen and (min-width: 600px) {
  .fv {
    background: url(../img/fv-bg.png) no-repeat center center/cover;
    border-radius: 0px 0px 40px 40px;
  }
}

.fv__inner {
  position: relative;
  padding-top: 17px;
  padding-bottom: 376px;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    padding-top: 35px;
  }
}
@media screen and (min-width: 900px) {
  .fv__inner {
    padding-bottom: 460px;
  }
}

.fv__lead {
  text-align: center;
}

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

.fv__lead-title1 {
  margin-top: 20px;
}
@media screen and (min-width: 900px) {
  .fv__lead-title1 {
    margin-top: 24px;
  }
}
.fv__lead-title1 img {
  width: 335px;
}
@media screen and (min-width: 900px) {
  .fv__lead-title1 img {
    width: 520px;
  }
}

.fv__lead-title2 {
  margin-top: 12px;
}
@media screen and (min-width: 900px) {
  .fv__lead-title2 {
    margin-top: 16px;
  }
}
.fv__lead-title2 img {
  width: 240px;
}
@media screen and (min-width: 900px) {
  .fv__lead-title2 img {
    width: 356px;
  }
}

.fv-items {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 335px;
  height: 532px;
}
@media screen and (min-width: 900px) {
  .fv-items {
    width: 848px;
    height: 603px;
    margin-left: auto;
    margin-right: auto;
  }
}

.fv-item__smartphone {
  position: absolute;
  top: 113px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  width: 200px;
}
@media screen and (min-width: 900px) {
  .fv-item__smartphone {
    top: 33px;
    width: 250px;
  }
}
.fv-item__smartphone img {
  position: relative;
}
.fv-item__fukidashi {
  position: absolute;
  top: 17px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .fv-item__fukidashi {
    top: 0;
    left: 37px;
  }
}
.fv-item__fukidashi img {
  width: 142px;
}
@media screen and (min-width: 900px) {
  .fv-item__fukidashi img {
    width: 244px;
  }
}

.fv-item__present {
  position: absolute;
  top: 10px;
  right: 25px;
  z-index: -10;
}
@media screen and (min-width: 900px) {
  .fv-item__present {
    top: 17px;
    right: 127px;
  }
}
.fv-item__present img {
  width: 110px;
}
@media screen and (min-width: 900px) {
  .fv-item__present img {
    width: 180px;
  }
}

.fv-item__food {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 900px) {
  .fv-item__food {
    bottom: 44px;
    left: 0px;
  }
}
.fv-item__food img {
  width: 89px;
}
@media screen and (min-width: 900px) {
  .fv-item__food img {
    width: 212px;
  }
}

.fv-item__cat1 {
  position: absolute;
  bottom: 57px;
  right: 0;
}
@media screen and (min-width: 900px) {
  .fv-item__cat1 {
    bottom: 105px;
    right: 63px;
  }
}
.fv-item__cat1 img {
  width: 62px;
}
@media screen and (min-width: 900px) {
  .fv-item__cat1 img {
    width: 170px;
  }
}

.fv-item__cat2 {
  position: absolute;
  bottom: -2px;
  right: 9px;
}
@media screen and (min-width: 900px) {
  .fv-item__cat2 {
    right: 0;
    bottom: 2px;
  }
}
.fv-item__cat2 img {
  width: 98px;
}
@media screen and (min-width: 900px) {
  .fv-item__cat2 img {
    width: 233px;
  }
}

.fv-card {
  text-align: center;
  width: 160px;
  border-radius: 12.8px;
  background: #fff;
  padding-bottom: 19.2px;
  position: absolute;
  top: 236px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .fv-card {
    width: 200px;
    border-radius: 16px;
    padding-bottom: 24px;
    top: 185.5px;
  }
}

.fv-card__title {
  color: #fff;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 12.8px;
  font-weight: 700;
  padding: 6.4px 9.6px;
  border-radius: 12.8px 12.8px 0 0;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
}
@media screen and (min-width: 900px) {
  .fv-card__title {
    font-size: 16px;
    padding: 8px 12px;
  }
}

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

.fv-card__text {
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 12px;
  font-weight: 700;
  margin-top: 5.2px;
}
@media screen and (min-width: 900px) {
  .fv-card__text {
    font-size: 16px;
    margin-top: 9px;
  }
}

.fv-card__button {
  margin-top: 12.8px;
}
@media screen and (min-width: 900px) {
  .fv-card__button {
    margin-top: 16px;
  }
}
.fv-card__button .button {
  font-size: 14px;
  padding: 3px 22px 3px;
}
@media screen and (min-width: 900px) {
  .fv-card__button .button {
    font-size: 16px;
  }
}

/* === about =================== */
.about {
  position: relative;
  padding-top: 188px;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .about {
    padding-top: 177px;
  }
}

.about__image-left1 {
  display: none;
}
@media screen and (min-width: 900px) {
  .about__image-left1 {
    display: block;
    position: absolute;
    top: 157px;
    left: calc(50% - 530px);
    z-index: -20;
  }
}
@media screen and (min-width: 1200px) {
  .about__image-left1 {
    left: calc(50% - 777px);
  }
}
@media screen and (min-width: 900px) {
  .about__image-left1 img {
    width: 250px;
  }
}

.about__image-left2 {
  position: absolute;
  top: 583px;
  left: calc(50% - 328px);
  z-index: -10;
  width: 200px;
}
@media screen and (min-width: 600px) {
  .about__image-left2 {
    left: calc(50% - 382px);
  }
}
@media screen and (min-width: 900px) {
  .about__image-left2 {
    top: 254px;
    left: calc(50% - 840px);
    width: 480px;
  }
}
@media screen and (min-width: 1200px) {
  .about__image-left2 {
    left: calc(50% - 1094px);
  }
}

.about__image-left3 {
  position: absolute;
  bottom: 61.2px;
  left: 0;
  width: 138px;
  z-index: -20;
}
@media screen and (min-width: 600px) {
  .about__image-left3 {
    bottom: 60px;
    left: -20px;
    width: 180px;
  }
}
@media screen and (min-width: 768px) {
  .about__image-left3 {
    bottom: 80px;
    left: 0;
  }
}
@media screen and (min-width: 900px) {
  .about__image-left3 {
    bottom: 110px;
    left: calc(50% - 563px);
    width: 427px;
  }
}
@media screen and (min-width: 1200px) {
  .about__image-left3 {
    bottom: 149px;
    left: calc(50% - 860px);
    width: 427px;
  }
}

.about__image-right1 {
  position: absolute;
  top: 178px;
  right: calc(50% - 188px);
  z-index: -10;
}
@media screen and (min-width: 600px) {
  .about__image-right1 {
    right: calc(50% - 255px);
  }
}
@media screen and (min-width: 768px) {
  .about__image-right1 {
    right: 100px;
  }
}
@media screen and (min-width: 900px) {
  .about__image-right1 {
    top: 98px;
    right: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .about__image-right1 {
    right: calc(50% - 589px);
  }
}
.about__image-right1 img {
  width: 54px;
}
@media screen and (min-width: 900px) {
  .about__image-right1 img {
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .about__image-right1 img {
    width: 100px;
  }
}

.about__image-right2 {
  position: absolute;
  top: 461px;
  right: calc(50% - 327px);
  width: 200px;
  z-index: -10;
}
@media screen and (min-width: 600px) {
  .about__image-right2 {
    right: calc(50% - 375px);
  }
}
@media screen and (min-width: 768px) {
  .about__image-right2 {
    right: calc(50% - 375px);
  }
}
@media screen and (min-width: 900px) {
  .about__image-right2 {
    top: 252px;
    right: calc(50% - 840px);
    width: 480px;
    z-index: 0;
  }
}
@media screen and (min-width: 1200px) {
  .about__image-right2 {
    right: calc(50% - 1040px);
  }
}
.about__image-right3 {
  position: absolute;
  bottom: 217px;
  right: calc(50% - 165px);
}
@media screen and (min-width: 600px) {
  .about__image-right3 {
    bottom: 250px;
    right: calc(50% - 356px);
  }
}
@media screen and (min-width: 768px) {
  .about__image-right3 {
    bottom: 275px;
    right: 32px;
  }
}
@media screen and (min-width: 900px) {
  .about__image-right3 {
    bottom: 590px;
    right: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .about__image-right3 {
    bottom: 586px;
    right: calc(50% - 605px);
  }
}
.about__image-right3 img {
  width: 48px;
}
@media screen and (min-width: 600px) {
  .about__image-right3 img {
    width: 80px;
  }
}
@media screen and (min-width: 900px) {
  .about__image-right3 img {
    width: 101px;
  }
}

.about__image-right4 {
  position: absolute;
  bottom: 159px;
  right: calc(50% - 130px);
}
@media screen and (min-width: 600px) {
  .about__image-right4 {
    bottom: 170px;
    right: calc(50% - 298px);
  }
}
@media screen and (min-width: 768px) {
  .about__image-right4 {
    bottom: 170px;
    right: 85px;
  }
}
@media screen and (min-width: 900px) {
  .about__image-right4 {
    bottom: 310px;
    right: 10px;
    z-index: -10;
  }
}
@media screen and (min-width: 1200px) {
  .about__image-right4 {
    bottom: 379px;
    right: calc(50% - 682px);
    z-index: -10;
  }
}
.about__image-right4 img {
  width: 133px;
}
@media screen and (min-width: 600px) {
  .about__image-right4 img {
    width: 200px;
  }
}
@media screen and (min-width: 900px) {
  .about__image-right4 img {
    width: 308px;
  }
}

.about__image-right5 {
  display: none;
}
@media screen and (min-width: 900px) {
  .about__image-right5 {
    display: block;
    position: absolute;
    bottom: 690px;
    right: calc(50% - 1000px);
    z-index: -10;
  }
}
@media screen and (min-width: 1200px) {
  .about__image-right5 {
    display: block;
    position: absolute;
    bottom: 666px;
    right: calc(50% - 1322px);
    z-index: -10;
  }
}
.about__image-right5 img {
  width: 807px;
}

.about__image-right6 {
  display: none;
}
@media screen and (min-width: 900px) {
  .about__image-right6 {
    display: block;
    position: absolute;
    bottom: 657px;
    right: calc(50% - 1000px);
    z-index: -10;
  }
}
@media screen and (min-width: 1200px) {
  .about__image-right6 {
    display: block;
    position: absolute;
    bottom: 633px;
    right: calc(50% - 1253px);
    z-index: -10;
  }
}
.about__image-right6 img {
  width: 807px;
}

.about__inner {
  position: relative;
  width: 335px;
  max-width: calc(100% - 30px);
  border-radius: 24px;
  background: #fff;
  padding-block: 41px;
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .about__inner {
    width: 450px;
  }
}
@media screen and (min-width: 768px) {
  .about__inner {
    width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .about__inner {
    width: 580px;
  }
}
@media screen and (min-width: 1200px) {
  .about__inner {
    width: calc(100% - 40px);
    max-width: 848px;
    border-radius: 40px;
    padding-block: 42px;
  }
}

.about__inner-image1 {
  position: absolute;
  top: 31.87px;
  left: calc(50% - 135px);
}
@media screen and (min-width: 900px) {
  .about__inner-image1 {
    left: calc(50% - 330px);
  }
}
@media screen and (min-width: 1200px) {
  .about__inner-image1 {
    top: 42px;
    left: 85px;
  }
}
.about__inner-image1 img {
  width: 88px;
}
@media screen and (min-width: 900px) {
  .about__inner-image1 img {
    width: 147px;
  }
}

.about__inner-image2 {
  position: absolute;
  top: 31.87px;
  right: calc(50% - 147px);
}
@media screen and (min-width: 900px) {
  .about__inner-image2 {
    right: calc(50% - 330px);
  }
}
@media screen and (min-width: 1200px) {
  .about__inner-image2 {
    top: 51px;
    right: 85px;
  }
}
.about__inner-image2 img {
  width: 88px;
}
@media screen and (min-width: 900px) {
  .about__inner-image2 img {
    width: 145px;
  }
}

.about__inner-bottom {
  position: absolute;
  bottom: -36px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
@media screen and (min-width: 1200px) {
  .about__inner-bottom {
    bottom: -50px;
  }
}
.about__inner-bottom img {
  width: 100px;
}
@media screen and (min-width: 1200px) {
  .about__inner-bottom img {
    width: 140px;
  }
}

.about__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: 24px;
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .about__content {
    gap: 32px;
    margin-top: 36px;
  }
}

.about__pickup1 {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .about__pickup1 {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .about__pickup1 {
    display: none;
  }
}

.about__pickup2 {
  font-weight: 700;
  display: none;
}
@media screen and (min-width: 900px) {
  .about__pickup2 {
    display: block;
    font-size: 16px;
  }
}

.about__description {
  font-size: 12px;
  width: 100%;
  height: 304px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .about__description {
    font-size: 14px;
    height: 360px;
  }
}
@media screen and (min-width: 900px) {
  .about__description {
    font-size: 16px;
    height: 338px;
  }
}
.about__description a {
  text-decoration-line: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.about__description a:hover {
  color: #67b0c7;
}
.about__description a .point {
  font-weight: 700;
}

.about__text {
  font-weight: 700;
  padding-block: 8px;
  position: relative;
}
.about__text::after {
  content: "";
  width: 249px;
  height: 6px;
  border-bottom: 2px dashed #9ed0e0;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .about__text::after {
    width: 356px;
  }
}
@media screen and (min-width: 900px) {
  .about__text {
    font-size: 20px;
    padding-block: 12px;
  }
}

@media screen and (min-width: 900px) {
  .about__button .button {
    padding: 10px 37px 9px;
    font-size: 20px;
  }
}

.about__slider {
  position: relative;
  padding-top: 176.87px;
}
@media screen and (min-width: 900px) {
  .about__slider {
    padding-top: 258px;
  }
}
@media screen and (min-width: 1200px) {
  .about__slider {
    padding-top: 258px;
  }
}

.about__slider-heading {
  position: absolute;
  top: 138px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 354.642px;
}
@media screen and (min-width: 900px) {
  .about__slider-heading {
    top: 190px;
    width: 700.642px;
  }
}
@media screen and (min-width: 1200px) {
  .about__slider-heading {
    top: 167px;
    width: 893.642px;
    -webkit-transform: translateX(-50.3%);
            transform: translateX(-50.3%);
  }
}
.about__slider-heading img {
  width: 100%;
}

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

.about__slide img {
  width: 100px;
}
@media screen and (min-width: 900px) {
  .about__slide img {
    width: 200px;
  }
}

/* === how-to-enter =================== */
.how-to-enter {
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .how-to-enter {
    margin-top: 0;
  }
}

.how-to-enter__left-image1 {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 600px) {
  .how-to-enter__left-image1 {
    top: 0px;
    left: calc(50% - 250px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__left-image1 {
    top: 60px;
    left: calc(50% - 553px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__left-image1 {
    top: 60px;
    left: calc(50% - 720px);
  }
}
.how-to-enter__left-image1 img {
  width: 149px;
}
@media screen and (min-width: 600px) {
  .how-to-enter__left-image1 img {
    width: 170px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__left-image1 img {
    width: 390px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__left-image1 img {
    width: 460px;
  }
}

.how-to-enter__left-image2 {
  position: absolute;
  top: 549.55px;
  left: 20px;
}
@media screen and (min-width: 600px) {
  .how-to-enter__left-image2 {
    top: 549.55px;
    left: calc(50% - 220px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__left-image2 {
    top: 690px;
    left: 4px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__left-image2 {
    top: 700px;
    left: 36px;
  }
}
.how-to-enter__left-image2 img {
  width: 55px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__left-image2 img {
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__left-image2 img {
    width: 100px;
  }
}

.how-to-enter__right-image1 {
  position: absolute;
  top: 0;
  right: 25px;
}
@media screen and (min-width: 600px) {
  .how-to-enter__right-image1 {
    top: 0;
    right: calc(50% - 175px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__right-image1 {
    top: 94px;
    right: calc(50% - 432px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__right-image1 {
    top: 94px;
    right: calc(50% - 525px);
  }
}
.how-to-enter__right-image1 img {
  width: 105px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__right-image1 img {
    width: 238px;
  }
}

.how-to-enter__right-image2 {
  position: absolute;
  top: 5px;
  right: -31px;
}
@media screen and (min-width: 600px) {
  .how-to-enter__right-image2 {
    top: 5px;
    right: calc(50% - 234px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__right-image2 {
    top: 103.97px;
    right: calc(50% - 550px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__right-image2 {
    top: 103.97px;
    right: calc(50% - 650px);
  }
}
.how-to-enter__right-image2 img {
  width: 94px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__right-image2 img {
    width: 214px;
  }
}

.how-to-enter__right-image3 {
  position: absolute;
  top: 74px;
  right: 20px;
}
@media screen and (min-width: 600px) {
  .how-to-enter__right-image3 {
    top: 74px;
    right: calc(50% - 248px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__right-image3 {
    top: 268px;
    right: 0;
    z-index: -10;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__right-image3 {
    top: 268px;
    right: 36px;
  }
}
.how-to-enter__right-image3 img {
  width: 55px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__right-image3 img {
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__right-image3 img {
    width: 100px;
  }
}

.how-to-enter__right-image4 {
  position: absolute;
  top: 879.88px;
  right: 20px;
}
@media screen and (min-width: 600px) {
  .how-to-enter__right-image4 {
    top: 924px;
    right: calc(50% - 248px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__right-image4 {
    display: none;
  }
}
.how-to-enter__right-image4 img {
  width: 55px;
}

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

.how-to-enter__heading .heading-title::after {
  width: 100px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__heading .heading-title::after {
    width: 160px;
  }
}

.how-to-enter__boxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 49px;
  text-align: center;
  margin-top: 32px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__boxs {
    -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: 32px;
    margin-top: 40px;
    max-width: 892px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__boxs {
    max-width: 1064px;
  }
}

@media screen and (min-width: 900px) {
  .step-box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (min-width: 900px) {
  .step-box:nth-child(2) {
    margin-top: 69px;
  }
}

.step-box__image img {
  width: 196px;
}
@media screen and (min-width: 900px) {
  .step-box__image img {
    width: 245px;
  }
}
@media screen and (min-width: 1200px) {
  .step-box__image img {
    width: 280px;
  }
}

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

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

.step-box__text {
  margin-top: 15px;
  font-size: 12px;
}
@media screen and (min-width: 600px) {
  .step-box__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .step-box__text {
    font-size: 13px;
  }
}
@media screen and (min-width: 1200px) {
  .step-box__text {
    margin-top: 18px;
    font-size: 16px;
  }
}
.step-box__text a {
  text-decoration-line: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.step-box__text a:hover {
  color: #67b0c7;
}

.instagram-link__button {
  margin-top: 15px;
  padding: 7px 11px;
  background: #fff;
  display: inline-block;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.instagram-link__button:hover {
  border-color: #9ed0e0;
}
@media screen and (min-width: 900px) {
  .instagram-link__button {
    margin-top: 16px;
  }
}

.instagram-icon {
  display: inline-block;
  width: 20px;
}
@media screen and (min-width: 900px) {
  .instagram-icon {
    width: 24px;
  }
}
.instagram-icon img {
  width: 100%;
}
.instagram-link__text {
  position: relative;
  font-weight: 700;
  padding-left: 29px;
}
.instagram-link__text::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/step-instagram-icon.svg) no-repeat center center/100% 100%;
}
@media screen and (min-width: 900px) {
  .instagram-link__text::before {
    top: 1px;
    left: -2px;
    content: "";
    width: 22px;
    height: 22px;
  }
}
@media screen and (min-width: 900px) {
  .instagram-link__text {
    font-size: 14px;
    padding-left: 31px;
  }
}
@media screen and (min-width: 1200px) {
  .instagram-link__text {
    font-size: 16px;
  }
}

.step-box__line1 {
  position: absolute;
  top: 536px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 600px) {
  .step-box__line1 {
    top: 555px;
  }
}
@media screen and (min-width: 900px) {
  .step-box__line1 {
    top: 340px;
    left: calc(50% - 160px);
  }
}
@media screen and (min-width: 1200px) {
  .step-box__line1 {
    width: 113px;
    top: 387px;
    left: calc(50% - 201px);
  }
}
.step-box__line1 img {
  width: 7px;
}
@media screen and (min-width: 900px) {
  .step-box__line1 img {
    width: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .step-box__line1 img {
    width: auto;
  }
}

.step-box__line2 {
  position: absolute;
  top: 930px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 600px) {
  .step-box__line2 {
    top: 955px;
  }
}
@media screen and (min-width: 900px) {
  .step-box__line2 {
    top: 340px;
    left: calc(50% + 133px);
  }
}
@media screen and (min-width: 1200px) {
  .step-box__line2 {
    width: 113px;
    top: 387px;
    left: calc(50% + 161px);
  }
}
.step-box__line2 img {
  width: 7px;
}
@media screen and (min-width: 900px) {
  .step-box__line2 img {
    width: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .step-box__line2 img {
    width: auto;
  }
}

.how-to-enter__button {
  margin-top: 17px;
  margin-bottom: 4px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .how-to-enter__button {
    margin-top: 48px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__button .button {
    font-size: 20px;
    padding: 8px 38px 10px;
    border: 3px solid #4a3636;
  }
}

/* === prizes =================== */
.prizes {
  position: relative;
  margin-top: 34px;
  padding-bottom: 213px;
  background: url(../img/sp/wave-img-sp.png) repeat-x bottom left -4px/96px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .prizes {
    margin-top: 121px;
    padding-bottom: 295px;
  }
}
@media screen and (min-width: 900px) {
  .prizes {
    padding-bottom: 400px;
    background: url(../img/wave-img.png) repeat-x bottom left/252px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes {
    padding-bottom: 638px;
  }
}

.prizes__top-deco1 {
  display: block;
  text-align: center;
}
.prizes__top-deco1 img {
  width: 237.6px;
}
@media screen and (min-width: 900px) {
  .prizes__top-deco1 img {
    width: 365.624px;
  }
}

.prizes__top-deco2 {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes__top-deco2 {
    display: block;
    position: absolute;
    top: 28px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 850px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__top-deco2 {
    width: 1024px;
  }
}

.prizes-bottom__image {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -10;
  width: 580px;
}
@media screen and (min-width: 600px) {
  .prizes-bottom__image {
    width: 100%;
  }
}

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

.prizes__inner {
  position: relative;
  border-radius: 24px;
  background: #fff;
  padding-bottom: 32px;
  max-width: 600px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .prizes__inner {
    max-width: 600px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__inner {
    max-width: 1024px;
    padding-inline: 56px;
    padding-bottom: 50px;
  }
}

.prizes__heading {
  position: absolute;
  top: -62px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.prizes__heading .heading-title::after {
  width: 160px;
}
@media screen and (min-width: 900px) {
  .prizes__heading {
    top: -120px;
  }
  .prizes__heading .heading-title::after {
    width: 256px;
  }
}

.prizes__description {
  padding-top: 59.33px;
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .prizes__description {
    font-size: 14px;
    font-weight: 400;
    padding-top: 64.03px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__description {
    font-size: 16px;
  }
}

.prizes__boxes {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 4.1791044776%;
     -moz-column-gap: 4.1791044776%;
          column-gap: 4.1791044776%;
  row-gap: 14px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .prizes__boxes {
    margin-top: 32px;
    margin-inline: initial;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px 14px;
  }
}

.prizes-box {
  position: relative;
  margin-top: 24px;
  width: 47.7611940299%;
  border-radius: 8px;
  background: #f5f5f5;
  cursor: pointer;
}
.prizes-box::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border: 2px solid #9ed0e0;
  border-radius: 8px;
  opacity: 0;
}
.prizes-box:hover, .prizes-box:focus {
  outline: none;
}
.prizes-box:hover::after, .prizes-box:focus::after {
  opacity: 1;
}
.prizes-box:hover .prizes-box__image img, .prizes-box:focus .prizes-box__image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.prizes-box:hover .prizes-box__zoom-hover2, .prizes-box:focus .prizes-box__zoom-hover2 {
  display: block;
}
@media screen and (min-width: 900px) {
  .prizes-box {
    margin-top: 40px;
    width: 30.701754386%;
    border-radius: 16px;
    -webkit-transition: border 0.3s;
    transition: border 0.3s;
  }
  .prizes-box::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    border: 4px solid #9ed0e0;
    border-radius: 16px;
    opacity: 0;
  }
}
.prizes-box:nth-child(-n+2):hover::after, .prizes-box:nth-child(-n+2):focus::after {
  opacity: 1;
  outline: none;
}
.prizes-box:nth-child(-n+2):hover .prizes-box__zoom, .prizes-box:nth-child(-n+2):focus .prizes-box__zoom {
  display: none;
}
.prizes-box:nth-child(-n+2):hover .prizes-box__zoom-hover1, .prizes-box:nth-child(-n+2):focus .prizes-box__zoom-hover1 {
  display: block;
}
@media screen and (min-width: 900px) {
  .prizes-box:nth-child(-n+2) {
    margin-top: 50px;
    width: 48.2456140351%;
    border-radius: 24px;
  }
  .prizes-box:nth-child(-n+2)::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    border: 4px solid #9ed0e0;
    border-radius: 24px;
    opacity: 0;
  }
  .prizes-box:nth-child(-n+2) .prizes-box__top {
    top: -40px;
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .prizes-box:nth-child(-n+2) .prizes-box__top {
    top: -50px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-box:nth-child(-n+2) .prizes-box__top img {
    width: 80px;
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .prizes-box:nth-child(-n+2) .prizes-box__top img {
    width: 100px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-box:nth-child(-n+2) .prizes-box__image {
    display: block;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
  }
  .prizes-box:nth-child(-n+2) .prizes-box__text {
    font-size: 20px;
    font-weight: 700;
    padding-block: 28px;
  }
  .prizes-box:nth-child(-n+2) .prizes-box__zoom img {
    width: 100px;
    border-radius: 0 0 24px 0;
  }
  .prizes-box:nth-child(-n+2) .prizes-box__zoom-hover1 {
    display: none;
  }
  .prizes-box:nth-child(-n+2) .prizes-box__zoom-hover1 img {
    width: 100px;
    border-radius: 0 0 24px 0;
  }
}
@media screen and (min-width: 900px) {
  .prizes-box:nth-child(2) .prizes-box__text {
    padding-block: 44px;
  }
}
.prizes-box:nth-child(3) .prizes-box__text {
  padding-block: 18.5px;
}
@media screen and (min-width: 600px) {
  .prizes-box:nth-child(3) .prizes-box__text {
    padding-block: 27px;
  }
}
.prizes-box:nth-child(5) {
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .prizes-box:nth-child(5) {
    margin-inline: initial;
  }
}

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

.prizes-box__image {
  display: block;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
@media screen and (min-width: 900px) {
  .prizes-box__image {
    border-radius: 16px 16px 0 0;
  }
}
.prizes-box__image img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.prizes-box__text {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding-block: 9px;
}
@media screen and (min-width: 600px) {
  .prizes-box__text {
    font-size: 14px;
    padding-block: 14px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-box__text {
    font-size: 16px;
  }
}

.prizes-box__zoom {
  position: absolute;
  bottom: 0;
  right: 0;
}
.prizes-box__zoom img {
  width: 36px;
  border-radius: 0 0 8px 0;
}
@media screen and (min-width: 900px) {
  .prizes-box__zoom img {
    width: 64px;
    border-radius: 0 0 16px 0;
  }
}

.prizes-box__zoom-hover1 {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
}
.prizes-box__zoom-hover1 img {
  width: 36px;
  border-radius: 0 0 8px 0;
}
@media screen and (min-width: 900px) {
  .prizes-box__zoom-hover1 img {
    width: 64px;
    border-radius: 0 0 16px 0;
  }
}

.prizes-box__zoom-hover2 {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
}
.prizes-box__zoom-hover2 img {
  width: 36px;
  border-radius: 0 0 8px 0;
}
@media screen and (min-width: 900px) {
  .prizes-box__zoom-hover2 img {
    width: 64px;
    border-radius: 0 0 16px 0;
  }
}

.prizes__button {
  margin-top: 19px;
  margin-bottom: 4px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prizes__button {
    margin-top: 43px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__button .button {
    font-size: 20px;
    padding: 8px 38px 10px;
  }
}

/* === prizes モーダル =================== */
.prizes-modal-window {
  width: 336px;
  height: 480px;
  text-align: center;
  border-radius: 24px;
  padding: 0;
  border: none;
  outline: none;
}
@media screen and (min-width: 900px) {
  .prizes-modal-window {
    width: 480px;
    height: 650px;
  }
}
.prizes-modal-window::-ms-backdrop {
  opacity: 0.6;
  background: #000;
}
.prizes-modal-window::backdrop {
  opacity: 0.6;
  background: #000;
}

/* 表示領域外へはスクロールさせない */
.no_scroll {
  overflow: hidden;
}

.prizes-modal__image img {
  border-radius: 24px 24px 0 0;
}

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

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

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

.prizes-modal__close-button {
  margin-top: 16px;
}
.prizes-modal__close-button a {
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .prizes-modal__close-button {
    margin-top: 24px;
  }
}

/* === spots =================== */
.spots {
  background-image: url(../img/sp/spots-wave-sp.png);
  background-repeat: repeat-x;
  background-position: bottom left -4px;
  background-size: 96px;
  padding-bottom: 44px;
}
@media screen and (min-width: 900px) {
  .spots {
    background-image: url(../img/spots-wave.png);
    background-size: 252px;
    padding-bottom: 100px;
  }
}

.spots__inner {
  background-color: #67b0c7;
  padding-inline: 0;
  padding-bottom: 21px;
}
@media screen and (min-width: 900px) {
  .spots__inner {
    position: relative;
    max-width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .spots__inner {
    padding-left: max(50% - 512px);
  }
}

.spots__bg-left {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots__bg-left {
    display: block;
    position: absolute;
    width: 80px;
    bottom: 0;
    left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .spots__bg-left {
    width: 100px;
    bottom: 19px;
    left: 50%;
    -webkit-transform: translateX(-720px);
            transform: translateX(-720px);
  }
}

@media screen and (min-width: 900px) {
  .spots__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 32px;
  }
}

.spots__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2px;
}
@media screen and (min-width: 900px) {
  .spots__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 50px;
    gap: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__heading {
    margin-left: 0;
  }
}

.spots__heading-icon {
  width: 28px;
}
@media screen and (min-width: 900px) {
  .spots__heading-icon {
    width: 56px;
  }
}

.spots__heading-title {
  color: #fff;
  font-family: "Kiwi Maru";
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .spots__heading-title {
    font-size: 40px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    height: 400px;
    letter-spacing: 10px;
  }
}

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

@media screen and (min-width: 900px) {
  .swiper {
    position: static;
  }
}

.swiper-slide {
  width: auto;
  height: auto;
}

.spots__card {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: #fff;
  padding-bottom: 28px;
}
@media screen and (min-width: 900px) {
  .spots__card {
    border-radius: 24px;
    padding-bottom: 40px;
  }
}

.spots__card-image {
  display: block;
}
.spots__card-image img {
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 900px) {
  .spots__card-image img {
    border-radius: 24px 24px 0 0;
  }
}

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

.spots__card-text {
  font-size: 12px;
  margin-top: 16px;
  padding-inline: 24px;
}
@media screen and (min-width: 600px) {
  .spots__card-text {
    font-size: 14px;
    margin-top: 27px;
  }
}
@media screen and (min-width: 900px) {
  .spots__card-text {
    font-size: 16px;
    padding-inline: 32px;
  }
}

@media screen and (min-width: 900px) {
  .spots-prev,
  .spots-next {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #ffee56;
    border-radius: 50%;
    margin-top: 118px;
  }
}
.spots-prev::after,
.spots-next::after {
  display: none;
}

@media screen and (min-width: 900px) {
  .spots-prev {
    margin-left: 100px;
  }
  .spots-prev:hover::before {
    left: -5px;
  }
}
@media screen and (min-width: 1200px) {
  .spots-prev {
    left: calc(50% - 573px);
  }
}
@media screen and (min-width: 900px) {
  .spots-prev::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    background: url(../img/spots-prev-icon.svg) no-repeat center center/15.638px;
    left: 0;
    -webkit-transition: left 0.3s;
    transition: left 0.3s;
  }
}

@media screen and (min-width: 900px) {
  .spots-next {
    margin-right: 90px;
  }
  .spots-next:hover::before {
    left: 5px;
  }
}
@media screen and (min-width: 1200px) {
  .spots-next {
    margin-right: 273px;
  }
}
@media screen and (min-width: 900px) {
  .spots-next::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    background: url(../img/spots-next-icon.png) no-repeat center center/15.638px;
    bottom: 0;
    left: 0;
    -webkit-transition: left 0.3s;
    transition: left 0.3s;
  }
}

.spots__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1200px) {
  .spots__bottom {
    margin-top: 66px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 81px;
  }
}

.spots__bottom-icon {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .spots__bottom-icon {
    text-align: left;
  }
}
.spots__bottom-icon img {
  width: 255px;
}
@media screen and (min-width: 900px) {
  .spots__bottom-icon img {
    width: 350px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__bottom-icon img {
    width: 100%;
  }
}

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

.bottom-box__text {
  color: #fff;
  font-size: 11.444px;
}
@media screen and (min-width: 600px) {
  .bottom-box__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .bottom-box__text {
    font-size: 16px;
  }
}

.bottom-box__button {
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .bottom-box__button {
    margin-left: 11px;
  }
}
@media screen and (min-width: 900px) {
  .bottom-box__button .button {
    font-size: 20px;
    padding: 8px 38px 10px;
    border: 3px solid #4a3636;
  }
}

/* === Q & A =================== */
.qa {
  margin-top: 42px;
}
@media screen and (min-width: 900px) {
  .qa {
    margin-top: 122px;
  }
}

.qa__heading .heading-title::after {
  width: 140px;
}
@media screen and (min-width: 900px) {
  .qa__heading .heading-title::after {
    width: 224px;
  }
}

.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: 11px;
  max-width: 600px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .qa__boxes {
    gap: 24px;
    max-width: 1024px;
    margin-top: 41px;
  }
}

.qa-box {
  border-radius: 12px;
  border: 2px solid #4a3636;
}
@media screen and (min-width: 900px) {
  .qa-box {
    border-radius: 16px;
  }
}
.qa-box.is-open .qa-box__head {
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 900px) {
  .qa-box.is-open .qa-box__head {
    border-radius: 16px 16px 0 0;
  }
}
.qa-box.is-open .qa-box__open-icon::after {
  -webkit-transform: translate(-50%) rotate(0deg);
          transform: translate(-50%) rotate(0deg);
}

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

@media screen and (min-width: 900px) {
  .is-bottom {
    padding-bottom: 17px;
  }
}

.qa-box__head-icon {
  margin-bottom: 10px;
  width: 22px;
}
@media screen and (min-width: 900px) {
  .qa-box__head-icon {
    margin-bottom: 6px;
    width: 27px;
  }
}

.qa-box__head-text {
  color: #4a3636;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .qa-box__head-text {
    font-size: 20px;
  }
}

.qa-box__open-icon {
  position: relative;
  width: 26.182px;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .qa-box__open-icon {
    width: 48px;
  }
}
.qa-box__open-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%) rotate(90deg);
          transform: translate(-50%) rotate(90deg);
  content: "";
  width: 10px;
  height: 1.455px;
  background: #fff;
  border-radius: 30px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 900px) {
  .qa-box__open-icon::after {
    top: 23px;
    width: 19px;
    height: 2.6px;
  }
}

.qa-box__body {
  display: none;
  border-radius: 0 0 12px 12px;
  background: #f5f5f5;
  padding: 16px 14px 14px;
}
@media screen and (min-width: 900px) {
  .qa-box__body {
    border-radius: 0 0 16px 16px;
    padding: 27px 22px 23px;
  }
}

.body-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.body-a__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 8px;
}
.body-a__icon img {
  width: 17px;
}
@media screen and (min-width: 900px) {
  .body-a__icon img {
    width: 23px;
  }
}

.body-a__text a {
  text-decoration-line: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.body-a__text a:hover {
  color: #67b0c7;
}
@media screen and (min-width: 900px) {
  .body-a__text {
    font-size: 16px;
  }
}

/* === entry =================== */
.entry {
  margin-top: 30px;
  padding-bottom: 34.9333333333%;
  background: url(../img/entry-bg-img.jpg) no-repeat bottom center/100%;
}
@media screen and (min-width: 900px) {
  .entry {
    margin-top: 120px;
    padding-bottom: 34.3915343915%;
    background-size: 100%;
  }
}

.entry__content {
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
  padding-top: 16px;
  padding-bottom: 32px;
  padding-inline: 15.5px;
  max-width: 600px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .entry__content {
    padding-top: 32px;
    padding-bottom: 44px;
    padding-inline: 48px;
    max-width: 100%;
  }
}

.entry__heading .heading-title::after {
  width: 80px;
}
@media screen and (min-width: 900px) {
  .entry__heading .heading-title::after {
    width: 128px;
  }
}

.entry__list {
  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) {
  .entry__list {
    margin-top: 41px;
  }
}

.list-box {
  border-bottom: 1px solid #ccc;
  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) {
  .list-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-left: 16px;
    gap: 0;
  }
}
.list-box:nth-child(5) {
  border-bottom: none;
}

.list-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.list-box__title {
  font-weight: 700;
  position: relative;
  padding-left: 16px;
}
.list-box__title::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  content: "";
  width: 8px;
  height: 8px;
  background: url(../img/entry-marker.png) no-repeat center center/8px;
}
@media screen and (min-width: 900px) {
  .list-box__title::after {
    top: 12px;
  }
}
@media screen and (min-width: 600px) {
  .list-box__title {
    width: 223px;
    font-size: 16px;
    font-weight: 700;
  }
}

.entry__list-text {
  font-size: 12px;
  margin-bottom: 14px;
}
@media screen and (min-width: 600px) {
  .entry__list-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .entry__list-text {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.entry__list-text a {
  text-decoration-line: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.entry__list-text a:hover {
  color: #67b0c7;
}

.entry__list-body {
  padding-left: 17px;
}
.entry__list-body .list-body__text:nth-child(n+3) {
  line-height: 1.58;
}
@media screen and (min-width: 900px) {
  .entry__list-body .list-body__text:nth-child(n+3) {
    line-height: 1.63;
  }
}
@media screen and (min-width: 900px) {
  .entry__list-body {
    padding-left: 21px;
  }
}

.list-body__text {
  position: relative;
  font-size: 12px;
}
@media screen and (min-width: 600px) {
  .list-body__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .list-body__text {
    font-size: 16px;
    padding-left: 4px;
  }
}
.list-body__text::before {
  position: absolute;
  top: 9px;
  left: -10px;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #4a3636;
}
@media screen and (min-width: 900px) {
  .list-body__text::before {
    top: 12px;
    width: 4px;
    height: 4px;
  }
}
.list-body__text a {
  text-decoration-line: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.list-body__text a:hover {
  color: #67b0c7;
}

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

.contact__heading .heading-title::after {
  width: 120px;
}
@media screen and (min-width: 900px) {
  .contact__heading .heading-title::after {
    width: 192px;
  }
}

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

.contact__form {
  margin-top: 24px;
  max-width: 600px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-top: 40px;
  }
}
@media screen and (min-width: 900px) {
  .contact__form {
    max-width: 848px;
    margin-inline: auto;
    margin-top: 41px;
  }
}

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

@media screen and (min-width: 900px) {
  .contact__field:nth-of-type(4), .contact__field:nth-of-type(5) {
    margin-top: 14px;
  }
}

@media screen and (min-width: 900px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.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: 768px) {
  .form-field__head {
    width: 220px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.form-field__head.is-option {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

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

.form-filed__tag {
  display: inline-block;
  border-radius: 4px;
  background: #ce2073;
  padding: 4px 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.form-field__item {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .form-field__item {
    width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .form-field__item {
    margin-top: 0px;
  }
}

.form-text {
  width: 100%;
  border-radius: 8px;
  border: none;
  background: #f5f5f5;
  line-height: 100%;
  padding: 17.5px 16px;
  outline: none;
}
@media screen and (min-width: 900px) {
  .form-text {
    font-size: 16px;
    padding: 16px 16px;
  }
}
.form-text::-webkit-input-placeholder {
  color: #ccc;
}
.form-text::-moz-placeholder {
  color: #ccc;
}
.form-text:-ms-input-placeholder {
  color: #ccc;
}
.form-text::-ms-input-placeholder {
  color: #ccc;
}
.form-text::placeholder {
  color: #ccc;
}
.form-text:focus {
  border: 1px solid #9ed0e0;
  background: #e9f6f8;
}
.form-text.is-error {
  border: 1px solid #ce2073;
  background-color: #fff0f7;
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border-radius: 8px;
  border: none;
  background-color: #f5f5f5;
  padding: 16px;
  background-image: url(../img/form-select-img.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 52px 100%;
  outline: none;
}
@media screen and (min-width: 900px) {
  .form-select {
    font-size: 16px;
  }
}
.form-select:focus {
  border: 1px solid #9ed0e0;
}
.form-select.is-error {
  border: 1px solid #ce2073;
  background-color: #fff0f7;
  background-image: url(../img/form-select-error.png);
  background-size: 52px 100%;
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (min-width: 900px) {
  .form-field__radios {
    margin-left: 1px;
  }
}

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

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

.form-radio__text {
  font-size: 14px;
  padding-left: 32px;
  position: relative;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
@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;
  background-color: #f5f5f5;
  left: 0;
}
.form-radio__text::after {
  width: 12px;
  height: 12px;
  background: #9ed0e0;
  left: 6px;
  opacity: 0;
}

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

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

.form-checkbox:hover .form-checkbox__text::before {
  border: 1px solid #9ed0e0;
}

.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__input:focus + .form-checkbox__text::before {
  border: 1px solid #9ed0e0;
}
.form-checkbox__input.is-error + .form-checkbox__text::before {
  border: 1px solid #ce2073;
  background-color: #fff0f7;
}

.form-checkbox__text {
  position: relative;
  padding-left: 36px;
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: none;
  background: #f5f5f5;
}
.form-checkbox__text::after {
  width: 14px;
  height: 9px;
  left: 5px;
  background: url(../img/contact-check-img.png) no-repeat center center/contain;
  opacity: 0;
}
.form-checkbox__text a {
  text-decoration-line: underline;
  font-weight: inherit;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  outline: none;
}
.form-checkbox__text a:hover {
  color: #9ed0e0;
}
.form-checkbox__text a:focus {
  border: 2px solid #9ed0e0;
  border-radius: 2px;
}

.contact__bottom {
  margin-top: 26px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact__bottom {
    margin-top: 40px;
  }
}
@media screen and (min-width: 900px) {
  .contact__bottom .button {
    padding: 4px 38px 6px;
  }
}

/* === footer =================== */
.footer {
  position: relative;
  padding-top: 41px;
  background: url(../img/sp/wave-img-sp.png) repeat-x bottom 42px left -6px/96px;
}
@media screen and (min-width: 900px) {
  .footer {
    padding-top: 120px;
    background: url(../img/wave-img.png) repeat-x bottom 53px left/252px;
  }
}

.footer__bg-image {
  display: none;
}
@media screen and (min-width: 900px) {
  .footer__bg-image {
    position: absolute;
    display: block;
    top: 55px;
    right: 0;
    width: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__bg-image {
    top: 80px;
    right: 50%;
    -webkit-transform: translateX(676px);
            transform: translateX(676px);
    width: 100px;
  }
}
.footer__inner {
  position: relative;
  padding-bottom: 63.71px;
}
@media screen and (min-width: 900px) {
  .footer__inner {
    padding-bottom: 240px;
  }
}

.footer__logo {
  position: absolute;
  top: 95px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 325px;
  z-index: -10;
}
@media screen and (min-width: 900px) {
  .footer__logo {
    top: 135px;
    width: 742px;
  }
}
.footer__head {
  text-align: center;
}

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

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

.sns__item {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.sns__item:hover {
  opacity: 0.8;
}
.sns__item img {
  width: 32px;
}
@media screen and (min-width: 900px) {
  .sns__item img {
    width: 40px;
  }
}

.footer__body {
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  margin-top: 48px;
  padding-bottom: 30px;
  background: #fff;
  border-radius: 16px;
}
@media screen and (min-width: 900px) {
  .footer__body {
    width: 100%;
    max-width: 1024px;
    margin-top: 119px;
    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;
    padding-bottom: 0;
  }
}

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

.footer__content {
  margin-top: 21px;
}
@media screen and (min-width: 900px) {
  .footer__content {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; /* 均等に広げる */
  }
}

@media screen and (min-width: 900px) {
  .footer__content-inner {
    max-width: 350px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .footer__content-inner {
    max-width: 389px;
  }
}

.footer__content-logo {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer__content-logo {
    text-align: left;
  }
}
.footer__content-logo img {
  width: 153px;
}
@media screen and (min-width: 900px) {
  .footer__content-logo img {
    width: 183px;
  }
}

.footer__content-list {
  width: 280px;
  margin-top: 30px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__content-list {
    width: 350px;
  }
}
@media screen and (min-width: 900px) {
  .footer__content-list {
    width: auto;
    margin-top: 25px;
  }
}

.content-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .content-list {
    gap: 13.5px;
  }
}

.list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.list-item__title {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  width: 80px;
  text-align: left;
  padding-left: 16px;
}
@media screen and (min-width: 768px) {
  .list-item__title {
    font-size: 14px;
    width: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .list-item__title {
    font-size: 16px;
    width: 120px;
  }
}
.list-item__title::before {
  content: "";
  position: absolute;
  top: 5.5px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #9ed0e0;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .list-item__title::before {
    top: 7.5px;
  }
}
@media screen and (min-width: 1200px) {
  .list-item__title::before {
    top: 8px;
  }
}

.list-item__text {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .list-item__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .list-item__text {
    font-size: 16px;
  }
}

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

/* === pagetop =================== */
.pagetop {
  display: block;
  width: 77px;
  margin-top: 23px;
  margin-inline: auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.pagetop:hover {
  opacity: 0.8;
}
@media screen and (min-width: 900px) {
  .pagetop {
    position: fixed;
    width: 100px;
    right: 40px;
    bottom: 30px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    z-index: 50;
  }
}