@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}
@media (min-width: 900px) {
  html {
    scroll-padding-top: 0;
  }
}

body {
  font-size: 14px;
  line-height: 1.6;
  color: #4A3636;
  font-family: "Noto Sans JP", serif;
  background: #E9F6F8;
  font-weight: 400;
}
@media (min-width: 900px) {
  body {
    font-size: 16px;
  }
}

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

.heading {
  text-align: center;
}

.heading-icon {
  display: grid;
  place-items: center;
  margin-inline: auto;
}
.heading-icon img {
  width: 37.33px;
  height: 37.33px;
}
@media (min-width: 900px) {
  .heading-icon img {
    width: 48px;
    height: 48px;
  }
}

.heading-en {
  font-family: "Courgette", cursive;
  display: block;
  line-height: 1.25;
  margin-top: 7px;
  font-size: 16px;
}
@media (min-width: 900px) {
  .heading-en {
    font-size: 20px;
    margin-top: 8px;
  }
}

.heading-ja {
  display: inline-block;
  margin-top: 6px;
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  position: relative;
  padding-bottom: 12px;
}
@media (min-width: 900px) {
  .heading-ja {
    margin-top: 8px;
    padding-bottom: 16px;
    font-size: 32px;
  }
}
.heading-ja::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  bottom: 0;
  left: 0;
  background: #FFEE56;
}
@media (min-width: 900px) {
  .heading-ja::after {
    height: 8px;
  }
}

.button {
  display: inline-block;
  padding-top: 4px;
  padding-bottom: 6px;
  text-align: center;
  border: 2px solid currentColor;
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
  color: #4A3636;
  font-size: 16px;
  font-weight: 700;
  min-width: 96px;
  border-radius: 40px;
  -webkit-transition: color 0.4s, background-color 0.4s;
  transition: color 0.4s, background-color 0.4s;
  background-color: #fff;
}
@media (max-width: 374px) {
  .button {
    font-size: 12px;
  }
}
.button:hover {
  background-color: #FFEE56;
  cursor: pointer;
}
.button.is-active {
  background-color: #FFEE56;
}
.button.is-reset {
  background-color: #fff;
  color: #4A3636;
}

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

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

.link-text {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.link-text:hover {
  color: #67B0C7;
}

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

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 1200px) {
  .header__inner {
    padding-inline: 24px;
    margin-inline: auto;
  }
}

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

@media (min-width: 1200px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  position: relative;
  width: 32px;
  height: 28px;
  z-index: 41;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px;
  background: #4A3636;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px;
}

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

.drawer-icon__bar-long,
.drawer-icon__bar-short {
  position: absolute;
  top: 0;
  height: 3px;
  background: #4A3636;
  border-radius: 6px;
}

.drawer-icon__bar-long {
  left: 0;
  width: 25.6px;
}

.drawer-icon__bar-short {
  left: 27.2px;
  width: 4.8px;
}

.header__nav {
  display: none;
}
@media (min-width: 1200px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 1200px) {
  .header__nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12.3px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 1200px) {
  .header__link {
    display: inline-block;
    position: relative;
    padding-block: 8px;
    font-size: 12px;
  }
  .header__link::after {
    content: "";
    position: absolute;
    bottom: 7px;
    left: 0;
    width: 100%;
    height: 1px;
    background: transparent;
    -webkit-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
  }
  .header__link:hover {
    color: #67B0C7;
  }
  .header__link:hover::after {
    background: #67B0C7;
  }
}

.header__nav-button {
  width: 132px;
}
@media (min-width: 900px) {
  .header__nav-button {
    font-size: 14px;
  }
}

body.is-fixed {
  overflow: hidden;
}

.drawer-content {
  display: none;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 40;
  padding-top: 69px;
  position: fixed;
  top: 64px;
  left: 0;
  overflow: auto;
}

.drawer-content__menu {
  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: 24px;
}

.drawer-content__link {
  display: inline-block;
  padding-block: 8px;
  position: relative;
}
.drawer-content__link::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: transparent;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.drawer-content__link:hover {
  color: #67B0C7;
}
.drawer-content__link:hover::after {
  background: #67B0C7;
}

.drawer__button {
  margin-top: 31px;
  width: 100%;
  text-align: center;
}
.drawer__button a {
  font-size: 16px;
  width: 144px;
}

.mv {
  position: relative;
}

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

.mv__inner {
  position: relative;
  max-width: 375px;
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 900px) {
  .mv__inner {
    max-width: 848px;
  }
}

.mv__content {
  padding-top: 17px;
}
@media (min-width: 900px) {
  .mv__content {
    padding-top: 34px;
  }
}

.mv__message {
  text-align: center;
}

.mv__text {
  line-height: 1.25;
  font-family: "Kiwi Maru", serif;
}
@media (min-width: 900px) {
  .mv__text {
    font-size: 24px;
    font-weight: 500;
  }
}

.mv__titles {
  margin-top: 20px;
  margin-inline: 20px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: top;
}
@media (min-width: 900px) {
  .mv__titles {
    margin-top: 24px;
    gap: 16px;
  }
}

@media (min-width: 600px) {
  .mv__title {
    width: 335px;
  }
}
@media (min-width: 900px) {
  .mv__title {
    width: 520px;
  }
}

.mv__images {
  height: 522px;
  margin-top: 10px;
}
@media (min-width: 900px) {
  .mv__images {
    width: 848px;
    height: 561px;
    margin-top: 0;
  }
}

.mv__image {
  position: relative;
  height: inherit;
}

.mv__image--main {
  position: absolute;
  z-index: 2;
  top: 103px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
}
@media (min-width: 900px) {
  .mv__image--main {
    top: 33px;
    width: 250px;
  }
}

.mv-smartphone {
  width: 200px;
}
@media (min-width: 900px) {
  .mv-smartphone {
    width: 250px;
  }
}

.mv__apply {
  position: absolute;
  top: 227.6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}
@media (min-width: 900px) {
  .mv__apply {
    top: 186px;
  }
}

.mv-apply {
  text-align: center;
  width: 160px;
}
@media (min-width: 900px) {
  .mv-apply {
    width: 200px;
  }
}

.mv-apply__title {
  font-size: 12.8px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(265.18deg, #AC3790 -3.52%, #D65A5C 44.94%, #F4C06D 92.38%);
  padding: 5.4px;
  border-radius: 12.8px 12.8px 0 0;
}
@media (min-width: 900px) {
  .mv-apply__title {
    font-size: 16px;
    padding: 8px;
    border-radius: 16px 16px 0 0;
  }
}

.mv-apply__period {
  padding-top: 11.8px;
  background: #fff;
  padding-bottom: 19.2px;
  border-radius: 0 0 12.8px 12.8px;
}
@media (min-width: 900px) {
  .mv-apply__period {
    padding-top: 13px;
    padding-bottom: 24px;
    border-radius: 0 0 16px 16px;
  }
}

.mv-apply__sub-title {
  display: inline-block;
  font-size: 12px;
  position: relative;
  padding-bottom: 3.2px;
}
@media (min-width: 900px) {
  .mv-apply__sub-title {
    font-size: 14px;
    padding-bottom: 4px;
  }
}
.mv-apply__sub-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2.4px;
  background: #CE2073;
  left: 0;
  bottom: 0;
}
@media (min-width: 900px) {
  .mv-apply__sub-title::after {
    height: 3px;
  }
}

.mv-apply__date {
  margin-top: 3.2px;
  font-size: 12px;
  font-weight: 700;
}
@media (min-width: 900px) {
  .mv-apply__date {
    margin-top: 4px;
    font-size: 16px;
  }
}

.mv-apply__button {
  margin-top: 12px;
  width: 132px;
  padding-top: 2px;
  padding-bottom: 4px;
  font-size: 14px;
}
@media (min-width: 900px) {
  .mv-apply__button {
    margin-top: 16px;
    width: 144px;
    padding-top: 5px;
    padding-bottom: 6px;
    font-size: 16px;
  }
}

.mv__image--fukidashi {
  position: absolute;
  top: 14px;
  left: 44px;
}
@media (min-width: 900px) {
  .mv__image--fukidashi {
    top: 9px;
    left: 76px;
  }
}

.fukidashi__message {
  font-family: "Josefin Sans", sans-serif;
  font-size: 18.36px;
  line-height: 1;
  color: #CE2073;
  text-align: right;
  position: relative;
  text-shadow: -0.57px -0.57px 2.3px #fff, 0.57px -0.57px 2.3px #fff, -0.57px 0.57px 2.3px #fff, 0.57px 0.57px 2.3px #fff;
  /* 縁取りの影の設定 */
}
.fukidashi__message > span {
  display: block;
}
@media (min-width: 900px) {
  .fukidashi__message {
    font-size: 32px;
    text-shadow: -1px -1px 4px #fff, 1px -1px 4px #fff, -1px 1px 4px #fff, 1px 1px 4px #fff;
    /* 縁取りの影の設定 */
  }
}
.fukidashi__message::after {
  content: "";
  position: absolute;
  top: -6.17px;
  left: -24.53px;
  background: url(../img/about-fukidashi.png) no-repeat center bottom/contain;
  width: 142px;
  height: 80px;
}
@media (min-width: 900px) {
  .fukidashi__message::after {
    width: 244px;
    height: 130px;
    top: -8.78px;
    left: -39px;
    background: url(../img/about-fukidashi-pc.png) no-repeat center bottom/contain;
  }
}

.mv__image--present {
  position: absolute;
  top: 0;
  right: 45px;
}
@media (min-width: 900px) {
  .mv__image--present {
    top: 17px;
    right: 127px;
  }
}
.mv__image--present img {
  width: 110px;
}
@media (min-width: 900px) {
  .mv__image--present img {
    width: 180px;
  }
}

.mv__food {
  position: absolute;
  left: 20px;
  bottom: 0;
  width: 90.26px;
  height: 141px;
  z-index: 3;
}
@media (min-width: 900px) {
  .mv__food {
    bottom: 2px;
    width: 212px;
    height: 332px;
    left: 0;
  }
}

.mv-cat1 {
  position: absolute;
  right: 29px;
  bottom: -1px;
  width: 98px;
  z-index: 3;
}
@media (min-width: 900px) {
  .mv-cat1 {
    right: 0;
    width: 233px;
    height: 174px;
    bottom: -43px;
  }
}

.mv-cat2 {
  position: absolute;
  right: 20px;
  bottom: 58px;
  width: 62px;
  z-index: 2;
}
@media (min-width: 900px) {
  .mv-cat2 {
    right: 62px;
    width: 172px;
    bottom: 62px;
    height: 190px;
  }
}

.about {
  padding-top: 32px;
  overflow: hidden;
}
@media (min-width: 900px) {
  .about {
    padding-top: 69px;
  }
}
@media (min-width: 1200px) {
  .about {
    padding-top: 79px;
  }
}

.about__inner {
  position: relative;
  padding-inline: 20px;
}
@media (min-width: 900px) {
  .about__inner {
    padding-inline: 0;
  }
}

.about__road-sp {
  position: absolute;
  left: 0;
  bottom: -215px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(68.58%, rgba(233, 246, 248, 0)), color-stop(80.78%, #E9F6F8));
  background: linear-gradient(180deg, rgba(233, 246, 248, 0) 68.58%, #E9F6F8 80.78%);
  z-index: -1;
  width: 138px;
  height: 215px;
}
@media (min-width: 600px) {
  .about__road-sp {
    width: 205px;
    height: 232px;
  }
}
@media (min-width: 900px) {
  .about__road-sp {
    display: none;
  }
}

.about__wrapper {
  max-width: 335px;
  margin-inline: auto;
  border-radius: 24px;
  background: #fff;
  position: relative;
}
@media (min-width: 600px) {
  .about__wrapper {
    max-width: 500px;
    border-radius: 40px;
  }
}
@media (min-width: 900px) {
  .about__wrapper {
    max-width: 600px;
  }
}
@media (min-width: 1200px) {
  .about__wrapper {
    max-width: 848px;
  }
}

.about__content {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}
@media (max-width: 599px) {
  .about__content {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 900px) {
  .about__content {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (min-width: 1200px) {
  .about__content {
    padding: 40px 114px 40px;
  }
}

.about__sub-heading--sp {
  margin-top: 24px;
  font-weight: 700;
}
@media (min-width: 900px) {
  .about__sub-heading--sp {
    display: none;
  }
}

.about__sub-heading--pc {
  display: none;
}
@media (min-width: 900px) {
  .about__sub-heading--pc {
    display: block;
    margin-top: 32px;
    font-weight: 700;
  }
}

.about__texts {
  margin-top: 23px;
}
@media (min-width: 1200px) {
  .about__texts {
    margin-top: 33px;
  }
}

.about__text {
  font-size: 12px;
  display: block;
  line-height: 1.6;
}
@media (min-width: 600px) {
  .about__text {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .about__text {
    font-size: 16px;
  }
}
.about__text:nth-child(n+2) {
  margin-top: 18px;
}
@media (min-width: 1200px) {
  .about__text:nth-child(n+2) {
    margin-top: 27px;
  }
}
.about__text:nth-child(n+3) {
  margin-top: 18.75px;
}
@media (min-width: 1200px) {
  .about__text:nth-child(n+3) {
    margin-top: 27px;
  }
}

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

.about__text-strong {
  font-weight: 700;
}

.about__title {
  margin-top: 31px;
  font-weight: 700;
  padding-bottom: 8px;
  position: relative;
  display: inline-block;
}
@media (min-width: 1200px) {
  .about__title {
    margin-top: 44px;
    font-size: 20px;
    padding-bottom: 12px;
  }
}
.about__title::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  border-bottom: 2px dashed #9ED0E0;
}

.about__button {
  margin-top: 24px;
  font-weight: 700;
  display: block;
  margin-inline: auto;
}
@media (min-width: 1200px) {
  .about__button {
    margin-top: 33px;
  }
}
.about__button a {
  width: 192px;
}
@media (min-width: 1200px) {
  .about__button a {
    width: 260px;
    font-size: 20px;
    padding-top: 8px;
    padding-bottom: 10px;
    border-width: 3px;
  }
}

.about__picture-left,
.about__picture-right {
  width: 80px;
  height: 60px;
  position: absolute;
}
@media (min-width: 900px) {
  .about__picture-left,
  .about__picture-right {
    width: 134px;
    height: 100px;
    -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
            filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  }
}
.about__picture-left img,
.about__picture-right img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.about__picture-left {
  top: 37.87px;
  left: 37px;
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
}
@media (min-width: 900px) {
  .about__picture-left {
    left: 3px;
  }
}
@media (min-width: 1200px) {
  .about__picture-left {
    top: 49.35px;
    left: 91px;
  }
}

.about__picture-right {
  top: 36px;
  right: 23.78px;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
}
@media (min-width: 900px) {
  .about__picture-right {
    right: 1.3px;
  }
}
@media (min-width: 1200px) {
  .about__picture-right {
    top: 55px;
    right: 91px;
  }
}

.about-diagonal {
  position: absolute;
  width: 250px;
  height: 250px;
  top: -20px;
  left: -160px;
  z-index: -2;
  border-radius: 24px;
  display: none;
}
@media (min-width: 900px) {
  .about-diagonal {
    display: block;
  }
}
@media (min-width: 1200px) {
  .about-diagonal {
    left: -353px;
  }
}

.about__footpaint {
  position: absolute;
  top: -10px;
  right: -20px;
  width: 54px;
  height: 120px;
  z-index: -1;
}
@media (min-width: 900px) {
  .about__footpaint {
    width: 100px;
    height: 220px;
    top: -80px;
    right: -80px;
  }
}
@media (min-width: 1200px) {
  .about__footpaint {
    right: -166px;
  }
}

.photo-right,
.photo-left {
  border-radius: 24px;
}
@media (min-width: 900px) {
  .photo-right,
  .photo-left {
    border-radius: 40px;
  }
}

.photo-right {
  position: absolute;
  top: 273px;
  right: -160px;
  width: 200px;
  height: 200px;
  z-index: -1;
}
@media (min-width: 900px) {
  .photo-right {
    right: -538px;
    top: 73.07px;
    width: 480px;
    height: 480px;
  }
}
@media (min-width: 1200px) {
  .photo-right {
    right: -615px;
  }
}

.photo-left {
  position: absolute;
  top: 395px;
  left: -160px;
  width: 200px;
  height: 200px;
  z-index: -1;
}
.photo-left img {
  border-radius: 24px;
}
@media (min-width: 900px) {
  .photo-left img {
    border-radius: 40px;
  }
}
@media (min-width: 900px) {
  .photo-left {
    top: 74px;
    width: 480px;
    height: 480px;
    left: -546px;
  }
}
@media (min-width: 1200px) {
  .photo-left {
    left: -670px;
  }
}

.about-arrow {
  position: absolute;
  top: 100%;
  width: 100px;
  height: 36px;
  background: #CCE1E4;
  -webkit-clip-path: polygon(50% 36px, 0% 0%, 100px 0%);
          clip-path: polygon(50% 36px, 0% 0%, 100px 0%);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 900px) {
  .about-arrow {
    width: 140px;
    height: 50px;
    -webkit-clip-path: polygon(50% 50px, 0% 0%, 140px 0%);
            clip-path: polygon(50% 50px, 0% 0%, 140px 0%);
  }
}

.about-goods {
  position: absolute;
  right: 1px;
  bottom: -59px;
  width: 48px;
  height: 48px;
}
@media (min-width: 900px) {
  .about-goods {
    right: -103px;
    bottom: 11px;
    width: 101px;
    height: 100.05px;
  }
}
@media (min-width: 1200px) {
  .about-goods {
    right: -182px;
    bottom: 128px;
  }
}

.about-goods2 {
  position: absolute;
  right: 37px;
  bottom: -118px;
  width: 133px;
  height: 65px;
  z-index: -1;
}
@media (min-width: 900px) {
  .about-goods2 {
    bottom: -158px;
    right: -257px;
  }
}
@media (min-width: 1200px) {
  .about-goods2 {
    bottom: -79px;
    width: 308px;
    height: 150.6px;
  }
}

.about__road-pc {
  display: none;
}
@media (min-width: 900px) {
  .about__road-pc {
    display: block;
    position: absolute;
    width: 427px;
    height: 817px;
    left: -435px;
    top: 321px;
    z-index: -2;
  }
}

.about-waves {
  display: none;
  width: inherit;
}
@media (min-width: 900px) {
  .about-waves {
    display: block;
  }
}

.about-wave {
  position: absolute;
  width: 806.85px;
  max-width: 806.85px;
  height: 12.01px;
  z-index: -1;
}
@media (min-width: 900px) {
  .about-wave {
    right: -942.07px;
    bottom: 102px;
  }
}
@media (min-width: 1200px) {
  .about-wave {
    right: -897px;
    bottom: 209px;
  }
}
@media (min-width: 900px) {
  .about-wave:nth-child(n+2) {
    right: -875px;
    bottom: 69px;
  }
}
@media (min-width: 1200px) {
  .about-wave:nth-child(n+2) {
    right: -830px;
    bottom: 176.5px;
  }
}

.about__scroll {
  margin-top: 139px;
}
@media (min-width: 900px) {
  .about__scroll {
    margin-top: 153px;
  }
}
@media (min-width: 1200px) {
  .about__scroll {
    margin-top: 167px;
  }
}

.about__scroll--text {
  text-align: center;
  position: relative;
  z-index: -1;
  height: 37.2px;
}
@media (min-width: 900px) {
  .about__scroll--text {
    height: 152px;
  }
}
.about__scroll--text img {
  width: 356.642px;
  display: inline-block;
}
@media (min-width: 900px) {
  .about__scroll--text img {
    width: 890.604px;
    margin-left: -3px;
  }
}

.swiper1 {
  width: 100%;
  height: 100px;
}
@media (min-width: 900px) {
  .swiper1 {
    height: 200px;
    margin-top: -61px;
  }
}
.swiper1 .swiper-slide {
  width: 100px;
  height: 100%;
}
@media (min-width: 900px) {
  .swiper1 .swiper-slide {
    width: 200px;
  }
}
.swiper1 .swiper-slide img {
  width: 100px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 900px) {
  .swiper1 .swiper-slide img {
    width: 200px;
    border-radius: 24px;
  }
}

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

.enter {
  margin-top: 31.8px;
  overflow: hidden;
}
@media (min-width: 900px) {
  .enter {
    margin-top: 0;
    padding-top: 120px;
  }
}

.enter__inner {
  padding-inline: 20px;
  margin-inline: auto;
  max-width: 375px;
  position: relative;
}
@media (min-width: 600px) {
  .enter__inner {
    max-width: 500px;
  }
}
@media (min-width: 900px) {
  .enter__inner {
    max-width: 768px;
    margin-inline: auto;
  }
}
@media (min-width: 1200px) {
  .enter__inner {
    max-width: 1064px;
  }
}

.enter__wrapper {
  padding-top: 33px;
  padding-bottom: 20px;
}
@media (min-width: 900px) {
  .enter__wrapper {
    padding-top: 0;
    padding-bottom: 6px;
  }
}

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

.enter__steps {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media (min-width: 900px) {
  .enter__steps {
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 1200px) {
  .enter__steps {
    gap: 32px;
  }
}

.enter__step {
  padding-bottom: 17px;
  text-align: center;
  position: relative;
}
.enter__step::before {
  content: "";
  position: absolute;
  background: url(../img/enter-dot-SP.svg) no-repeat center center/cover;
  width: 7px;
  height: 34px;
  top: -34px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.enter__step:nth-child(1)::before {
  display: none;
}
@media (min-width: 900px) {
  .enter__step {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .enter__step:nth-child(2) {
    position: relative;
    top: 68px;
  }
  .enter__step::before {
    background: url(../img/enter-dot-PC.svg) no-repeat center center/contain;
    width: 90px;
    height: 24px;
    top: 89px;
    left: -68px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (min-width: 900px) and (min-width: 900px) {
  .enter__step:nth-child(3)::before {
    top: 149px;
    left: -66px;
  }
}
@media (min-width: 900px) and (min-width: 1200px) {
  .enter__step:nth-child(3)::before {
    top: 204px;
    left: -88px;
  }
}
@media (min-width: 1200px) {
  .enter__step::before {
    width: 113px;
    top: 136px;
    left: -97px;
  }
}

.enter__step3 {
  margin-top: 1px;
}
@media (min-width: 900px) {
  .enter__step3 {
    margin-top: 0;
  }
}

.enter__step-img {
  width: 196px;
}
@media (min-width: 1200px) {
  .enter__step-img {
    width: 280px;
  }
}

.enter__step-texts {
  margin-top: 15px;
}
@media (min-width: 1200px) {
  .enter__step-texts {
    margin-top: 23px;
  }
}

.enter__step-title {
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .enter__step-title {
    font-size: 20px;
  }
}

.enter__step-text {
  margin-top: 16px;
  font-size: 12px;
}
.enter__step-text span {
  font-weight: 700;
}
@media (min-width: 900px) {
  .enter__step-text {
    margin-top: 17px;
  }
}
@media (min-width: 1200px) {
  .enter__step-text {
    font-size: 16px;
  }
}

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

@media (min-width: 900px) {
  .enter__step-text--sp {
    display: none;
  }
}

.enter__step-text--pc {
  display: none;
}
@media (min-width: 900px) {
  .enter__step-text--pc {
    display: block;
  }
  .enter__step-text--pc em {
    font-weight: 700;
    font-style: normal;
  }
}

.enter__step-follow {
  display: block;
  margin-top: 16px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px;
  width: 226px;
  margin-inline: auto;
  -webkit-transition: outline 0.4s;
  transition: outline 0.4s;
}
.enter__step-follow:hover {
  outline: #9ED0E0 solid 1px;
}
@media (min-width: 1200px) {
  .enter__step-follow {
    font-size: 16px;
    width: 254px;
    margin-top: 18px;
  }
}
.enter__step-follow img {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: top;
}
@media (min-width: 1200px) {
  .enter__step-follow img {
    width: 24px;
    height: 24px;
  }
}

.enter__button-container {
  text-align: center;
  margin-top: -1px;
}
@media (min-width: 900px) {
  .enter__button-container {
    margin-top: 0;
  }
}

.enter-button {
  display: inline-block;
  margin-inline: auto;
  margin-top: -1px;
  padding-right: 22px;
  padding-left: 22px;
  padding-top: 4.6px;
}
@media (min-width: 900px) {
  .enter-button {
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 9px;
    padding-right: 38px;
    padding-left: 38px;
    margin-top: 40px;
    border-width: 3px;
  }
}

.enter__cat-brown {
  position: absolute;
  width: 105px;
  left: calc(50% + 58px);
  top: 33px;
}
@media (min-width: 900px) {
  .enter__cat-brown {
    top: -26px;
    left: calc(50% + 158px);
    width: 238px;
  }
}
@media (min-width: 1200px) {
  .enter__cat-brown {
    left: calc(50% + 287px);
  }
}

.enter__cat-gray {
  position: absolute;
  width: 94px;
  left: calc(50% + 124px);
  top: 38px;
}
@media (min-width: 900px) {
  .enter__cat-gray {
    top: -16.03px;
    left: calc(50% + 307px);
    width: 214px;
  }
}
@media (min-width: 1200px) {
  .enter__cat-gray {
    left: calc(50% + 437px);
  }
}

.enter__map {
  position: absolute;
  top: 32px;
  left: 0;
  width: 149px;
  height: 223px;
  z-index: -1;
}
@media (min-width: 600px) {
  .enter__map {
    left: -46px;
  }
}
@media (min-width: 900px) {
  .enter__map {
    left: -40px;
  }
}
@media (min-width: 1200px) {
  .enter__map {
    width: 460px;
    height: 689px;
    top: -60px;
    left: -189px;
  }
}

.enter__footpaint-right,
.enter__footpaint-left,
.enter-footpaint-third {
  position: absolute;
  width: 55px;
}
@media (min-width: 1200px) {
  .enter__footpaint-right,
  .enter__footpaint-left,
  .enter-footpaint-third {
    width: 100px;
  }
}

.enter__footpaint-right {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  right: 20px;
  top: 106px;
}
@media (min-width: 900px) {
  .enter__footpaint-right {
    top: 148px;
    right: -53px;
  }
}
@media (min-width: 1200px) {
  .enter__footpaint-right {
    right: -188px;
  }
}

.enter__footpaint-left {
  top: 581.55px;
  left: 20px;
}
@media (min-width: 900px) {
  .enter__footpaint-left {
    left: -53px;
  }
}
@media (min-width: 1200px) {
  .enter__footpaint-left {
    top: 580.55px;
    left: -189px;
  }
}

.enter-footpaint-third {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  bottom: 379.33px;
  right: 20px;
}
@media (min-width: 900px) {
  .enter-footpaint-third {
    display: none;
  }
}

.prizes {
  padding-top: 17.67px;
}
@media (min-width: 900px) {
  .prizes {
    padding-top: 267.97px;
  }
}

.prizes__inner {
  margin-inline: auto;
}
@media (max-width: 599px) {
  .prizes__inner {
    width: 100%;
  }
}
@media (min-width: 600px) {
  .prizes__inner {
    max-width: 650px;
  }
}
@media (min-width: 900px) {
  .prizes__inner {
    max-width: 1064px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.prizes__contents {
  margin-top: 83px;
}
@media (min-width: 900px) {
  .prizes__contents {
    margin-top: 0;
  }
}

.prizes__wrapper {
  background: #fff;
  border-radius: 24px;
  position: relative;
  padding-bottom: 34.67px;
}
@media (min-width: 900px) {
  .prizes__wrapper {
    padding-bottom: 53px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (min-width: 1200px) {
  .prizes__wrapper {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.prizes__deco {
  position: absolute;
  top: -83px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 237.6px;
  height: 83px;
}
@media (min-width: 900px) {
  .prizes__deco {
    width: 365.624px;
    height: 148.967px;
    top: -148.967px;
  }
}
.prizes__deco img {
  height: 100%;
}

.prizes__img--triangles {
  display: none;
}
@media (min-width: 900px) {
  .prizes__img--triangles {
    display: block;
  }
  .prizes__img--triangles .prizes__img--right,
  .prizes__img--triangles .prizes__img--left {
    position: absolute;
    top: -120.97px;
    width: 290px;
  }
  .prizes__img--triangles .prizes__img--right {
    right: 1px;
  }
  .prizes__img--triangles .prizes__img--left {
    left: 0;
  }
}
@media (min-width: 1200px) {
  .prizes__img--triangles .prizes__img--right,
  .prizes__img--triangles .prizes__img--left {
    width: 315px;
  }
}

.prizes-heading {
  position: absolute;
  top: -63px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 900px) {
  .prizes-heading {
    top: -120px;
  }
}

.prizes__text {
  font-size: 12px;
  padding-top: 59.33px;
  text-align: center;
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 600px) {
  .prizes__text {
    font-size: 16px;
    padding-right: 13%;
    padding-left: 13%;
  }
}
@media (min-width: 1200px) {
  .prizes__text {
    padding-right: 0;
    padding-left: 0;
    padding-top: 66px;
  }
}

.prizes__items {
  margin-top: 47px;
  max-width: 600px;
  margin-inline: auto;
  padding-right: 20px;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 600px) {
  .prizes__items {
    max-width: 650px;
  }
}
@media (min-width: 900px) {
  .prizes__items {
    margin-top: 82px;
    display: grid;
    max-width: 912px;
    grid-template-columns: repeat(6, 1fr);
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 80px;
    padding-right: 0;
    padding-left: 0;
  }
  .prizes__items .prizes__item:nth-of-type(n + 3):hover {
    border-radius: 16px;
  }
  .prizes__items .prizes__item:nth-of-type(n + 3) .prizes__card::after {
    border-radius: 16px;
  }
  .prizes__items .prizes__item:nth-of-type(n + 3) .prizes__head--img {
    top: -40px;
    width: 80px;
    height: 80px;
  }
  .prizes__items .prizes__item:nth-of-type(n + 3) .prizes__head--img img {
    width: 80px;
    height: 80px;
  }
  .prizes__items .prizes__item:nth-of-type(n + 3) .prizes__card-body {
    min-height: 80px;
  }
  .prizes__items .prizes__item:nth-of-type(n + 3) .prizes__title {
    font-size: 16px;
  }
  .prizes__items .prizes__item:nth-of-type(n + 3) .prizes__zoom {
    width: 64px;
    height: 64px;
  }
  .prizes__items .prizes__item:nth-of-type(n + 3) .prizes__zoom-lupe {
    width: 20.48px;
    height: 20.48px;
    right: 8px;
    bottom: 8.96px;
  }
  .prizes__items .prizes__item:nth-of-type(n + 3) .prizes__card-img {
    border-radius: 16px 16px 0 0;
  }
  .prizes__items .prizes__item:nth-of-type(n + 3) .prizes__card-img img {
    border-radius: 16px 16px 0 0;
  }
  .prizes__items .prizes__item:nth-of-type(n + 3) .prizes__zoom {
    border-bottom-right-radius: 16px;
  }
  .prizes__items .prizes__item:nth-child(4) {
    margin-left: 1px;
  }
  .prizes__items .prizes__item:nth-child(5) {
    margin-left: 2px;
  }
}

.prizes__item {
  width: calc(50% - 7.5px);
  border-radius: 8px;
}
.prizes__item:nth-child(n+3) {
  margin-top: 38.5px;
}
@media (min-width: 900px) {
  .prizes__item:nth-child(n+3) {
    margin-top: 0;
  }
}
.prizes__item:hover {
  cursor: pointer;
}
.prizes__item:hover .prizes__card:after {
  border-color: #9ED0E0;
}
@media (min-width: 900px) {
  .prizes__item:hover {
    border-radius: 24px;
  }
}
.prizes__item:hover .prizes__card-img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.prizes__item:hover .prizes__zoom > path {
  fill: #9ED0E0;
}
@media (min-width: 900px) {
  .prizes__item {
    width: 100%;
    border-radius: 24px;
  }
  .prizes__item:nth-child(1) {
    grid-area: 1/1/2/4;
  }
  .prizes__item:nth-child(2) {
    grid-area: 1/4/2/7;
  }
  .prizes__item:nth-child(n+3) {
    width: calc(100% - 2px);
  }
  .prizes__item:nth-child(3) {
    grid-area: 2/1/3/3;
  }
  .prizes__item:nth-child(4) {
    grid-area: 2/3/3/5;
  }
  .prizes__item:nth-child(5) {
    grid-area: 2/5/3/7;
  }
}

.prizes__card {
  position: relative;
  border-radius: 8px;
}
@media (min-width: 900px) {
  .prizes__card {
    border-radius: 24px;
  }
}
.prizes__card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 3px solid transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media (min-width: 900px) {
  .prizes__card:after {
    border-radius: 24px;
    border-width: 4px;
  }
}

.prizes__head--img {
  position: absolute;
  width: 48px;
  height: 48px;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  overflow: hidden;
}
.prizes__head--img img {
  width: 100%;
}
@media (min-width: 900px) {
  .prizes__head--img {
    width: 100px;
    height: 100px;
    top: -50px;
  }
}

.prizes__card-img {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px 8px 0 0;
}
@media (min-width: 900px) {
  .prizes__card-img {
    border-radius: 24px 24px 0 0;
  }
}
.prizes__card-img img {
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  display: block;
  height: auto;
  border-radius: 8px 8px 0 0;
}
@media (min-width: 900px) {
  .prizes__card-img img {
    border-radius: 24px 24px 0 0;
    height: auto;
  }
}

.prizes__card-body {
  overflow: hidden;
  text-align: center;
  min-height: 56px;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F5F5F5;
  border-radius: 0 0 8px 8px;
}
@media (min-width: 900px) {
  .prizes__card-body {
    border-radius: 0 0 24px 24px;
    min-height: 120px;
  }
}

.prizes__title {
  font-size: 12px;
  font-weight: 700;
}
@media (min-width: 900px) {
  .prizes__title {
    font-size: 20px;
    font-weight: 700;
  }
}

.prizes__zoom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36px;
  height: 36px;
  border-bottom-right-radius: 8px;
}
@media (min-width: 900px) {
  .prizes__zoom {
    border-bottom-right-radius: 24px;
    width: 100px;
    height: 100px;
  }
}
.prizes__zoom path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}

.prizes__zoom-lupe {
  position: absolute;
  right: 5.22px;
  bottom: 6.12px;
  width: 11.52px;
  height: 11.52px;
}
@media (min-width: 900px) {
  .prizes__zoom-lupe {
    width: 32px;
    height: 32px;
    right: 12.5px;
    bottom: 14px;
  }
}

.prizes-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  width: 336px;
  max-width: calc(100% - 20px);
  height: 480px;
  overflow: hidden;
  border-radius: 24px;
  background: #FFF;
  border: none;
  z-index: 100;
  overscroll-behavior-y: none;
  text-align: center;
  padding: 0;
}
@media (min-width: 900px) {
  .prizes-modal {
    width: 480px;
    height: 650px;
  }
}

.prizes-modal__figure {
  margin-inline: 0;
  margin-block: 0;
}

.prizes-modal__img {
  width: 100%;
}
.prizes-modal__img img {
  width: 100%;
  height: 210px;
}
@media (min-width: 900px) {
  .prizes-modal__img img {
    height: 300px;
  }
}

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

.prizes-modal__figcaption {
  font-size: 12px;
  margin-top: 12px;
}
@media (min-width: 900px) {
  .prizes-modal__figcaption {
    font-size: 16px;
    margin-top: 12.5px;
  }
}

.prizes-modal__button {
  margin-top: 15px;
}
@media (min-width: 900px) {
  .prizes-modal__button {
    margin-top: 25px;
  }
}
@media (min-width: 900px) and (min-width: 900px) {
  .prizes-modal__button {
    font-size: 16px;
  }
}

.prizes__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.prizes__background.is-show {
  visibility: visible;
  opacity: 1;
}

.prizes__button {
  text-align: center;
  margin-top: 19px;
}
@media (min-width: 900px) {
  .prizes__button {
    margin-top: 39px;
  }
}
.prizes__button a {
  padding-right: 22px;
  padding-left: 22px;
}
@media (min-width: 900px) {
  .prizes__button a {
    font-size: 20px;
    font-weight: 700;
    padding-top: 9px;
    padding-bottom: 10px;
    padding-right: 37px;
    padding-left: 37px;
    border-width: 3px;
  }
}

.prizes__img {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -44px;
}
@media (min-width: 900px) {
  .prizes__img {
    margin-top: 0;
    min-height: 600px;
  }
}
.prizes__img img {
  display: block;
  width: 100%;
  min-width: 580px;
}

.spots {
  overflow: hidden;
  position: relative;
  padding-top: 45.714px;
  margin-top: -45.714px;
  padding-bottom: 45.714px;
}
@media (min-width: 900px) {
  .spots {
    padding-top: 120px;
    margin-top: -145px;
    padding-bottom: 120px;
  }
}
@media (min-width: 1200px) {
  .spots {
    margin-top: -120px;
  }
}
.spots::before, .spots::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 46.714px;
  background-color: transparent;
  background-repeat: repeat-x;
  background-position: left -7px center;
  background-size: contain;
  background-image: url(../img/spots-wave-sp.svg);
}
@media (min-width: 900px) {
  .spots::before, .spots::after {
    height: 121px;
    background-image: url(../img/spots-wave-pc.svg);
  }
}
.spots::before {
  top: 0px;
}
@media (min-width: 900px) {
  .spots::before {
    background-position: left -6px center;
  }
}
.spots::after {
  bottom: 0px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-position: left -9px center;
}
@media (min-width: 900px) {
  .spots::after {
    background-position: left -2px center;
    height: 120px;
    bottom: 0.5px;
  }
}

.spots__container {
  background-color: #67B0C7;
  padding-bottom: 19.84px;
}
@media (min-width: 900px) {
  .spots__container {
    padding-bottom: 3px;
  }
}
@media (min-width: 1200px) {
  .spots__container {
    position: relative;
  }
}

.spots__background--image {
  display: none;
}
.spots__background--image img {
  max-width: 100%;
}
@media (min-width: 900px) {
  .spots__background--image {
    display: block;
    position: absolute;
    left: 0;
    bottom: 120px;
    width: 80px;
  }
}
@media (min-width: 1200px) {
  .spots__background--image {
    left: calc(50% - 720px);
    bottom: 0;
    width: 100px;
  }
}

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

.spots__title-wrap {
  text-align: center;
}

.spots__title {
  text-align: center;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  color: #fff;
  position: relative;
  display: inline-block;
  padding-left: 36px;
  font-weight: 500;
  line-height: 125%;
}
@media (min-width: 900px) {
  .spots__title {
    font-size: 40px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    padding-left: 0;
    padding-top: 71px;
    letter-spacing: 0.25em;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.spots__title::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 28px;
  height: 28px;
  background: url(../img/spots-star.png) no-repeat center center/contain;
}
@media (min-width: 900px) {
  .spots__title::before {
    width: 56px;
    height: 56px;
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media (min-width: 900px) {
  .spots-title-small {
    display: block;
    font-size: 40px;
    margin-top: 5px;
    margin-left: -6px;
  }
}

@media (min-width: 900px) {
  .spots-title-span {
    font-size: 40px;
    display: block;
    margin-top: -4px;
  }
}

.spots__slider {
  margin-top: 24px;
}
@media (min-width: 900px) {
  .spots__slider {
    overflow: hidden;
    margin-left: 40px;
    margin-top: 0;
  }
}

.swiper2 .swiper-wrapper {
  width: 100%;
}
.swiper2 .swiper-slide {
  width: 240px;
  height: auto;
}
@media (min-width: 600px) {
  .swiper2 .swiper-slide {
    width: 344px;
  }
}
.swiper2 .swiper-slide__card {
  border-radius: 12px;
  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;
}
@media (min-width: 900px) {
  .swiper2 .swiper-slide__card {
    border-radius: 24px;
  }
}
.swiper2 .swiper-slide__img img {
  border-radius: 12px 12px 0 0;
  max-width: 100%;
  height: auto;
}
@media (min-width: 900px) {
  .swiper2 .swiper-slide__img img {
    border-radius: 24px 24px 0 0;
    height: 240px;
    width: 344px;
  }
}
.swiper2 .swiper-slide__body {
  padding: 16px 24px 30px;
  border-radius: 0 0 12px 12px;
  background: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 900px) {
  .swiper2 .swiper-slide__body {
    border-radius: 0 0 24px 24px;
    padding: 24px 32px 42px;
  }
}
.swiper2 .swiper-slide__head {
  font-weight: 700;
  text-align: center;
  font-size: 16px;
}
@media (min-width: 600px) {
  .swiper2 .swiper-slide__head {
    font-size: 20px;
  }
}
.swiper2 .swiper-slide__text {
  margin-top: 16.5px;
  font-size: 12px;
}
@media (min-width: 600px) {
  .swiper2 .swiper-slide__text {
    margin-top: 24.5px;
    font-size: 16px;
  }
}

.swiper__buttons {
  display: none;
}
@media (min-width: 900px) {
  .swiper__buttons {
    max-width: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    z-index: 2;
    margin-top: -34px;
    margin-inline: auto;
  }
}
@media (min-width: 1200px) {
  .swiper__buttons {
    max-width: 944px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  display: none;
}
@media (min-width: 900px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: block;
    width: 80px;
    height: 80px;
    position: static;
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    display: none;
  }
}

@media (min-width: 900px) {
  .swiper-button-prev {
    background: url(../img/spots-arrow-prev.png) no-repeat center center/contain;
  }
}

@media (min-width: 900px) {
  .swiper-button-next {
    background: url(../img/spots-arrow-next.png) no-repeat center center/contain;
  }
}

.spots__wrapper {
  margin-inline: auto;
}
@media (min-width: 900px) {
  .spots__wrapper {
    max-width: 1084px;
    padding-right: 30px;
    padding-left: 30px;
  }
}

.spots__items {
  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;
}
@media (min-width: 1200px) {
  .spots__items {
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 81px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.spots__logo {
  text-align: center;
}
.spots__logo img {
  width: 255px;
}
@media (min-width: 900px) {
  .spots__logo img {
    width: 495px;
  }
}

.spots__texts {
  text-align: center;
}

.spots__text {
  font-size: 11.444px;
  color: #fff;
}
@media (min-width: 900px) {
  .spots__text {
    font-size: 16px;
  }
}

.spots__button--wrapper {
  text-align: center;
}
@media (min-width: 900px) {
  .spots__button--wrapper {
    text-align: right;
  }
}

.spots__button {
  margin-top: 24px;
  display: inline-block;
  font-weight: 700;
  padding-right: 22px;
  padding-left: 22px;
}
@media (min-width: 1200px) {
  .spots__button {
    margin-top: 25px;
    border-width: 3px;
    font-size: 20px;
    padding-left: 38px;
    padding-right: 38px;
    padding-top: 7px;
    padding-bottom: 10px;
  }
}

.qa {
  padding-top: 39.7px;
  padding-bottom: 30.67px;
}
@media (min-width: 900px) {
  .qa {
    padding-top: 121px;
    padding-bottom: 0;
  }
}

@media (min-width: 600px) {
  .qa__inner {
    padding-right: 20px;
    padding-left: 20px;
    max-width: 660px;
    margin-inline: auto;
  }
}
@media (min-width: 900px) {
  .qa__inner {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .qa__inner {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1084px;
  }
}

.qa__boxes {
  margin-top: 22.5px;
  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 (min-width: 900px) {
  .qa__boxes {
    gap: 24px;
    margin-top: 39px;
  }
}

.qa-box {
  border-radius: 12px;
  border: 2px solid #4A3636;
  background: #fff;
  overflow: hidden;
}
@media (min-width: 900px) {
  .qa-box {
    border-radius: 16px;
  }
}
.qa-box.is-open .qa-box__head-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

.qa-box__head {
  display: block;
  width: 100%;
  padding-top: 10px;
  padding-right: 12.91px;
  padding-left: 14px;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 12px;
}
@media (min-width: 900px) {
  .qa-box__head {
    padding-top: 19px;
    padding-left: 22px;
    padding-right: 19px;
    padding-bottom: 19.5px;
    border-radius: 16px;
  }
}

.qa-box__head--meta {
  display: inline-block;
  gap: 12.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (min-width: 900px) {
  .qa-box__head--meta {
    gap: 16px;
  }
}

.qa-box-q {
  font-size: 24px;
  color: #9ED0E0;
  line-height: 1.25;
  font-family: "Josefin Sans", sans-serif;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 2px;
}
@media (min-width: 900px) {
  .qa-box-q {
    font-size: 32px;
    padding-top: 5px;
  }
}

.qa-box__head-text {
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: #4A3636;
}
@media (min-width: 900px) {
  .qa-box__head-text {
    font-size: 20px;
    padding-top: 1px;
  }
}

.qa-box__head-icon {
  display: block;
  background: url(../img/qa__circle.svg) no-repeat center center/contain;
  width: 26.182px;
  height: 26.182px;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.qa-box__head-icon::before, .qa-box__head-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
  /* 記号の幅 */
  height: 2px;
  /* 記号の高さ */
  background-color: #fff;
  border-radius: 50px;
}
@media (min-width: 900px) {
  .qa-box__head-icon::before, .qa-box__head-icon::after {
    width: 18px;
    height: 3px;
  }
}
.qa-box__head-icon::after {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
@media (min-width: 900px) {
  .qa-box__head-icon {
    width: 50px;
    height: 50px;
  }
}

.qa-box__body {
  background: #F5F5F5;
  padding: 16px 14px 14px 14px;
  border-radius: 0 0 12px 12px;
  display: none;
}
@media (min-width: 900px) {
  .qa-box__body {
    padding-top: 25px;
    padding-right: 22px;
    padding-bottom: 22px;
    padding-left: 22px;
    border-radius: 0 0 16px 16px;
  }
}

.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-icon {
  font-size: 24px;
  font-family: "Josefin Sans", sans-serif;
  color: #9ED0E0;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.25;
}
@media (min-width: 900px) {
  .qa-box__a-icon {
    font-size: 32px;
  }
}

.qa-box__a-text {
  font-size: 14px;
  display: inline-block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (min-width: 900px) {
  .qa-box__a-text {
    font-size: 16px;
    padding-top: 2px;
  }
}

.qa-box__a-link {
  text-decoration: underline;
}

.entry {
  background: #E9F6F8;
}
@media (min-width: 900px) {
  .entry {
    padding-top: 120px;
  }
}

@media (min-width: 900px) {
  .entry__inner {
    padding-inline: 20px;
    max-width: 1064px;
    margin-inline: auto;
  }
}

.entry__wrapper {
  outline: 8px solid #fff;
  outline-offset: -8px;
  background: rgba(255, 255, 255, 0.5);
  padding-top: 23px;
  padding-inline: 23.5px;
  padding-bottom: 24px;
}
@media (min-width: 900px) {
  .entry__wrapper {
    padding-inline: 56px;
    padding-block: 40px;
  }
}

.entry__items {
  margin-top: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12.5px;
}
@media (min-width: 900px) {
  .entry__items {
    margin-top: 40px;
    gap: 13px;
  }
}

.entry__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 14px;
}
.entry__item:last-child {
  border-bottom: none;
  margin-top: -1px;
}
@media (min-width: 900px) {
  .entry__item:last-child {
    margin-top: 1px;
  }
}
@media (min-width: 900px) {
  .entry__item {
    padding-bottom: 11px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}

.entry__title {
  padding-left: 16px;
  position: relative;
  font-size: 14px;
  font-weight: 700;
}
.entry__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #9ED0E0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}
@media (min-width: 1200px) {
  .entry__title::before {
    left: 16px;
  }
}
@media (min-width: 600px) {
  .entry__title {
    font-size: 16px;
  }
}
@media (min-width: 900px) {
  .entry__title {
    width: calc(100% - 610px);
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (min-width: 1200px) {
  .entry__title {
    width: calc(100% - 672px);
    padding-left: 32px;
  }
}

.entry__text {
  font-size: 12px;
}
@media (min-width: 600px) {
  .entry__text {
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  .entry__text {
    font-size: 16px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    line-height: 1.6;
  }
}
.entry__text a {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.entry-worning__text {
  font-size: 12px;
  padding-left: 1.5em;
  position: relative;
  line-height: 19px;
}
.entry-worning__text a {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.entry-worning__text::before {
  content: "・";
  position: absolute;
  left: 0.2em;
  top: 0.1em;
}
@media (min-width: 600px) {
  .entry-worning__text {
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  .entry-worning__text {
    font-size: 16px;
    line-height: 1.62;
  }
}

.entry__img {
  display: block;
  padding-top: 33px;
}
.entry__img img {
  height: 99px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 600px) {
  .entry__img img {
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .entry__img img {
    height: 400px;
  }
}
@media (min-width: 900px) {
  .entry__img {
    padding-top: 121px;
  }
}

.contact {
  padding-top: 41px;
  padding-bottom: 46px;
  background: #fff;
}
@media (min-width: 900px) {
  .contact {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media (min-width: 600px) {
  .contact__inner {
    padding-inline: 30px;
    max-width: 690px;
    margin-inline: auto;
  }
}
@media (min-width: 900px) {
  .contact__inner {
    padding-inline: 40px;
    max-width: 928px;
  }
}

.contact__text {
  margin-top: 23px;
  font-size: 12px;
  text-align: center;
}
@media (min-width: 900px) {
  .contact__text {
    margin-top: 33px;
    font-size: 16px;
  }
}

.contact__form {
  margin-top: 23px;
}
@media (min-width: 900px) {
  .contact__form {
    margin-top: 39px;
  }
}

.contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (min-width: 900px) {
  .contact__fields {
    gap: 23px;
  }
}

.contact__field:nth-of-type(4) {
  margin-top: 1px;
}
@media (min-width: 900px) {
  .contact__field:nth-of-type(4) {
    margin-top: 16px;
  }
}

.form-field.is-error .form-input {
  border-color: #CE2073;
  outline: none;
  background: #FFF0F7;
}
.form-field.is-error .form-input + .form-checkbox__text::before {
  border-color: #CE2073;
}
@media (min-width: 900px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 900px) {
  .contact-radio {
    margin-top: 17px;
  }
}

@media (min-width: 900px) {
  .contact-massage {
    margin-top: 17px;
    -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 (min-width: 900px) {
  .form-field__head {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 220px;
  }
}

.form-field__label {
  font-size: 14px;
  font-weight: 700;
}
.form-field__label.is-error {
  color: #CE2073;
}
@media (min-width: 900px) {
  .form-field__label {
    font-size: 16px;
  }
}

.form-field__tag {
  display: inline-block;
  background: #CE2073;
  border-radius: 4px;
  padding: 4px 8px;
  color: #fff;
  font-size: 12px;
}

.form-field__item {
  margin-top: 8px;
}
@media (min-width: 900px) {
  .form-field__item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-top: 0;
  }
}

.form-text {
  font-size: 14px;
  padding: 16px;
  border-radius: 8px;
  background: #F5F5F5;
  width: 100%;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media (min-width: 900px) {
  .form-text {
    font-size: 16px;
    padding-bottom: 14px;
  }
}
.form-text::-webkit-input-placeholder {
  color: #CCCCCC;
}
.form-text::-moz-placeholder {
  color: #CCCCCC;
}
.form-text:-ms-input-placeholder {
  color: #CCCCCC;
}
.form-text::-ms-input-placeholder {
  color: #CCCCCC;
}
.form-text::placeholder {
  color: #CCCCCC;
}
.form-text:focus {
  border-color: #9ED0E0;
  outline: none;
  background: #E9F6F8;
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border: 1px solid transparent;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  background-image: url(../img/contact-contral.svg), linear-gradient(to left, #9ED0E0 52px, #F5F5F5 52px);
  background-repeat: no-repeat no-repeat;
  background-position: center right 10.5px, center center;
  background-size: 32px 32px, cover;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media (min-width: 900px) {
  .form-select {
    font-size: 16px;
    padding-bottom: 14px;
  }
}
.form-select:focus {
  border-color: #9ED0E0;
  outline: none;
}

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

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

.form-radio__text {
  font-size: 14px;
  position: relative;
  padding-left: 32px;
}
@media (min-width: 900px) {
  .form-radio__text {
    font-size: 16px;
    padding-left: 33px;
  }
}
.form-radio__text::before, .form-radio__text::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.form-radio__text::before {
  width: 24px;
  height: 24px;
  border: 1px solid transparent;
  left: 0;
  background: #F5F5F5;
  border-radius: 50%;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-radio__text::after {
  background: #9ED0E0;
  width: 12px;
  height: 12px;
  left: 6px;
  opacity: 0;
}

.form-textarea {
  height: 160px;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background: #F5F5F5;
  border: none;
  font-size: 14px;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media (min-width: 900px) {
  .form-textarea {
    font-size: 16px;
  }
}
.form-textarea::-webkit-input-placeholder {
  color: #CCCCCC;
}
.form-textarea::-moz-placeholder {
  color: #CCCCCC;
}
.form-textarea:-ms-input-placeholder {
  color: #CCCCCC;
}
.form-textarea::-ms-input-placeholder {
  color: #CCCCCC;
}
.form-textarea::placeholder {
  color: #CCCCCC;
}
.form-textarea:focus {
  border-color: #9ED0E0;
  outline: none;
  background: #E9F6F8;
}

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

.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;
  border: 1px solid #67B0C7;
  border-radius: 4px;
}
.form-checkbox__input:hover + .form-checkbox__text::after {
  cursor: pointer;
}

.form-checkbox__text {
  position: relative;
  font-size: 14px;
  padding-left: 36px;
}
@media (min-width: 900px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  background: #F5F5F5;
  border: 1px solid transparent;
  border-radius: 4px;
}
.form-checkbox__text::after {
  width: 24px;
  height: 24px;
  background: url(../img/contact-check.svg) no-repeat center center/contain;
  opacity: 0;
}
.form-checkbox__text a {
  text-decoration: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.form-checkbox__text a:hover {
  color: #67B0C7;
}

.contact__button {
  margin-top: 25px;
  text-align: center;
}
@media (min-width: 900px) {
  .contact__button {
    margin-top: 40px;
  }
}
.contact__button .button {
  padding-inline: 23px;
}
@media (min-width: 900px) {
  .contact__button .button {
    padding-inline: 38px;
  }
}

.footer__inner {
  padding-inline: 20px;
  position: relative;
}
@media (min-width: 600px) {
  .footer__inner {
    max-width: 640px;
    margin-inline: auto;
  }
}
@media (min-width: 900px) {
  .footer__inner {
    max-width: 1084px;
    padding-right: 30px;
    padding-left: 30px;
    margin-inline: auto;
  }
}

.footer__footpaint {
  position: absolute;
}
@media (min-width: 900px) {
  .footer__footpaint {
    right: 0;
    width: 70px;
    top: 80px;
  }
}
@media (min-width: 1200px) {
  .footer__footpaint {
    left: calc(50% + 576px);
    right: auto;
    width: 100px;
  }
}

.footer__container {
  padding-top: 39px;
  background: #E9F6F8;
}
@media (min-width: 900px) {
  .footer__container {
    padding-top: 120px;
  }
}

.footer-sns__wrapper {
  text-align: center;
}

.footer-sns__head {
  font-family: "Josefin Sans";
  font-size: 20px;
  line-height: 1.25;
  font-weight: 400;
}
@media (min-width: 900px) {
  .footer-sns__head {
    font-size: 24px;
  }
}

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

.footer-sns__link {
  display: block;
  width: 32px;
  height: 32px;
}
@media (min-width: 900px) {
  .footer-sns__link {
    width: 40px;
    height: 40px;
  }
}
.footer-sns__link img {
  width: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer-sns__link img:hover {
  opacity: 0.7;
}

.footer-onomichi {
  margin-top: 13px;
  text-align: center;
}
@media (min-width: 900px) {
  .footer-onomichi {
    margin-top: 41px;
  }
}
.footer-onomichi img {
  width: 327px;
}
@media (min-width: 900px) {
  .footer-onomichi img {
    width: 743px;
    margin-right: 2px;
  }
}

.footer-info__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-top: -2px;
  background: #fff;
  border-radius: 16px;
  position: relative;
  z-index: 2;
}
@media (min-width: 900px) {
  .footer-info__items {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1024px;
    margin-inline: auto;
    -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;
  }
}

.footer-address__wrapper {
  padding-top: 25px;
  padding-bottom: 30px;
  background: #fff;
  border-radius: 16px;
}
@media (min-width: 900px) {
  .footer-address__wrapper {
    border-radius: 16px 0 0 16px;
    width: 50%;
  }
}

.footer-address__body {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1200px) {
  .footer-address__body {
    margin-top: 7px;
  }
}

.footer-address__logo {
  text-align: center;
  margin-left: 4px;
}
@media (min-width: 900px) {
  .footer-address__logo {
    text-align: left;
    margin-left: 0;
  }
}
.footer-address__logo img {
  width: 153px;
  vertical-align: top;
  margin-left: -4px;
}
@media (min-width: 900px) {
  .footer-address__logo img {
    width: 183px;
    margin-left: 0;
  }
}

.footer-address__lists {
  margin-top: 27px;
  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 (min-width: 900px) {
  .footer-address__lists {
    margin-top: 23px;
    gap: 12.5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.footer-address__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-address__title {
  position: relative;
  padding-left: 16px;
  font-size: 12px;
  font-weight: 700;
  width: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 900px) {
  .footer-address__title {
    width: 120px;
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .footer-address__title {
    font-size: 16px;
  }
}
.footer-address__title::before {
  content: "";
  position: absolute;
  background: #9ED0E0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.footer-address__text {
  font-size: 12px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (min-width: 600px) {
  .footer-address__text {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .footer-address__text {
    font-size: 16px;
  }
}

@media (min-width: 900px) {
  .footer__map {
    width: 50%;
  }
}
.footer__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 335/271;
  vertical-align: top;
  border-radius: 16px 16px 0 0;
}
@media (min-width: 900px) {
  .footer__map iframe {
    aspect-ratio: 512/400;
    border-radius: 0 16px 16px 0;
  }
}

.footer__copyright {
  background: #67B0C7;
  text-align: center;
  padding-bottom: 19px;
  position: relative;
}
@media (min-width: 900px) {
  .footer__copyright {
    margin-top: 238px;
    padding-bottom: 31px;
  }
}
.footer__copyright::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 45.714px;
  left: 0;
  top: -45px;
  background-position: left -6px center;
  background-color: transparent;
  background-repeat: repeat-x;
  background-size: contain;
  background-image: url(../img/spots-wave-sp.svg);
}
@media (min-width: 900px) {
  .footer__copyright::before {
    height: 120px;
    top: -119px;
    background-image: url(../img/spots-wave-pc.svg);
    background-position: left -4px center;
  }
}
.footer__copyright small {
  font-size: 10px;
  color: #fff;
  vertical-align: top;
}
@media (min-width: 900px) {
  .footer__copyright small {
    font-size: 14px;
    display: inline-block;
    padding-top: 2px;
  }
}

.pagetop {
  margin-top: 23px;
  text-align: center;
  padding-bottom: 69.714px;
}

.pagetop__link {
  display: inline-block;
  width: 75px;
}
.pagetop__link img {
  width: 75px;
  height: 78px;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.pagetop__link img:hover {
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}

.pagetop-pc {
  position: fixed;
  right: 40px;
  bottom: 40px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 2;
}
.pagetop-pc img {
  width: 80px;
  height: 83.2px;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.pagetop-pc img:hover {
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}
@media (min-width: 1200px) {
  .pagetop-pc img {
    width: 100px;
    height: 104px;
  }
}
.pagetop-pc.is-show {
  opacity: 1;
  visibility: visible;
}