@charset "UTF-8";
body {
  color: #4a3636;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  font-weight: 400;
  background: #e9f6f8;
}
body.is-fixed {
  overflow-y: hidden;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

.inner {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .inner {
    padding-inline: 40px;
    max-width: 1104px;
    margin-inline: auto;
  }
}

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

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

.link:hover {
  color: #67b0c7;
  text-decoration: underline;
  cursor: pointer;
}

.link-underline {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.link-underline:hover {
  color: #67b0c7;
  cursor: pointer;
}

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

.button {
  font-size: 16px;
  font-weight: 700;
  padding: 6px 22px 6px 22px;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #ffffff;
  -webkit-box-shadow: 0 4px 0 0 #4a3636;
          box-shadow: 0 4px 0 0 #4a3636;
}
@media (max-width: 373px) {
  .button.long-button {
    font-size: 14px;
    padding: 6px 10px;
    display: inline-block;
    max-width: 100%;
    text-align: center;
  }
}
.button:hover {
  background: #ffee56;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .button {
    font-size: 20px;
    padding: 10px 38px 10px;
  }
}

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

.heading__image img {
  width: 38px;
}
@media screen and (min-width: 768px) {
  .heading__image img {
    width: 49px;
  }
}

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .title {
    gap: 8px;
  }
}

.title-en {
  font-family: "Courgette", sans-serif;
  font-size: 16px;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .title-en {
    font-size: 20px;
  }
}

.title-ja {
  font-family: "Kiwi Maru", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 6px;
  border-bottom: 6px solid #ffee56;
}
@media screen and (min-width: 768px) {
  .title-ja {
    font-size: 32px;
    padding-bottom: 8px;
    border-bottom: 8px solid #ffee56;
  }
}

.header {
  height: 64px;
  background: #ffffff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
.header__inner {
  padding-inline: 20px;
  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;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .header__inner {
    padding-inline: 24px;
  }
}

.header-logo {
  z-index: 60;
}
.header-logo img {
  width: 210px;
}
@media screen and (min-width: 1200px) {
  .header-logo img {
    width: 183px;
  }
}

.header__nav {
  background: #ffffff;
  width: 100%;
  height: calc(100% - 64px);
  position: fixed;
  top: 64px;
  left: 0;
  z-index: 51;
  padding: 74px 15px;
  -webkit-transform: translateY(calc(-100% - 64px));
          transform: translateY(calc(-100% - 64px));
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.header__nav.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 1200px) {
  .header__nav {
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    width: auto;
    height: auto;
    background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

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

.header__nav-link {
  font-size: 14px;
  display: inline-block;
  padding-block: 8px;
  font-size: 14px;
}
@media screen and (min-width: 1200px) {
  .header__nav-link.nav-sp {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .header__nav-link {
    font-size: 12px;
  }
}

.header__button {
  margin-top: 41px;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .header__button {
    margin-top: 0;
  }
}

.header--button {
  font-size: 16px;
}
@media screen and (min-width: 1200px) {
  .header--button {
    font-size: 14px;
    padding: 6px 22px 6px;
  }
}

.drawer-icon {
  position: relative;
  width: 32px;
  height: 27px;
  z-index: 60;
}
.drawer-icon.is-checked .drawer-icon__bar-group {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  top: 12px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 12px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 1200px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar-group {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 32px;
  height: 3px;
  top: 0;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}

.drawer-icon__bar-long {
  width: 25.6px;
  height: 3px;
  background: #4a3636;
  border-radius: 6px;
}

.drawer-icon__bar-short {
  width: 4.8px;
  height: 3px;
  background: #4a3636;
  border-radius: 6px;
}

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

.fv {
  padding-top: 64px;
  padding-bottom: 156px;
}
@media screen and (min-width: 768px) {
  .fv {
    padding-bottom: 97px;
  }
}

.fv__inner {
  position: relative;
}

.fv__view img {
  width: 100%;
  height: 554px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 24px 24px;
}
@media screen and (min-width: 768px) {
  .fv__view img {
    height: 740px;
    border-radius: 0 0 40px 40px;
    -o-object-position: center bottom;
       object-position: center bottom;
  }
}

.fv__content {
  position: absolute;
  bottom: -156px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__content {
    bottom: -74px;
  }
}

.fv__text {
  font-size: 14px;
  font-family: "Kiwi Maru", sans-serif;
  line-height: 1.25; /* 17.5px */
  text-shadow: 0 0 30px #fff;
}
@media screen and (min-width: 768px) {
  .fv__text {
    font-size: 24px;
  }
}

.fv__title {
  margin-top: 20px;
  padding-inline: 10px;
  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: 768px) {
  .fv__title {
    margin-top: 24px;
    gap: 16px;
  }
}

.fv__title1 img {
  width: 335px;
  -webkit-animation: shake1 1s ease-in-out 0s 3;
          animation: shake1 1s ease-in-out 0s 3; /* 1秒 × 3回 */
}
@media screen and (min-width: 768px) {
  .fv__title1 img {
    width: 520px;
  }
}

.fv__title2 img {
  width: 240px;
  -webkit-animation: shake2 1s ease-in-out 0.2s 3;
          animation: shake2 1s ease-in-out 0.2s 3; /* 少し遅れてスタート */
}
@media screen and (min-width: 768px) {
  .fv__title2 img {
    width: 356px;
  }
}

@-webkit-keyframes shake1 {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(1.5deg);
            transform: rotate(1.5deg);
  }
  75% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
  }
}

@keyframes shake1 {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(1.5deg);
            transform: rotate(1.5deg);
  }
  75% {
    -webkit-transform: rotate(-1.5deg);
            transform: rotate(-1.5deg);
  }
}
@-webkit-keyframes shake2 {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-1.2deg);
            transform: rotate(-1.2deg);
  }
  75% {
    -webkit-transform: rotate(1.2deg);
            transform: rotate(1.2deg);
  }
}
@keyframes shake2 {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-1.2deg);
            transform: rotate(-1.2deg);
  }
  75% {
    -webkit-transform: rotate(1.2deg);
            transform: rotate(1.2deg);
  }
}
.fv__image {
  position: relative;
  margin-top: 10px;
  max-width: 335px;
  height: 522px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .fv__image {
    margin-top: 0;
    max-width: 848px;
    height: 538px;
  }
}

.fv__image-main {
  position: absolute;
  top: 103px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 30;
}
@media screen and (min-width: 900px) {
  .fv__image-main {
    top: 33px;
  }
}
.fv__image-main img {
  width: 200px;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .fv__image-main img {
    width: 250px;
  }
}

.fv-image__box {
  border-radius: 12.8px;
  width: 160px;
  overflow: hidden;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 30;
  top: 226px;
}
@media screen and (min-width: 768px) {
  .fv-image__box {
    border-radius: 16px;
    width: 200px;
    top: 187px;
  }
}

.fv-box__title {
  color: #ffffff;
  font-size: 12.8px;
  font-weight: 700;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
  padding: 6.5px 9.6px;
}
@media screen and (min-width: 768px) {
  .fv-box__title {
    font-size: 16px;
    padding: 8px 12px;
  }
}

.fv-box__body {
  background: #ffffff;
  padding-top: 12px;
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .fv-box__body {
    padding-top: 15px;
    padding-bottom: 32px;
  }
}

.fv-box__subtitle {
  font-size: 12px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fv-box__subtitle {
    font-size: 14px;
  }
}
.fv-box__subtitle::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 2.4px;
  background: #ce2073;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -2px;
}
@media screen and (min-width: 768px) {
  .fv-box__subtitle::before {
    width: 56px;
    height: 3px;
    bottom: -3px;
  }
}

.fv-box__text {
  font-weight: 700;
  margin-top: 6.4px;
}
@media screen and (min-width: 768px) {
  .fv-box__text {
    margin-top: 8px;
  }
}

.fv-box__button {
  margin-top: 17px;
}
@media screen and (min-width: 768px) {
  .fv-box__button {
    margin-top: 22px;
  }
}

.fv-box--button {
  font-size: 14px;
  padding: 4px 22px 5px 22px;
}
@media screen and (min-width: 768px) {
  .fv-box--button {
    font-size: 16px;
    padding: 5px 22px 7px 22px;
  }
}

.fukidashi-image {
  position: absolute;
  top: 9px;
  left: 2px;
}
@media screen and (min-width: 900px) {
  .fukidashi-image {
    top: 3px;
    left: 41px;
  }
}
.fukidashi-image img {
  width: 140px;
  height: 78px;
}
@media screen and (min-width: 900px) {
  .fukidashi-image img {
    width: 240px;
    height: 126px;
  }
}

.fukidashi-word-image {
  position: absolute;
  top: 9px;
  left: 21px;
}
@media screen and (min-width: 900px) {
  .fukidashi-word-image {
    top: 4px;
    left: 71px;
  }
}
.fukidashi-word-image img {
  width: 86px;
  height: 60px;
}
@media screen and (min-width: 900px) {
  .fukidashi-word-image img {
    width: 151px;
    height: 104px;
  }
}

.fv__image-present {
  position: absolute;
  top: 0;
  right: 25px;
  z-index: 20;
}
@media screen and (min-width: 900px) {
  .fv__image-present {
    top: 17px;
    right: 127px;
  }
}
.fv__image-present img {
  width: 110px;
}
@media screen and (min-width: 900px) {
  .fv__image-present img {
    width: 181px;
  }
}

.food-image {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 40;
}
@media screen and (min-width: 900px) {
  .food-image {
    bottom: -21px;
    left: 0px;
  }
}
.food-image img {
  width: 54px;
  height: 52px;
}
@media screen and (min-width: 900px) {
  .food-image img {
    width: 127px;
    height: 123px;
  }
}

.drink-image {
  position: absolute;
  bottom: 17px;
  left: 43px;
  z-index: 30;
}
@media screen and (min-width: 900px) {
  .drink-image {
    bottom: 19px;
    left: 101px;
  }
}
.drink-image img {
  width: 47px;
  height: 124px;
}
@media screen and (min-width: 900px) {
  .drink-image img {
    width: 111px;
    height: 292px;
  }
}

.cat-black-image {
  position: absolute;
  top: 395px;
  right: 0px;
  z-index: 40;
}
@media screen and (min-width: 900px) {
  .cat-black-image {
    top: 310px;
    right: 62px;
  }
}
.cat-black-image img {
  width: 62px;
}
@media screen and (min-width: 900px) {
  .cat-black-image img {
    width: 172px;
  }
}

.cat-brown-image {
  position: absolute;
  top: 450px;
  right: 9px;
  z-index: 40;
}
@media screen and (min-width: 900px) {
  .cat-brown-image {
    top: 430px;
    right: -1px;
  }
}
.cat-brown-image img {
  width: 98px;
}
@media screen and (min-width: 900px) {
  .cat-brown-image img {
    width: 233px;
  }
}

.about {
  padding-top: 32px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about {
    padding-top: 100px;
  }
}
@media screen and (min-width: 900px) {
  .about {
    padding-top: 79px;
  }
}

.about__inner {
  position: relative;
}
.about__inner::before {
  content: "";
  position: absolute;
  width: 54px;
  height: 114px;
  top: -9px;
  right: 0;
  background: url("../img/foot-print-top.png") no-repeat center center/contain;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about__inner::before {
    width: 100px;
    height: 220px;
    top: -81px;
    right: -39px;
  }
}

.about__box {
  border-radius: 24px;
  background: #ffffff;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 46px;
}
@media screen and (min-width: 768px) {
  .about__box {
    max-width: 848px;
    margin-inline: auto;
    padding-bottom: 52px;
    border-radius: 40px;
  }
}

.about__title {
  position: relative;
}
.about__title::before {
  content: "";
  position: absolute;
  top: -53px;
  left: -43px;
  background: url("../img/about-photo-l.png") no-repeat center center/contain;
  width: 104px;
  height: 71px;
}
@media (max-width: 340px) {
  .about__title::before {
    width: 80px;
    left: -20px;
  }
}
@media screen and (min-width: 1200px) {
  .about__title::before {
    top: -60px;
    left: -179px;
    width: 148px;
    height: 122px;
  }
}
.about__title::after {
  content: "";
  position: absolute;
  top: -54px;
  right: -55px;
  background: url("../img/about-photo-r.png") no-repeat center center/contain;
  width: 104px;
  height: 71px;
}
@media (max-width: 340px) {
  .about__title::after {
    width: 80px;
    right: -20px;
  }
}
@media screen and (min-width: 1200px) {
  .about__title::after {
    top: -52px;
    right: -179px;
    width: 147px;
    height: 122px;
  }
}

.about__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-top: 23px;
}
@media screen and (min-width: 768px) {
  .about__body {
    gap: 32px;
    margin-top: 33px;
  }
}

.about__text-head {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .about__text-head {
    font-size: 16px;
  }
}

.about__text-body {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .about__text-body {
    font-size: 16px;
    gap: 27px;
  }
}

.about__text-foot {
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px dashed #9ed0e0;
  padding-top: 8px;
  padding-bottom: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .about__text-foot {
    font-size: 20px;
    padding-top: 12px;
    padding-bottom: 10px;
  }
}

.about__button {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .about__button {
    margin-top: 44px;
  }
}

.about-bg-photo-l {
  position: absolute;
  top: 395px;
  left: -139px;
  z-index: -1;
  border-radius: 24px;
}
@media screen and (min-width: 1200px) {
  .about-bg-photo-l {
    top: 74px;
    left: -542px;
  }
}
.about-bg-photo-l img {
  width: 200px;
}
@media screen and (min-width: 1200px) {
  .about-bg-photo-l img {
    width: 480px;
  }
}
@media screen and (min-width: 1200px) {
  .about-bg-photo-l::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    top: -95px;
    left: 317px;
    background: url("../img/about-bg-square.png") no-repeat center center/contain;
    z-index: -2;
  }
}

.about-bg-photo-r {
  position: absolute;
  top: 273px;
  right: -140px;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .about-bg-photo-r {
    top: 73px;
    right: -488px;
  }
}
.about-bg-photo-r img {
  width: 200px;
}
@media screen and (min-width: 1200px) {
  .about-bg-photo-r img {
    width: 480px;
  }
}

.about-under-triangle {
  position: absolute;
  bottom: -37px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .about-under-triangle {
    bottom: -50px;
  }
}
.about-under-triangle img {
  width: 100px;
}
@media screen and (min-width: 900px) {
  .about-under-triangle img {
    width: 140px;
  }
}

.about-under-sakamichi {
  position: absolute;
  left: 0;
  top: 741px;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .about-under-sakamichi {
    left: 0px;
    top: 923px;
  }
}
@media screen and (min-width: 1200px) {
  .about-under-sakamichi {
    left: -103px;
    top: 399px;
  }
}
.about-under-sakamichi img {
  width: 138px;
}
@media screen and (min-width: 1200px) {
  .about-under-sakamichi img {
    width: 427px;
    max-width: 100%;
  }
}

.about-under-cloth {
  position: absolute;
  right: 57px;
  bottom: -119px;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .about-under-cloth {
    right: -130px;
    bottom: -79px;
  }
}
.about-under-cloth img {
  width: 133px;
}
@media screen and (min-width: 1200px) {
  .about-under-cloth img {
    width: 308px;
  }
}

.about-under-button-l {
  position: absolute;
  right: 39px;
  bottom: -38px;
}
@media screen and (min-width: 1200px) {
  .about-under-button-l {
    right: -15px;
    bottom: 175px;
  }
}
.about-under-button-l img {
  width: 30px;
}
@media screen and (min-width: 1200px) {
  .about-under-button-l img {
    width: 62px;
  }
}
@media screen and (min-width: 1200px) {
  .about-under-button-l::before, .about-under-button-l::after {
    content: "";
    position: absolute;
    width: 817px;
    height: 15px;
    z-index: -2;
  }
  .about-under-button-l::before {
    top: 5px;
    left: 8px;
    background: url("../img/about-bg-wavyline-top.png") repeat center center/contain;
  }
  .about-under-button-l::after {
    top: 37px;
    left: -60px;
    background: url("../img/about-bg-wavyline-bottom.png") repeat center center/contain;
  }
}

.about-under-button-r {
  position: absolute;
  right: 21px;
  bottom: -60px;
}
@media screen and (min-width: 1200px) {
  .about-under-button-r {
    right: -54px;
    bottom: 128px;
  }
}
.about-under-button-r img {
  width: 19px;
}
@media screen and (min-width: 1200px) {
  .about-under-button-r img {
    width: 40px;
  }
}

.about__logo {
  margin-top: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 10px;
}
@media screen and (min-width: 1200px) {
  .about__logo {
    margin-top: 167px;
  }
}

.onomichi-icon-about {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .onomichi-icon-about {
    max-width: 890px;
  }
}

@media screen and (min-width: 1200px) {
  .about__slider {
    margin-top: -5px;
  }
}

.about-slider__inner {
  padding-inline: 0;
}

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

.how-to-enter {
  padding-top: 64px;
  padding-bottom: 37px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .how-to-enter {
    padding-top: 120px;
  }
}

.how-to-enter__inner {
  position: relative;
}
@media screen and (min-width: 900px) {
  .how-to-enter__inner::before {
    content: "";
    position: absolute;
    background: url("../img/foot-print-down.png") no-repeat center center/contain;
    width: 100px;
    height: 220px;
    top: 148px;
    right: -169px;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    z-index: -1;
  }
  .how-to-enter__inner::after {
    content: "";
    position: absolute;
    background: url("../img/foot-print-down.png") no-repeat center center/contain;
    width: 100px;
    height: 220px;
    bottom: 22px;
    left: -169px;
    z-index: -1;
  }
}

.how-to-enter__heading-image {
  position: relative;
}
.how-to-enter__heading-image::before {
  content: "";
  position: absolute;
  width: 105px;
  height: 63px;
  top: -1px;
  right: 4px;
  z-index: -2;
  background: url("../img/how-to-enter-cat-brown.png") no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .how-to-enter__heading-image::before {
    width: 238px;
    height: 141px;
    top: -26px;
    right: -13px;
  }
}
.how-to-enter__heading-image::after {
  content: "";
  position: absolute;
  width: 94px;
  height: 80px;
  top: 4px;
  right: -51px;
  background: url("../img/how-to-enter-cat-gray.png") no-repeat center center/contain;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .how-to-enter__heading-image::after {
    width: 214px;
    height: 181px;
    top: -15px;
    right: -138px;
  }
}

.how-to-enter__title {
  position: relative;
}
.how-to-enter__title::before {
  content: "";
  position: absolute;
  width: 149px;
  height: 223px;
  top: -44px;
  right: 88px;
  background: url("../img/how-to-enter-map.png") no-repeat center center/contain;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .how-to-enter__title::before {
    width: 463px;
    height: 687px;
    top: -114px;
    right: 338px;
  }
}

.how-to-enter__content {
  margin-top: 31px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__content {
    margin-top: 40px;
  }
}

.how-to-enter__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15px;
    max-width: 1024px;
    margin-inline: auto;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__boxes {
    gap: 32px;
  }
}

.how-to-enter__box {
  text-align: center;
  position: relative;
}
@media screen and (min-width: 900px) {
  .how-to-enter__box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
  }
  .how-to-enter__box:nth-of-type(2) {
    margin-top: 68px;
  }
}
.how-to-enter__box:nth-of-type(1)::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 120px;
  top: -64px;
  right: 0;
  background: url("../img/foot-print-down.png") no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .how-to-enter__box:nth-of-type(1)::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    width: 100px;
    height: 220px;
    top: 396px;
    left: -208px;
  }
}
.how-to-enter__box:nth-of-type(2)::before {
  content: "";
  width: 8px;
  height: 35px;
  position: absolute;
  top: -33px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url("../img/sp/how-to-enter-waveline-sp.png") no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .how-to-enter__box:nth-of-type(2)::before {
    background: url("../img/how-to-enter-waveline-pc.png") no-repeat center center/contain;
    width: 113px;
    height: 24px;
    top: 137px;
    left: -40px;
  }
}
.how-to-enter__box:nth-of-type(2)::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 120px;
  top: -18px;
  left: 0;
  background: url("../img/foot-print-down.png") no-repeat center center/contain;
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .how-to-enter__box:nth-of-type(2)::after {
    display: none;
  }
}
.how-to-enter__box:nth-of-type(3)::before {
  content: "";
  width: 8px;
  height: 35px;
  position: absolute;
  top: -33px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url("../img/sp/how-to-enter-waveline-sp.png") no-repeat center center/contain;
}
@media screen and (min-width: 900px) {
  .how-to-enter__box:nth-of-type(3)::before {
    background: url("../img/how-to-enter-waveline-pc.png") no-repeat center center/contain;
    width: 113px;
    height: 24px;
    top: 205px;
    left: -32px;
  }
}
.how-to-enter__box:nth-of-type(3)::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 120px;
  top: -80px;
  right: 0;
  background: url("../img/foot-print-top.png") no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .how-to-enter__box:nth-of-type(3)::after {
    display: none;
  }
}

.how-to-enter__box-image img {
  width: 196px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__box-image img {
    width: 250px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__box-image img {
    width: 280px;
  }
}

.how-to-enter__box-body {
  margin-top: 16px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__box-body {
    margin-top: 25px;
  }
}

.how-to-enter__box-title {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (min-width: 1200px) {
  .how-to-enter__box-title {
    font-size: 20px;
  }
}

.how-to-enter__box-text {
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__box-text {
    font-size: 13px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__box-text {
    font-size: 16px;
  }
}

.how-to-enter__follow {
  padding: 8px 12px;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.instagram-icon img {
  width: 20px;
}
@media screen and (min-width: 1200px) {
  .instagram-icon img {
    width: 24px;
  }
}

.how-to-enter__follow-text {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .how-to-enter__follow-text {
    font-size: 16px;
  }
}

.how-to-enter__button {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .how-to-enter__button {
    margin-top: 60px;
  }
}

.prizes {
  padding-top: 90px;
  padding-bottom: 44px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 900px) {
  .prizes {
    padding-top: 250px;
  }
}

.prizes__inner {
  padding-inline: 0;
}
@media screen and (min-width: 900px) {
  .prizes__inner {
    padding-inline: 40px;
  }
}

.prizes__bottom-image {
  -webkit-transform: scale(1.55);
          transform: scale(1.55);
  z-index: -1;
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .prizes__bottom-image {
    -webkit-transform: scale(1);
            transform: scale(1);
    margin-top: -20px;
  }
}
.prizes__bottom-image img {
  width: 100%;
}

.prizes__body {
  padding-inline: 20px;
  background: #ffffff;
  border-radius: 24px;
  padding-bottom: 40px;
  padding-top: 59px;
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .prizes__body {
    padding-top: 100px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__body {
    max-width: 1104px;
    margin-inline: auto;
    padding-top: 65px;
    padding-inline: 56px;
    padding-bottom: 64px;
  }
}

.prizes__heading {
  position: absolute;
  top: -63px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .prizes__heading {
    top: -121px;
  }
}
.prizes__heading::after {
  content: "";
  position: absolute;
  background: url("../img/sp/prizes-bg-sp.png") no-repeat center center/contain;
  width: 240px;
  height: 83px;
  z-index: -1;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .prizes__heading::after {
    background: url("../img/prizes-bg-pc.png") no-repeat center center/contain;
    width: 366px;
    height: 149px;
    top: -28px;
  }
}

.prizes__heading-image {
  position: relative;
}
@media screen and (min-width: 900px) {
  .prizes__heading-image::before {
    content: "";
    position: absolute;
    background: url("../img/prizes-head-bg-l.png") no-repeat center center/contain;
    width: 280px;
    height: 86px;
    top: 20px;
    left: -310px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__heading-image::before {
    width: 315px;
    height: 86px;
    top: 0;
    left: -383px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__heading-image::after {
    content: "";
    position: absolute;
    background: url("../img/prizes-head-bg-r.png") no-repeat center center/contain;
    width: 280px;
    height: 86px;
    top: 20px;
    right: -310px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__heading-image::after {
    width: 315px;
    height: 86px;
    top: 0;
    right: -383px;
  }
}

.prizes__description {
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prizes__description {
    font-size: 16px;
  }
}

.prizes__boxes {
  margin-top: 47px;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 39px 15px;
}
@media screen and (min-width: 900px) {
  .prizes__boxes {
    margin-top: 83px;
    gap: 80px 34px;
    grid-template-rows: 1.43fr 1fr;
    grid-template-columns: repeat(6, 1fr);
  }
}

.prizes__box {
  position: relative;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.prizes__box:hover .prizes__box-body {
  overflow: hidden;
  outline: 2px solid #9ed0e0;
}
.prizes__box:hover .prizes__image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.prizes__box:hover .prizes__name {
  background-image: linear-gradient(315deg, #9ed0e0 25px, transparent 0);
}
.prizes__box:nth-of-type(5) {
  grid-column: 1/span 2;
  justify-self: center;
  width: 48%;
}
@media screen and (min-width: 900px) {
  .prizes__box:nth-of-type(5) {
    grid-column: auto;
    width: auto;
    justify-self: auto;
  }
}
@media screen and (min-width: 900px) {
  .prizes__box:nth-child(1) {
    grid-column: 1/span 3;
    grid-row: 1;
    border-radius: 24px;
  }
  .prizes__box:nth-child(2) {
    grid-column: 4/span 3;
    grid-row: 1;
    border-radius: 24px;
  }
  .prizes__box:nth-child(3) {
    grid-column: 1/span 2;
    grid-row: 2;
    border-radius: 16px;
  }
  .prizes__box:nth-child(4) {
    grid-column: 3/span 2;
    grid-row: 2;
    border-radius: 16px;
  }
  .prizes__box:nth-child(5) {
    grid-column: 5/span 2;
    grid-row: 2;
    border-radius: 16px;
  }
  .prizes__box:nth-of-type(1) .prizes__image img, .prizes__box:nth-of-type(2) .prizes__image img {
    max-height: 340px;
    border-top-right-radius: 24px;
    border-top-left-radius: 24px;
  }
  .prizes__box:nth-of-type(1) .prizes__name, .prizes__box:nth-of-type(2) .prizes__name {
    font-size: 20px;
    height: 120px;
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    background-image: linear-gradient(315deg, #67b0c7 70px, transparent 0);
  }
  .prizes__box:nth-of-type(1) .prizes-modal-icon, .prizes__box:nth-of-type(2) .prizes-modal-icon {
    width: 32px;
    bottom: 15px;
    right: 13px;
  }
  .prizes__box:nth-of-type(1) .prizes__box-head, .prizes__box:nth-of-type(2) .prizes__box-head {
    background: url("../img/sp/prizes-head-bg.png") no-repeat center center/97px 97px;
    width: 97px;
    height: 97px;
    top: -49px;
    gap: 2px;
  }
  .prizes__box:nth-of-type(1) .prizes-head__text, .prizes__box:nth-of-type(2) .prizes-head__text {
    font-size: 16px;
  }
  .prizes__box:nth-of-type(1) .prizes-head__number, .prizes__box:nth-of-type(2) .prizes-head__number {
    font-size: 47px;
  }
  .prizes__box:nth-of-type(1) .prizes__image-box, .prizes__box:nth-of-type(2) .prizes__image-box {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
  .prizes__box:nth-of-type(1):hover .prizes__name, .prizes__box:nth-of-type(2):hover .prizes__name {
    background-image: linear-gradient(315deg, #9ed0e0 70px, transparent 0);
  }
  .prizes__box:nth-of-type(3) .prizes__image img, .prizes__box:nth-of-type(4) .prizes__image img, .prizes__box:nth-of-type(5) .prizes__image img {
    max-height: 240px;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
  }
  .prizes__box:nth-of-type(3) .prizes__name, .prizes__box:nth-of-type(4) .prizes__name, .prizes__box:nth-of-type(5) .prizes__name {
    font-size: 16px;
    height: 80px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    background-image: linear-gradient(315deg, #67b0c7 45px, transparent 0);
  }
  .prizes__box:nth-of-type(3) .prizes-modal-icon, .prizes__box:nth-of-type(4) .prizes-modal-icon, .prizes__box:nth-of-type(5) .prizes-modal-icon {
    width: 21px;
    bottom: 9px;
    right: 9px;
  }
  .prizes__box:nth-of-type(3) .prizes__box-head, .prizes__box:nth-of-type(4) .prizes__box-head, .prizes__box:nth-of-type(5) .prizes__box-head {
    background: url("../img/sp/prizes-head-bg.png") no-repeat center center/78px 78px;
    width: 78px;
    height: 78px;
    top: -39px;
  }
  .prizes__box:nth-of-type(3) .prizes-head__text, .prizes__box:nth-of-type(4) .prizes-head__text, .prizes__box:nth-of-type(5) .prizes-head__text {
    font-size: 12.8px;
  }
  .prizes__box:nth-of-type(3) .prizes-head__number, .prizes__box:nth-of-type(4) .prizes-head__number, .prizes__box:nth-of-type(5) .prizes-head__number {
    font-size: 36px;
  }
  .prizes__box:nth-of-type(3) .prizes__image-box, .prizes__box:nth-of-type(4) .prizes__image-box, .prizes__box:nth-of-type(5) .prizes__image-box {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
  .prizes__box:nth-of-type(3):hover .prizes__name, .prizes__box:nth-of-type(4):hover .prizes__name, .prizes__box:nth-of-type(5):hover .prizes__name {
    background-image: linear-gradient(315deg, #9ed0e0 45px, transparent 0);
  }
}

.prizes__box-head {
  background: url("../img/sp/prizes-head-bg.png") no-repeat center center/47px 47px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1px;
  position: absolute;
  width: 47px;
  height: 47px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -23px;
  z-index: 50;
}

.prizes-head__text {
  margin-top: 1px;
  font-size: 7.5px;
  font-weight: 700;
}

.prizes-head__number {
  font-size: 23px;
  font-weight: 700;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
}

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

.prizes__image-box {
  overflow: hidden;
}

.prizes__image {
  width: 100%;
}
.prizes__image img {
  width: 100%;
  height: auto;
  display: block;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}

.prizes__name {
  position: relative;
  font-weight: 700;
  height: 56px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: linear-gradient(315deg, #67b0c7 25px, transparent 0);
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.prizes-modal-icon {
  position: absolute;
  width: 13px;
  bottom: 5px;
  right: 4px;
}
@media screen and (min-width: 768px) {
  .prizes-modal-icon {
    bottom: 0;
  }
}

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

.prizes-bg__image {
  width: 560px;
}

.prizes__modal {
  border: 2px solid #fff;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
}
.prizes__modal::-ms-backdrop {
  opacity: 0.6;
  background: #000;
}
.prizes__modal::backdrop {
  opacity: 0.6;
  background: #000;
}

.prizes__modal-image img {
  width: 336px;
}
@media screen and (min-width: 900px) {
  .prizes__modal-image img {
    width: 480px;
  }
}

.prizes__modal-body {
  padding-top: 39px;
  padding-bottom: 56px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prizes__modal-body {
    padding-top: 32px;
    padding-bottom: 106px;
  }
}

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

.prizes__modal-text {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .prizes__modal-text {
    font-size: 12px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__modal-text {
    font-size: 16px;
  }
}

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

.prizes__modal--button {
  outline: none;
  color: #4a3636;
}
@media screen and (min-width: 768px) {
  .prizes__modal--button {
    font-size: 16px;
    padding: 6px 22px 6px 22px;
  }
}

.spots {
  background: #67b0c7;
  padding-bottom: 30px;
  position: relative;
  padding-top: 3px;
}
@media screen and (min-width: 768px) {
  .spots {
    margin-top: -15px;
  }
}
@media screen and (min-width: 900px) {
  .spots {
    margin-top: -73px;
    padding-top: 12px;
    padding-bottom: 2px;
  }
}
.spots::before {
  content: "";
  position: absolute;
  background: url("../img/sp/wave-top-sp.png") repeat top left/96px auto;
  width: 100%;
  height: 45.7px;
  top: -44px;
}
@media screen and (min-width: 900px) {
  .spots::before {
    background: url("../img/wave-top-pc.png") repeat top left/252px auto;
    height: 120px;
    top: -110px;
  }
}
.spots::after {
  content: "";
  position: absolute;
  background: url("../img/sp/wave-bottom-sp.png") repeat top left/96px auto;
  width: 100%;
  height: 46.7px;
  bottom: -33px;
}
@media screen and (min-width: 900px) {
  .spots::after {
    background: url("../img/wave-bottom-pc.png") repeat top left/252px auto;
    height: 120px;
    bottom: -117px;
  }
}

.spots__inner {
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .spots__inner {
    position: relative;
  }
  .spots__inner::before {
    content: "";
    position: absolute;
    background: url("../img/foot-print-top.png") no-repeat center center/contain;
    width: 100px;
    height: 220px;
    bottom: -1px;
    left: 35px;
  }
}

.spots-content__inner {
  padding-inline: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
@media screen and (min-width: 900px) {
  .spots-content__inner {
    padding-left: 150px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: -24px;
    padding-bottom: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .spots-content__inner {
    padding-left: 244px;
  }
}

.spots__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spots__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.spots__heading-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: none;
}
.spots__heading-icon img {
  width: 28px;
  max-width: none;
}
@media screen and (min-width: 900px) {
  .spots__heading-icon img {
    width: 56px;
  }
}

.spots__heading-text {
  color: #ffffff;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  font-family: "Kiwi Maru", sans-serif;
}
@media screen and (min-width: 900px) {
  .spots__heading-text {
    font-size: 40px;
  }
}

.spots__slider {
  width: 100%;
  position: relative;
}

.spots__slide {
  height: auto;
}

.spots-card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
}
@media screen and (min-width: 900px) {
  .spots-card {
    border-radius: 24px;
  }
}

.spots-card__image {
  width: 100%;
}
.spots-card__image img {
  width: 100%;
  height: 100%;
}

.spots-card__body {
  background: #ffffff;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  padding: 18px 21px 31px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 900px) {
  .spots-card__body {
    padding: 14px 20px 14px;
    gap: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .spots-card__body {
    padding: 26px 32px 41px;
    gap: 24px;
  }
}

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

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

.spots__prev::after,
.spots__next::after {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots__prev,
  .spots__next {
    position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    top: auto;
  }
}
@media screen and (min-width: 1200px) {
  .spots__prev,
  .spots__next {
    width: 80px;
    height: 80px;
  }
}

@media screen and (min-width: 900px) {
  .spots__prev {
    left: -27px;
    bottom: -43px;
    background: url("../img/spots-prev.png") no-repeat center center/contain;
  }
}
@media screen and (min-width: 1200px) {
  .spots__prev {
    left: -48px;
    bottom: -24px;
  }
}

@media screen and (min-width: 900px) {
  .spots__next {
    right: 372px;
    bottom: -43px;
    background: url("../img/spots-next.png") no-repeat center center/contain;
  }
}
@media screen and (min-width: 1200px) {
  .spots__next {
    bottom: -24px;
  }
}

.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: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .spots__bottom {
    padding-inline: 40px;
    max-width: 1104px;
    margin-inline: auto;
    margin-top: 64px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

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

.spots__bottom-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: 31px;
  margin-bottom: 11px;
}
@media screen and (min-width: 768px) {
  .spots__bottom-content {
    margin-bottom: 14px;
  }
}
@media screen and (min-width: 900px) {
  .spots__bottom-content {
    gap: 36px;
    text-align: right;
  }
}

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

.qa {
  padding-top: 72px;
  padding-bottom: 31px;
}
@media screen and (min-width: 768px) {
  .qa {
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 900px) {
  .qa {
    padding-top: 241px;
  }
}

@media screen and (min-width: 900px) {
  .qa__inner {
    padding-inline: 40px;
    max-width: 1104px;
  }
}

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

.qa__box {
  border-radius: 12px;
  border: 2px solid #4a3636;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .qa__box {
    border-radius: 16px;
  }
}
.qa__box.is-open .qa-box__head {
  padding-bottom: 12px;
}
@media screen and (min-width: 900px) {
  .qa__box.is-open .qa-box__head {
    padding-bottom: 21px;
  }
}
.qa__box.is-open .qa-box__icon::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.qa-box__head {
  background: #ffffff;
  padding: 10px 14px;
  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;
  width: 100%;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .qa-box__head {
    padding: 20px 20px 20px 22px;
  }
}

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

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

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

.qa-box__icon {
  width: 26px;
  height: 26px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  background: #9ed0e0;
  z-index: 10;
  position: relative;
}
@media screen and (min-width: 900px) {
  .qa-box__icon {
    width: 48px;
    height: 48px;
  }
}
.qa-box__icon::before, .qa-box__icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 1.5px;
  background: #ffffff;
  border-radius: 10px;
  z-index: 20;
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -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__icon::before, .qa-box__icon::after {
    width: 18px;
    height: 2px;
    right: 14px;
  }
}
.qa-box__icon::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.qa-box__body {
  background: #f5f5f5;
  padding: 16px 14px 14px;
  display: none;
}
@media screen and (min-width: 900px) {
  .qa-box__body {
    padding: 33px 22px 29px;
  }
}

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

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

.entry__content {
  border: 8px solid #ffffff;
  background: rgba(255, 255, 255, 0.5);
  padding-bottom: 16px;
  padding-top: 15px;
}
@media screen and (min-width: 900px) {
  .entry__content {
    padding-block: 30px;
  }
}

.entry__body {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  padding-inline: 15.5px;
}
@media screen and (min-width: 900px) {
  .entry__body {
    margin-top: 40px;
    padding-inline: 47px;
    gap: 13px;
  }
}

.entry__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;
  padding-bottom: 15px;
}
@media screen and (min-width: 900px) {
  .entry__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-bottom: 12px;
    gap: 0;
  }
}
.entry__list:nth-last-of-type(n + 2) {
  position: relative;
}
.entry__list:nth-last-of-type(n + 2)::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #ccc;
}

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

.entry__list-text {
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .entry__list-text {
    width: 672px;
    font-size: 16px;
  }
}

.entry__list-items {
  padding-left: 18px;
}
@media screen and (min-width: 900px) {
  .entry__list-items {
    padding-left: 24px;
  }
}

.entry__list-item {
  list-style: none;
  line-height: 1.585;
  position: relative;
}
@media screen and (min-width: 900px) {
  .entry__list-item {
    line-height: 1.62;
  }
}
.entry__list-item::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #4a3636;
  top: 10px;
  left: -11px;
}
@media screen and (min-width: 900px) {
  .entry__list-item::before {
    top: 12px;
    left: -14px;
    width: 4px;
    height: 4px;
  }
}

.entry-bottom_image {
  margin-top: 32px;
}
@media screen and (min-width: 900px) {
  .entry-bottom_image {
    margin-top: 121px;
  }
}
.entry-bottom_image img {
  width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

.contact {
  padding-top: 40px;
  padding-bottom: 43px;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 121px;
    padding-bottom: 120px;
  }
}

.contact__box {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .contact__box {
    margin-top: 33px;
  }
}

.contact__text {
  text-align: center;
}

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

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.contact__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;
}
.contact__field.is-error .form-field__label {
  color: #ce2073;
}
.contact__field.is-error .form-text,
.contact__field.is-error .form-select,
.contact__field.is-error .form-textarea {
  background-color: #fff0f7;
  border: 1px solid #ce2073;
}
.contact__field.is-error .form-select__box::before {
  background: #ce2073;
}
@media screen and (min-width: 768px) {
  .contact__field {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact__field:nth-of-type(5) {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

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

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

.form-field__tag {
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  background: #ce2073;
  color: #ffffff;
  padding: 4px 8px;
}

@media screen and (min-width: 768px) {
  .form-field__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 628px;
    width: 100%;
    margin-left: auto;
  }
}

.form-text {
  padding: 16px;
  width: 100%;
  height: 56px;
  border-radius: 8px;
  background: #f5f5f5;
  border: none;
}
.form-text:focus {
  outline: none;
}
@media screen and (min-width: 768px) {
  .form-text:focus {
    border: 1px solid #9ed0e0;
    background: #e9f6f8;
  }
  .form-text:focus::-webkit-input-placeholder {
    color: #4a3636;
  }
  .form-text:focus::-moz-placeholder {
    color: #4a3636;
  }
  .form-text:focus:-ms-input-placeholder {
    color: #4a3636;
  }
  .form-text:focus::-ms-input-placeholder {
    color: #4a3636;
  }
  .form-text:focus::placeholder {
    color: #4a3636;
  }
}
.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: 768px) {
  .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:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #f5f5f5 inset !important;
          box-shadow: 0 0 0 1000px #f5f5f5 inset !important;
  -webkit-text-fill-color: #4a3636 !important;
}
@media screen and (min-width: 768px) {
  .form-text:-webkit-autofill:-webkit-autofill:focus {
    border: 1px solid #9ed0e0 !important;
    -webkit-box-shadow: 0 0 0 1000px #e9f6f8 inset !important;
            box-shadow: 0 0 0 1000px #e9f6f8 inset !important;
  }
}

.form-select__box {
  position: relative;
}
.form-select__box::before {
  content: "";
  position: absolute;
  background: #9ed0e0;
  width: 52px;
  height: 55px;
  right: 0;
  top: 0;
  border-radius: 0 8px 8px 0;
  pointer-events: none;
}
.form-select__box::after {
  content: "";
  position: absolute;
  background: url("../img/contact-arrow.png") no-repeat center center/contain;
  width: 16px;
  height: 29px;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 16px;
  width: 100%;
  height: 56px;
  border-radius: 8px;
  background: #f5f5f5;
  border: none;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .form-select {
    font-size: 16px;
  }
}
.form-select:focus {
  outline: none;
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .form-field__radios {
    padding-block: 16px;
  }
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text::before {
  border-color: transparent;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .form-radio__input:focus-visible + .form-radio__text::before {
    border-color: #9ed0e0;
  }
}

.form-radio__text {
  font-size: 14px;
  padding-left: 32px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .form-radio__text {
    font-size: 16px;
    padding-left: 33px;
  }
}
.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: 22px;
  height: 22px;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  left: 0;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .form-radio__text::before {
    width: 24px;
    height: 24px;
  }
}
.form-radio__text::after {
  width: 12px;
  height: 12px;
  background: #9ed0e0;
  left: 5px;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .form-radio__text::after {
    left: 6px;
  }
}

.form-textarea {
  padding: 16px;
  width: 100%;
  height: 160px;
  border-radius: 8px;
  background: #f5f5f5;
  border: none;
  resize: none;
}
.form-textarea::-webkit-input-placeholder {
  color: #ccc;
  font-size: 14px;
}
.form-textarea::-moz-placeholder {
  color: #ccc;
  font-size: 14px;
}
.form-textarea:-ms-input-placeholder {
  color: #ccc;
  font-size: 14px;
}
.form-textarea::-ms-input-placeholder {
  color: #ccc;
  font-size: 14px;
}
.form-textarea::placeholder {
  color: #ccc;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .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: 1px solid #9ed0e0;
  background: #e9f6f8;
}
.form-textarea:focus::-webkit-input-placeholder {
  color: #4a3636;
}
.form-textarea:focus::-moz-placeholder {
  color: #4a3636;
}
.form-textarea:focus:-ms-input-placeholder {
  color: #4a3636;
}
.form-textarea:focus::-ms-input-placeholder {
  color: #4a3636;
}
.form-textarea:focus::placeholder {
  color: #4a3636;
}

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

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

.form-checkbox__text {
  font-size: 14px;
  position: relative;
  padding-left: 36px;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text a {
  text-decoration-line: underline;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 4px;
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  background: #f5f5f5;
  left: 0;
}
.form-checkbox__text::after {
  width: 16px;
  height: 16px;
  left: 4px;
  opacity: 0;
  background: url("../img/privacy-check.png") no-repeat center center/contain;
}

.contact__button {
  margin-top: 25px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 38px;
  }
}

.contact--button {
  color: #4a3636;
}
@media screen and (min-width: 768px) {
  .contact--button {
    font-size: 16px;
    padding: 6px 38px 6px;
  }
}

.footer {
  padding-top: 41px;
  background: #e9f6f8;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 120px;
  }
}

.footer__inner {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    position: relative;
  }
  .footer__inner::before {
    content: "";
    position: absolute;
    background: url("../img/foot-print-top.png") no-repeat center center/contain;
    width: 100px;
    height: 220px;
    top: -42px;
    right: -125px;
  }
}

.footer__text {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .footer__text {
    font-size: 24px;
  }
}

.footer__link {
  margin-top: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 41px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__link {
    gap: 39px;
  }
}

.footer__link-item img {
  width: 32px;
}
@media screen and (min-width: 768px) {
  .footer__link-item img {
    width: 41px;
  }
}
.footer__link-item:nth-of-type(1) img {
  width: 28px;
}
@media screen and (min-width: 768px) {
  .footer__link-item:nth-of-type(1) img {
    width: 37px;
  }
}

.footer__logo {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    margin-top: 40px;
  }
}

.onomichi-icon-footer {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .onomichi-icon-footer {
    max-width: 755px;
  }
}

.footer__box {
  margin-top: -7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .footer__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    max-width: 1024px;
    margin-inline: auto;
    margin-top: -9px;
  }
}

@media screen and (min-width: 768px) {
  .footer__map {
    width: 50%;
  }
}

.footer__box-body {
  background: #ffffff;
  text-align: center;
  padding: 22px 15px 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__box-body {
    width: 50%;
  }
}

.footer__box-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: 30px;
}
@media screen and (min-width: 768px) {
  .footer__box-content {
    gap: 26px;
    text-align: left;
    margin-top: 4px;
  }
}

@media screen and (min-width: 768px) {
  .footer__box-logo {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
.footer__box-logo img {
  width: 153px;
}
@media screen and (min-width: 768px) {
  .footer__box-logo img {
    width: 183px;
  }
}

.footer__box-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .footer__box-list {
    gap: 12px;
  }
}

.footer-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  padding-left: 16px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .footer-list-item {
    gap: 40px;
  }
}
.footer-list-item::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ed0e0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer-list-title {
  font-weight: 700;
  width: 48px;
  text-align: left;
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .footer-list-title {
    width: 64px;
    font-size: 16px;
  }
}

.footer-list-text {
  text-align: left;
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .footer-list-text {
    font-size: 16px;
  }
}

.footer__copyright {
  font-size: 10px;
  margin-top: 46px;
  background: #67b0c7;
  padding-bottom: 25px;
  color: #ffffff;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 193px;
    font-size: 14px;
    padding-bottom: 32px;
  }
}
.footer__copyright::before {
  content: "";
  position: absolute;
  background: url("../img/sp/wave-top-sp.png") repeat top left/96px auto;
  width: 100%;
  height: 45.7px;
  top: -45px;
  left: 0;
}
@media screen and (min-width: 900px) {
  .footer__copyright::before {
    background: url("../img/wave-top-pc.png") repeat top left/252px auto;
    height: 120px;
    top: -119px;
  }
}

.footer__pagetop {
  text-align: center;
  padding-block: 23px;
}

.pagetop {
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .pagetop {
    position: fixed;
    left: auto;
    right: 39px;
    bottom: 35px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .pagetop.is-show {
    opacity: 1;
    visibility: visible;
  }
}
.pagetop img {
  width: 78px;
}
@media screen and (min-width: 768px) {
  .pagetop img {
    width: 102px;
  }
}