@charset "UTF-8";
html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  font-size: 12px;
  line-height: 1.6;
  color: #4a3636;
  background-color: #e9f6f8;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  body {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  body {
    font-size: 16px;
  }
}

.body-wrapper {
  overflow: hidden;
}

/* 共通パーツ
====================================================*/
.inner {
  padding: 0 20px;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .inner {
    padding: 0 30px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .inner {
    padding: 0 30px;
  }
}
@media screen and (min-width: 1200px) {
  .inner {
    padding: 0 85px;
  }
}

.button {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  height: 40px;
  font-weight: 700;
  line-height: 1.6;
  color: #4a3636;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #ffffff;
  padding: 4px 23px 6px;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .button {
    font-size: 20px;
    height: 56px;
    padding: 7px 37px 9px;
    border: 3px solid #4a3636;
  }
}
@media screen and (min-width: 1200px) {
  .button {
    font-size: 20px;
    height: 56px;
    padding: 7px 37px 9px;
    border: 3px solid #4a3636;
  }
}
.button:hover {
  background: #ffee56;
}
.button:focus {
  border: 2px solid #9ed0e0;
  outline: 2px solid #ffffff;
  outline-offset: 1px;
}

.button-type-s {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  height: 32px;
  font-weight: 700;
  line-height: 1.6;
  color: #4a3636;
  border-radius: 40px;
  border: 2px solid #4a3636;
  background: #ffffff;
  padding: 4px 22px 28px;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
.button-type-s:hover {
  background: #ffee56;
}
.button-type-s:focus {
  border: 2px solid #9ed0e0;
  outline: 2px solid #ffffff;
  outline-offset: 1px;
}

.section-title {
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 15px;
  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;
  row-gap: 6px;
  position: relative;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .section-title {
    gap: 8px;
    padding: 0 20px;
  }
}
@media screen and (min-width: 1200px) {
  .section-title {
    gap: 8px;
    padding: 0 20px;
  }
}

.section-title__icon {
  width: 37.333px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .section-title__icon {
    width: 48px;
  }
}
@media screen and (min-width: 1200px) {
  .section-title__icon {
    width: 48px;
  }
}
.section-title__icon svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.section-title__icon svg path {
  fill: #9ed0e0;
}

.section-title__en {
  font-family: "Courgette", cursive;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .section-title__en {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .section-title__en {
    font-size: 20px;
  }
}

.section-title__ja {
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 125%;
  padding-bottom: 12px;
  position: relative;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .section-title__ja {
    font-size: 32px;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .section-title__ja {
    font-size: 32px;
    padding-bottom: 16px;
  }
}
.section-title__ja::after {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #ffee56;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .section-title__ja::after {
    height: 8px;
  }
}
@media screen and (min-width: 1200px) {
  .section-title__ja::after {
    height: 8px;
  }
}

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

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

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

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

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

.under-line {
  border-bottom: 1px solid #4a3636;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.under-line:hover {
  color: #67b0c7;
  border-bottom: 1px solid #67b0c7;
  cursor: pointer;
}
.under-line:focus {
  border: 2px solid #9ed0e0;
  border-radius: 2px;
  outline: none;
}

/* header
====================================================*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000;
}

@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .header__inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1200px) {
  .header__inner {
    padding: 0 24px;
  }
}

.header__container {
  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: 63px;
  background: #ffffff;
}

.header__logo a {
  display: inline-block;
}
.header__logo a:focus {
  border: 2px solid #9ed0e0;
  border-radius: 2px;
  outline: none;
}
.header__logo a img {
  max-width: 100%;
  display: block;
  height: auto;
  width: 210px;
  margin-top: 4px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .header__logo a img {
    width: 183px;
    margin-top: 7px;
  }
}
@media screen and (min-width: 1200px) {
  .header__logo a img {
    width: 183px;
    margin-top: 7px;
  }
}

.header__contents {
  display: none;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .header__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    min-width: 0;
  }
}
@media screen and (min-width: 1200px) {
  .header__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    min-width: 0;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
  }
}

.header__link {
  font-size: 12px;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__link::before {
  position: absolute;
  left: 0px;
  bottom: -5px;
  width: 0%;
  height: 1px;
  content: "";
  background: #67b0c7;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  outline: none;
}
.header__link:focus {
  border: 2px solid #9ed0e0;
  border-radius: 2px;
  outline: none;
}
.header__link:hover {
  color: #67b0c7;
}
.header__link:hover::before {
  width: 100%;
}

.header__button {
  display: none;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .header__button {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .header__button {
    display: block;
  }
}

.header__open {
  border: 2px solid transparent;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.header__open:focus {
  border: 2px solid #9ed0e0;
  border-radius: 2px;
  outline: none;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .header__open {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  position: relative;
  width: 31px;
  height: 28px;
  z-index: 1000;
}
.drawer-icon.is-checked .drawer-icon__bar {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px;
  width: 32px;
}
.drawer-icon.is-checked .drawer-icon__bar:first-child::after {
  display: none;
}
.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;
  left: 0;
  width: 25.6px;
  top: 1px;
  height: 3px;
  border-radius: 3px;
  background: #4a3636;
  -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:first-child::after {
  position: absolute;
  content: "";
  top: 0;
  right: -6.4px;
  width: 4.8px;
  height: 3px;
  border-radius: 3px;
  background: #4a3636;
}
.drawer-icon__bar:nth-of-type(2) {
  width: 32px;
  top: 13px;
}
.drawer-icon__bar:nth-of-type(3) {
  width: 32px;
  top: 25px;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 41px;
  right: 0;
  background: #ffffff;
  padding: 100px 0px;
  z-index: 999;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -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;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.drawer-content.is-checked {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.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;
  gap: 40px;
  max-width: 145px;
}

.drawer-content__link {
  display: block;
  font-size: 14px;
  text-align: center;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.drawer-content__link::before {
  position: absolute;
  left: 0px;
  bottom: -5px;
  width: 0%;
  height: 1px;
  content: "";
  background: #67b0c7;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  outline: none;
}
.drawer-content__link:hover {
  color: #67b0c7;
}
.drawer-content__link:hover::before {
  width: 100%;
}
.drawer-content__link:focus {
  border: 2px solid #9ed0e0;
  outline: none;
}

.drawer-content__button {
  margin-top: -2px;
  text-align: center;
}
.drawer-content__button .button {
  font-size: 16px;
  padding: 4px 22px 5px;
}

/*fv
====================================================*/
.fv {
  position: relative;
  margin-top: 64px;
  height: 710px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .fv {
    height: 836px;
  }
}
@media screen and (min-width: 1200px) {
  .fv {
    height: 836px;
  }
}

.fv__contents {
  padding-top: 17px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .fv__contents {
    padding-top: 34px;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 846px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .fv__contents {
    padding-top: 34px;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 846px;
    margin: 0 auto;
  }
}

.fv__bg {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100vw;
  z-index: -1;
}
.fv__bg img {
  border-radius: 0px 0px 24px 24px;
  width: 100%;
  height: 554px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .fv__bg img {
    height: 739px;
    border-radius: 0px 0px 40px 40px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__bg img {
    height: 739px;
    border-radius: 0px 0px 40px 40px;
  }
}

.head {
  text-align: center;
}

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

.head__image1 {
  margin-top: 21px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .head__image1 {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .head__image1 {
    margin-top: 24px;
  }
}
.head__image1 img {
  width: 335px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .head__image1 img {
    width: 520px;
  }
}
@media screen and (min-width: 1200px) {
  .head__image1 img {
    width: 520px;
  }
}

.head__image2 {
  margin-top: 12px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .head__image2 {
    margin-top: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .head__image2 {
    margin-top: 16px;
  }
}
.head__image2 img {
  width: 240px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .head__image2 img {
    width: 356px;
  }
}
@media screen and (min-width: 1200px) {
  .head__image2 img {
    width: 356px;
  }
}

.fv__image-items {
  position: relative;
  width: 100%;
}

.image-item__main {
  position: relative;
  top: 112.5px;
  left: 50%;
  -webkit-transform: translateX(-49.5%);
          transform: translateX(-49.5%);
  width: 200px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .image-item__main {
    top: 33px;
    width: 250px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 1200px) {
  .image-item__main {
    top: 33px;
    width: 250px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.image-item .device {
  position: relative;
  z-index: 2;
}

.fukidashi {
  position: absolute;
  top: -96px;
  left: -69px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .fukidashi {
    top: -33px;
    left: -262px;
  }
}
@media screen and (min-width: 1200px) {
  .fukidashi {
    top: -33px;
    left: -262px;
  }
}
.fukidashi img {
  width: 142px;
  height: 80px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .fukidashi img {
    width: 244px;
    height: 130px;
  }
}
@media screen and (min-width: 1200px) {
  .fukidashi img {
    width: 244px;
    height: 130px;
  }
}

.present {
  position: absolute;
  top: -103px;
  right: -41px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .present {
    top: -16px;
    right: -172px;
  }
}
@media screen and (min-width: 1200px) {
  .present {
    top: -16px;
    right: -172px;
  }
}
.present img {
  width: 110px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .present img {
    width: 180px;
  }
}
@media screen and (min-width: 1200px) {
  .present img {
    width: 180px;
  }
}

.drink {
  position: absolute;
  top: 278px;
  left: -25px;
  z-index: 2;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .drink {
    top: 195px;
    left: -198px;
  }
}
@media screen and (min-width: 1200px) {
  .drink {
    top: 195px;
    left: -198px;
  }
}
.drink img {
  width: 47.257px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .drink img {
    width: 111px;
  }
}
@media screen and (min-width: 1200px) {
  .drink img {
    width: 111px;
  }
}

.food {
  position: absolute;
  top: 367px;
  left: -68px;
  z-index: 2;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .food {
    top: 403px;
    left: -299px;
  }
}
@media screen and (min-width: 1200px) {
  .food {
    top: 403px;
    left: -299px;
  }
}
.food img {
  width: 54.069px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .food img {
    width: 127px;
  }
}
@media screen and (min-width: 1200px) {
  .food img {
    width: 127px;
  }
}

.cat1 {
  position: absolute;
  top: 292px;
  right: -67px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .cat1 {
    top: 276px;
    right: -236px;
  }
}
@media screen and (min-width: 1200px) {
  .cat1 {
    top: 276px;
    right: -236px;
  }
}
.cat1 img {
  width: 62px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .cat1 img {
    width: 170px;
  }
}
@media screen and (min-width: 1200px) {
  .cat1 img {
    width: 170px;
  }
}

.cat2 {
  position: absolute;
  top: 347px;
  right: -58px;
  z-index: 2;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .cat2 {
    top: 397px;
    right: -299px;
  }
}
@media screen and (min-width: 1200px) {
  .cat2 {
    top: 397px;
    right: -299px;
  }
}
.cat2 img {
  width: 98px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .cat2 img {
    width: 233px;
  }
}
@media screen and (min-width: 1200px) {
  .cat2 img {
    width: 233px;
  }
}

/*
====================================================*/
.about {
  padding: 32px 0;
  overflow: hidden;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about {
    padding-top: 80px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .about {
    padding-top: 80px;
    padding-bottom: 0;
  }
}

.about__inner {
  position: relative;
}

.about__container {
  position: relative;
}

.about__content {
  padding: 40px 12px;
  border-radius: 24px;
  background: #ffffff;
  text-align: center;
  max-width: 335px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .about__content {
    padding: 40px 20px;
    gap: 33px;
    max-width: 460px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about__content {
    padding: 40px 20px;
    gap: 33px;
    max-width: 580px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about__content {
    padding: 40px 114px;
    gap: 33px;
    max-width: 848px;
    border-radius: 40px;
  }
}

.about__picture1 {
  position: absolute;
  top: -9px;
  left: -19px;
  width: 87px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about__picture1 {
    width: 148px;
    height: 100px;
    top: -2px;
    left: -70px;
  }
}
@media screen and (min-width: 1200px) {
  .about__picture1 {
    width: 148px;
    height: 100px;
    top: -2px;
    left: -30px;
  }
}

.about__picture2 {
  position: absolute;
  top: -10px;
  right: -32px;
  width: 87px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about__picture2 {
    width: 148px;
    height: 100px;
    top: 6px;
    right: -70px;
  }
}
@media screen and (min-width: 1200px) {
  .about__picture2 {
    width: 148px;
    height: 100px;
    top: 6px;
    right: -30px;
  }
}

.about__text-content {
  white-space: nowrap;
}

.about__text-main {
  margin-top: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .about__text-main {
    font-size: 16px;
    margin-top: 32px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about__text-main {
    font-size: 16px;
    margin-top: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .about__text-main {
    font-size: 16px;
    margin-top: 32px;
  }
}

.about__text {
  margin-top: 22px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1.61;
}
.about__text:nth-child(n+2) {
  margin-top: 18px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about__text:nth-child(n+2) {
    margin-top: 27px;
  }
}
@media screen and (min-width: 1200px) {
  .about__text:nth-child(n+2) {
    margin-top: 27px;
    letter-spacing: 0.1px;
  }
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .about__text {
    font-size: 14px;
    margin-top: 32px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about__text {
    font-size: 16px;
    margin-top: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .about__text {
    font-size: 16px;
    margin-top: 32px;
  }
}

.about__present-wrap {
  margin-top: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding-top: 8px;
  padding-bottom: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 2px dashed #9ed0e0;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .about__present-wrap {
    margin-top: 32px;
    font-size: 16px;
    padding-top: 12px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about__present-wrap {
    margin-top: 32px;
    font-size: 20px;
    padding-top: 12px;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .about__present-wrap {
    margin-top: 32px;
    font-size: 20px;
    padding-top: 12px;
    padding-bottom: 10px;
  }
}

.about__button {
  font-size: 16px;
  margin-top: 24px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about__button {
    font-size: 20px;
    margin-top: 33px;
  }
}
@media screen and (min-width: 1200px) {
  .about__button {
    font-size: 20px;
    margin-top: 33px;
  }
}

.about__bg-right {
  width: 200px;
  position: absolute;
  top: 273px;
  right: -160px;
  z-index: -1;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about__bg-right {
    width: 480px;
    top: 73.07px;
    right: -550px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-right {
    width: 480px;
    top: 73.07px;
    right: -616.2px;
  }
}

.about__bg-left {
  width: 200px;
  position: absolute;
  top: 395px;
  left: -160px;
  z-index: -1;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about__bg-left {
    width: 480px;
    top: 74px;
    left: -550px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-left {
    width: 480px;
    top: 74px;
    left: -670px;
  }
}

.about__bg-paw {
  width: 54px;
  position: absolute;
  top: -10px;
  right: -20px;
  z-index: -1;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about__bg-paw {
    width: 70px;
    top: -40px;
    right: -80px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-paw {
    width: 100px;
    top: -80px;
    right: -166.12px;
  }
}

.about__bg-line {
  display: none;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about__bg-line {
    display: block;
    position: absolute;
    top: -20px;
    left: -240px;
    z-index: -1;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-line {
    display: block;
    position: absolute;
    top: -20px;
    left: -353px;
    z-index: -1;
  }
}

.about__bg-arrow {
  position: absolute;
  bottom: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about__bg-arrow {
    width: 140px;
    bottom: -50px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-arrow {
    width: 140px;
    bottom: -50px;
  }
}

.about__bg-road {
  position: absolute;
  z-index: -1;
  display: none;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about__bg-road {
    display: block;
    width: 427px;
    height: 817px;
    top: 321px;
    left: -310px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-road {
    display: block;
    width: 427px;
    height: 817px;
    top: 321px;
    left: -435px;
  }
}

.about__bg-pc1 {
  position: absolute;
  bottom: -215px;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .about__bg-pc1 {
    bottom: -216px;
    left: -20px;
  }
}
.about__bg-pc1 img {
  width: 138px;
  height: 215px;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .about__bg-pc1 img {
    width: 200px;
    height: auto;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about__bg-pc1 {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-pc1 {
    display: none;
  }
}

.about__bg-goods {
  position: absolute;
  bottom: -59.67px;
  right: 1px;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .about__bg-goods {
    width: 80px;
    bottom: -59.67px;
    right: -110px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about__bg-goods {
    width: 101px;
    top: 601.32px;
    right: -110px;
    z-index: 2;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-goods {
    width: 101px;
    top: 601.32px;
    right: -181px;
    z-index: 2;
  }
}

.about__bg-goods2 {
  position: absolute;
  bottom: -118.67px;
  right: 37px;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .about__bg-goods2 {
    width: 200px;
    bottom: -130px;
    right: -60px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about__bg-goods2 {
    width: 308px;
    top: 830px;
    right: -130px;
    z-index: -1;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-goods2 {
    width: 308px;
    top: 757.4px;
    right: -258px;
    z-index: -1;
  }
}

.about__bg-path1 {
  position: absolute;
  display: none;
  z-index: -1;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about__bg-path1 {
    display: block;
    width: 806.851px;
    top: 607px;
    right: -560px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-path1 {
    display: block;
    width: 806.851px;
    top: 607px;
    right: -898.001px;
  }
}

.about__bg-path2 {
  position: absolute;
  display: none;
  z-index: -1;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about__bg-path2 {
    display: block;
    width: 806.851px;
    top: 640.34px;
    right: -513px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-path2 {
    display: block;
    width: 806.851px;
    top: 640.34px;
    right: -830.931px;
  }
}

.about__onomichi {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 357px;
  bottom: -178px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about__onomichi {
    width: 770px;
    bottom: -262px;
  }
}
@media screen and (min-width: 1200px) {
  .about__onomichi {
    width: 891px;
    bottom: -262px;
    -webkit-transform: translateX(-50.3%);
            transform: translateX(-50.3%);
  }
}

.about-swiper {
  margin-top: 175.87px;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about-swiper {
    margin-top: 258px;
  }
}
@media screen and (min-width: 1200px) {
  .about-swiper {
    margin-top: 258px;
  }
}

.about-slide {
  width: 100px !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about-slide {
    width: 200px !important;
  }
}
@media screen and (min-width: 1200px) {
  .about-slide {
    width: 200px !important;
  }
}
.about-slide img {
  width: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .about-slide img {
    width: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .about-slide img {
    width: 200px;
  }
}

/*how-to-enter
====================================================*/
.how-to-enter {
  padding-top: 33px;
  padding-bottom: 35px;
  overflow: hidden;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .how-to-enter {
    padding-top: 119px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter {
    padding-top: 119px;
    padding-bottom: 0;
  }
}

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

.how-to-enter__container {
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .how-to-enter__container {
    max-width: 1024px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__container {
    max-width: 1024px;
  }
}

.how-to-enter__picture1 {
  width: 94px;
  position: absolute;
  top: 5px;
  right: -153px;
  z-index: 2;
  max-width: none;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .how-to-enter__picture1 {
    width: 214px;
    top: -16.03px;
    right: -139px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__picture1 {
    width: 214px;
    height: 181.104px;
    top: -16.03px;
    right: -139px;
  }
}

.how-to-enter__picture2 {
  width: 105px;
  position: absolute;
  top: 0;
  right: -98.5px;
  max-width: none;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .how-to-enter__picture2 {
    width: 238px;
    top: -27px;
    right: -13px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__picture2 {
    width: 238px;
    top: -27px;
    right: -13px;
  }
}

.how-to-enter__picture3 {
  position: absolute;
  top: 0;
  left: -122.5px;
  max-width: none;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .how-to-enter__picture3 {
    width: 180px;
    top: 0;
    left: -200px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .how-to-enter__picture3 {
    width: 370px;
    top: -60px;
    left: -480px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__picture3 {
    top: -60px;
    left: -208px;
  }
}

.how-to-enter__steps {
  text-align: center;
  padding-bottom: 3px;
}

.step-boxes {
  margin-top: 25px;
  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;
  position: relative;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .step-boxes {
    margin-top: 32px;
    -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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .step-boxes {
    margin-top: 32px;
    -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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 32px;
  }
}

.step-box {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .step-box {
    max-width: calc(33.3333333333% - 32px);
    padding-bottom: 8px;
  }
  .step-box:nth-of-type(2) {
    margin-top: 48px;
  }
}
@media screen and (min-width: 1200px) {
  .step-box {
    max-width: 320px;
    padding-bottom: 8px;
  }
  .step-box:nth-of-type(2) {
    margin-top: 68px;
  }
}

.step-img img {
  width: 196px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .step-img img {
    padding: 0 10px;
    width: 280px;
  }
}
@media screen and (min-width: 1200px) {
  .step-img img {
    padding: 0 20px;
    width: 320px;
  }
}

.paw-1 {
  width: 55px;
  position: absolute;
  top: -64.33px;
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .paw-1 {
    right: -60px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .paw-1 {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .paw-1 {
    display: none;
  }
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 16px;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .step-title {
    font-size: 18px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .step-title {
    font-size: 18px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .step-title {
    font-size: 20px;
    margin-top: 24px;
  }
}

.step-box:nth-of-type(3) .step-title {
  margin-top: 17px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .step-box:nth-of-type(3) .step-title {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .step-box:nth-of-type(3) .step-title {
    margin-top: 24px;
  }
}

.step-text {
  margin-top: 15px;
  font-size: 12px;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .step-text {
    font-size: 13px;
    margin-top: 16px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .step-text {
    font-size: 13px;
    margin-top: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .step-text {
    font-size: 16px;
    margin-top: 16px;
  }
}

.step-box:nth-of-type(2) .step-text {
  margin-top: 16px;
}

.step-box:nth-of-type(3) .step-text {
  margin-top: 16px;
}

.step-text .pc-only,
.step-text .sp-only {
  white-space: nowrap;
}

.step-link-block {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  padding: 8px 12px;
  background: #ffffff;
  margin-top: 16px;
  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;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  gap: 8px;
}
.step-link-block svg {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .step-link-block svg {
    width: 24px;
    height: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .step-link-block svg {
    width: 24px;
    height: 24px;
  }
}
.step-link-block:hover {
  border: 1px solid #67b0c7;
}
.step-link-block:focus {
  border: 2px solid #9ed0e0;
  border-radius: 2px;
  outline: none;
}

.step-link {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .step-link {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .step-link {
    font-size: 16px;
  }
}

.step-line1 {
  margin-top: 14px;
  height: 34px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .step-line1 {
    margin-top: 0;
    position: absolute;
    width: 80px;
    height: 16px;
    top: 150px;
    right: -48px;
    z-index: 2;
  }
}
@media screen and (min-width: 1200px) {
  .step-line1 {
    margin-top: 0;
    position: absolute;
    height: 24px;
    top: 205px;
    right: -48px;
  }
}

.step-line2 {
  margin-top: 14px;
  height: 34px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .step-line2 {
    margin-top: 0;
    width: 80px;
    height: 16px;
    position: absolute;
    top: 102px;
    right: -57px;
    z-index: 2;
  }
}
@media screen and (min-width: 1200px) {
  .step-line2 {
    margin-top: 0;
    height: 24px;
    position: absolute;
    top: 137px;
    right: -57px;
  }
}

.paw-2 {
  width: 55px;
  position: absolute;
  top: 411.22px;
  left: 0;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .paw-2 {
    left: -60px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .paw-2 {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .paw-2 {
    display: none;
  }
}

.paw-3 {
  width: 55px;
  position: absolute;
  top: 741.55px;
  right: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .paw-3 {
    right: -60px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .paw-3 {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .paw-3 {
    display: none;
  }
}

.step-box__button {
  margin-top: 15px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .step-box__button {
    margin-top: 43px;
    padding: 7px 40px 9px;
  }
}
@media screen and (min-width: 1200px) {
  .step-box__button {
    margin-top: 43px;
    padding: 7px 40px 9px;
  }
}

.step-bg__pc {
  display: none;
}
.step-bg__pc img {
  width: 100px;
  height: 220px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .step-bg__pc img {
    width: 70px;
    height: 154px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .step-bg__pc {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .step-bg__pc {
    display: block;
  }
}

.step-bg__pc1 {
  position: absolute;
  top: 148px;
  right: 36px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .step-bg__pc1 {
    right: 0;
  }
}

.step-bg__pc2 {
  position: absolute;
  top: 580px;
  left: 36px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .step-bg__pc2 {
    left: 0;
  }
}

/*prizes
====================================================*/
.prizes {
  overflow: hidden;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .prizes {
    padding-top: 122px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .prizes {
    padding-top: 122px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes {
    padding-top: 122px;
  }
}

.prizes__inner {
  padding-top: 20px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .prizes__inner {
    padding-top: 28px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .prizes__inner {
    padding-top: 28px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__inner {
    padding-top: 28px;
  }
}

.prizes__container {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-bottom: 20px;
}
.prizes__container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -20px;
  -webkit-transform: translateX(-48%);
          transform: translateX(-48%);
  width: 238px;
  height: 83px;
  background: url(../img/present-rectangle-45sp.png) no-repeat center top/cover;
  z-index: -1;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .prizes__container::before {
    width: 365.624px;
    height: 149.967px;
    top: -29px;
    background: url(../img/present-rectangle-45pc.png) no-repeat center top/cover;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__container::before {
    width: 365.624px;
    height: 149.967px;
    top: -29px;
    -webkit-transform: translateX(-50.4%);
            transform: translateX(-50.4%);
    background: url(../img/present-rectangle-45pc.png) no-repeat center top/cover;
  }
}
.prizes__container::after {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% - 83px);
  left: 0;
  bottom: 20px;
  background: #ffffff;
  border-radius: 24px;
  z-index: -1;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .prizes__container::after {
    height: calc(100% - 140.967px);
  }
}
@media screen and (min-width: 1200px) {
  .prizes__container::after {
    height: calc(100% - 140.967px);
  }
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .prizes__container {
    max-width: 600px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .prizes__container {
    max-width: 1024px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__container {
    max-width: 1024px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .section-title {
    position: relative;
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .section-title {
    position: relative;
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
  }
}

.present-title__triangle-l {
  display: none;
}
.present-title__triangle-l img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .present-title__triangle-l {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    max-width: 315px;
  }
}
@media screen and (min-width: 1200px) {
  .present-title__triangle-l {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 315px;
    width: 100%;
  }
}

.present-title__triangle-r {
  display: none;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .present-title__triangle-r {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    max-width: 315px;
    width: 30%;
  }
}
@media screen and (min-width: 1200px) {
  .present-title__triangle-r {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    max-width: 315px;
    width: 100%;
  }
}

.prizes__contents-wrapper {
  padding: 0 20px;
  text-align: center;
  padding-bottom: 35px;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .prizes__contents-wrapper {
    padding: 0 20px;
    padding-bottom: 53px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .prizes__contents-wrapper {
    padding: 0 56px;
    padding-bottom: 53px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__contents-wrapper {
    padding: 0 56px;
    padding-bottom: 53px;
  }
}

.prizes__contents-text {
  margin-top: 17px;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .prizes__contents-text {
    font-size: 16px;
    margin-top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__contents-text {
    font-size: 16px;
    margin-top: 40px;
  }
}

.prizes__boxes {
  margin-top: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .prizes__boxes {
    margin-top: 81px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__boxes {
    margin-top: 81px;
  }
}

.box-grid__type1,
.box-grid__type2 {
  display: grid;
  height: auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .box-grid__type1,
  .box-grid__type2 {
    gap: 0;
  }
}
@media screen and (min-width: 1200px) {
  .box-grid__type1,
  .box-grid__type2 {
    gap: 0;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .box-grid__type1 {
    gap: 32px;
  }
  .box-grid__type1 .prizes__present-box {
    max-width: 440px;
  }
  .box-grid__type1 .present-box__img img {
    aspect-ratio: 44/34;
  }
  .box-grid__type1 .present-box__text {
    min-height: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .box-grid__type1 {
    gap: 32px;
  }
  .box-grid__type1 .prizes__present-box {
    max-width: 440px;
  }
  .box-grid__type1 .present-box__img {
    width: 440px;
    height: 340px;
  }
  .box-grid__type1 .present-box__img img {
    aspect-ratio: 44/34;
  }
  .box-grid__type1 .present-box__text {
    min-height: 120px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .box-grid__type2 {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
  .box-grid__type2 .present-box__text {
    min-height: 80px;
  }
  .box-grid__type2 .present-box__head {
    width: 76px;
    height: 80px;
    top: -41px;
  }
  .box-grid__type2 .present-box__head-text {
    font-size: 12.8px;
  }
  .box-grid__type2 .present-box_head-number {
    font-size: 38.4px;
  }
  .box-grid__type2 .present-box__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .box-grid__type2 {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
  .box-grid__type2 .present-box__text {
    min-height: 80px;
  }
  .box-grid__type2 .present-box__head {
    width: 76px;
    height: 80px;
    top: -41px;
  }
  .box-grid__type2 .present-box__head-text {
    font-size: 12.8px;
  }
  .box-grid__type2 .present-box_head-number {
    font-size: 38.4px;
  }
  .box-grid__type2 .present-box__text {
    font-size: 16px;
  }
  .box-grid__type2 .present-box {
    border-radius: 16px;
  }
  .box-grid__type2 .present-box__body::after {
    width: 64px;
    height: 64px;
  }
  .box-grid__type2 .present-box__body::before {
    bottom: 8px;
    right: 7px;
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
  }
  .box-grid__type2 .present-box__img {
    width: 280px;
    height: 240px;
  }
  .box-grid__type2 .present-box__img img {
    aspect-ratio: 28/24;
  }
}
.box-grid__type2 .prizes__present-box {
  margin-top: 24px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .box-grid__type2 .prizes__present-box {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .box-grid__type2 .prizes__present-box {
    margin-top: 65px;
    max-width: 280px;
  }
}

.prizes__present-box {
  position: relative;
  text-align: center;
  cursor: pointer;
  width: 100%;
}
.prizes__present-box:nth-child(3) {
  grid-column: 1/span 2;
  width: calc(50% - 7.5px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .prizes__present-box:nth-child(3) {
    width: 100%;
    grid-column: auto;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__present-box:nth-child(3) {
    width: 100%;
    grid-column: auto;
  }
}

.present-box {
  display: block;
  background: #f5f5f5;
  overflow: hidden;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .present-box {
    border-radius: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .present-box {
    border-radius: 24px;
  }
}
.present-box::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  border: 4px solid transparent;
  border-radius: inherit;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  z-index: 1;
}
.present-box:hover::after, .present-box:focus::after, .present-box:focus-visible::after {
  border-color: #9ed0e0;
}
.present-box:hover, .present-box:focus {
  outline: none;
}
.present-box:hover .present-box__body::after, .present-box:focus .present-box__body::after {
  background-image: url(../img/present-cornercolor-hover.png);
}

.present-box__head {
  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: 2px;
  margin-top: 1px;
  width: 46px;
  height: 46px;
  background: url(../img/prizes-box-headbg.png) no-repeat center center/contain;
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 4;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .present-box__head {
    width: 95px;
    height: 95px;
    top: -48px;
    margin-top: 1px;
  }
}
@media screen and (min-width: 1200px) {
  .present-box__head {
    width: 95px;
    height: 95px;
    top: -48px;
    margin-top: 1px;
  }
}

.present-box__head-text {
  margin-top: 1px;
  color: #ffffff;
  font-size: 7.68px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .present-box__head-text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .present-box__head-text {
    font-size: 16px;
  }
}

.present-box_head-number {
  font-family: "Josefin Sans", sans-serif;
  color: #ffffff;
  font-size: 23.04px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .present-box_head-number {
    font-size: 48px;
  }
}
@media screen and (min-width: 1200px) {
  .present-box_head-number {
    font-size: 48px;
  }
}

.present-box__body {
  position: relative;
}
.present-box__body::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  background: url(../img/present-cornercolor-sp.png) no-repeat center center;
  z-index: 1;
  -webkit-transition: background-image 0.3s;
  transition: background-image 0.3s;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .present-box__body::after {
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .present-box__body::after {
    bottom: 0;
    width: 100px;
    height: 100px;
  }
}
.present-box__body::before {
  position: absolute;
  content: "";
  bottom: 5px;
  right: 5px;
  width: 12px;
  height: 12px;
  background: url(../img/ph--magnifying-glass-plus-bold.svg) no-repeat center center;
  background-size: 14px 14px;
  z-index: 2;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .present-box__body::before {
    width: 22px;
    height: 22px;
    bottom: 9px;
    right: 8.5px;
    background-size: 22px 22px;
  }
}
@media screen and (min-width: 1200px) {
  .present-box__body::before {
    width: 38px;
    height: 38px;
    bottom: 10px;
    right: 10px;
    background-size: 38px 38px;
  }
}

.present-box__img {
  overflow: hidden;
  min-width: 160px;
  min-height: 140px;
  display: block;
}
.present-box__img img {
  width: 100%;
  display: block;
  aspect-ratio: 16/14;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -o-object-fit: cover;
     object-fit: cover;
}
.present-box__img img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.present-box__text {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  min-height: 56px;
  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;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .present-box__text {
    font-size: 20px;
    min-height: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .present-box__text {
    font-size: 20px;
  }
}

.present-box__button {
  margin-top: 18px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .present-box__button {
    margin-top: 41px;
    padding: 7px 40px 9px;
  }
}
@media screen and (min-width: 1200px) {
  .present-box__button {
    margin-top: 41px;
    padding: 7px 40px 9px;
  }
}

.present__bg {
  margin-top: -64px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: -2;
}
.present__bg img {
  min-width: 580px;
  width: 100%;
  display: block;
}
.present__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#e9f6f8), color-stop(51.04%, rgba(255, 255, 255, 0.6)));
  background: linear-gradient(180deg, #e9f6f8 0%, rgba(255, 255, 255, 0.6) 51.04%);
  z-index: 0;
}
@media screen and (min-width: 1200px) {
  .present__bg {
    margin-top: -20px;
  }
}

/*present-modal
====================================================*/
.present-modal {
  position: fixed;
  inset: 0;
  padding: 0;
  max-width: 336px;
  height: 480px;
  border-radius: 24px;
  background: #fff;
  border: none;
  z-index: 20;
  overscroll-behavior-y: none;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .present-modal {
    max-width: 480px;
    height: 650px;
  }
}
@media screen and (min-width: 1200px) {
  .present-modal {
    max-width: 480px;
    height: 650px;
  }
}
.present-modal::-ms-backdrop {
  background: #000;
  opacity: 0.7;
}
.present-modal::backdrop {
  background: #000;
  opacity: 0.7;
}

.present-modal__box {
  width: 100%;
}

.present-modal__img {
  width: 100%;
}
.present-modal__img img {
  width: 336px;
  height: 210px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .present-modal__img img {
    width: 480px;
    height: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .present-modal__img img {
    width: 480px;
    height: 300px;
  }
}

.present-modal__body {
  padding: 39px 20px 0px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .present-modal__body {
    padding: 32px 40px;
  }
}
@media screen and (min-width: 1200px) {
  .present-modal__body {
    padding: 32px 40px;
  }
}

.present-modal__head {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .present-modal__head {
    font-size: 20px;
    font-weight: 700;
  }
}
@media screen and (min-width: 1200px) {
  .present-modal__head {
    font-size: 20px;
    font-weight: 700;
  }
}

.present-modal__text {
  margin-top: 12px;
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .present-modal__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .present-modal__text {
    font-size: 16px;
  }
}

.present-modal__close-button {
  margin-top: 16px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .present-modal__close-button {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .present-modal__close-button {
    margin-top: 24px;
  }
}

.modal-button {
  font-size: 16px;
  height: 40px;
  border: 2px solid #4a3636;
  padding: 4px 22px 6px;
}

/*spots
====================================================*/
.spots {
  scroll-margin-top: 46px;
  background: #67b0c7;
  padding-bottom: 20px;
  position: relative;
}
.spots::before {
  position: absolute;
  content: "";
  top: -47px;
  right: 0;
  width: 100%;
  height: 47px;
  background: url(../img/spots-top-bg-sp.png) left center/94px 47px;
  z-index: 2;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .spots::before {
    height: 121px;
    top: -121px;
    right: 0;
    background: url(../img/spots-top-bg-pc.png) left center/252px 121px;
  }
}
@media screen and (min-width: 1200px) {
  .spots::before {
    height: 121px;
    top: -121px;
    right: 0;
    background: url(../img/spots-top-bg-pc.png) left center/252px 121px;
  }
}
.spots::after {
  position: absolute;
  content: "";
  bottom: -46px;
  width: 100%;
  right: 0;
  height: 48px;
  background: url(../img/spots-bottom-bg-sp.png) left center/94px 47px;
  z-index: -1;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .spots::after {
    height: 122px;
    bottom: -102px;
    right: 5px;
    background: url(../img/spots-bottom-bg-pc.png) left center/252px 121px;
  }
}
@media screen and (min-width: 1200px) {
  .spots::after {
    height: 122px;
    bottom: -102px;
    right: 5px;
    background: url(../img/spots-bottom-bg-pc.png) left center/252px 121px;
  }
}

.spots__pc-display {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .spots__pc-display {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    max-width: 100%;
    width: 100%;
    padding-left: 28px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__pc-display {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    width: 100%;
    max-width: 100%;
    padding-left: 28px;
  }
}

.spots__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .spots__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 6px;
    width: 40px;
    padding-left: clamp(40px, (100vw - 1024px) / 2, 244px);
  }
}
@media screen and (min-width: 1200px) {
  .spots__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 6px;
    width: 40px;
    padding-left: clamp(40px, (100vw - 1024px) / 2, 244px);
  }
}

.spots__title-img {
  margin-top: 3px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .spots__title-img {
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .spots__title-img {
    margin-top: 0;
  }
}
.spots__title-img svg {
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .spots__title-img svg {
    width: 56px;
    height: 56px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__title-img svg {
    width: 56px;
    height: 56px;
  }
}

.spots-title-main {
  color: #ffffff;
  font-family: "Kiwi Maru", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .spots-title-main {
    font-size: 40px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    text-orientation: mixed;
    line-height: 1.25;
    letter-spacing: 10px;
    margin-top: 1px;
  }
}
@media screen and (min-width: 1200px) {
  .spots-title-main {
    font-size: 40px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    text-orientation: mixed;
    line-height: 1.25;
    letter-spacing: 10px;
    margin-top: 1px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .tategaki-small {
    display: inline-block;
    margin-top: 6px;
    margin-bottom: -5px;
    margin-right: 2px;
    margin-left: 1px;
  }
}
@media screen and (min-width: 1200px) {
  .tategaki-small {
    display: inline-block;
    margin-top: 6px;
    margin-bottom: -5px;
    margin-right: 2px;
    margin-left: 1px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .swiper-area {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
    position: relative;
  }
}
@media screen and (min-width: 1200px) {
  .swiper-area {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
    position: relative;
  }
}

.spots-swiper {
  margin-top: 23px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .spots-swiper {
    width: 100%;
    margin-top: 0;
    position: relative;
  }
}
@media screen and (min-width: 1200px) {
  .spots-swiper {
    width: 100%;
    margin-top: 0;
    position: relative;
  }
}

.swiper-card {
  overflow: hidden;
  background: #ffffff;
  border-radius: 12px;
  width: clamp(240px, 50%, 386px) !important;
  height: 402px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 31.159px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .swiper-card {
    border-radius: 12px;
    width: clamp(240px, 50%, 440px) !important;
    max-width: 100% !important;
    min-width: 0;
    height: auto !important;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .swiper-card {
    border-radius: 24px;
    width: clamp(240px, 44%, 448px) !important;
    max-width: 100% !important;
    min-width: 0;
    height: auto !important;
    padding-bottom: 40px;
    gap: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .swiper-card {
    border-radius: 24px;
    width: 344px !important;
    min-height: 542px;
    padding-bottom: 40px;
    gap: 24px;
  }
}
.swiper-card img {
  width: 100%;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .swiper-card img {
    width: 100%;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .swiper-card img {
    width: 100%;
  }
}

.swiper-card__title {
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .swiper-card__title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .swiper-card__title {
    font-size: 20px;
  }
}

.swiper-card__text {
  font-size: 12px;
  padding: 0 24px;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .swiper-card__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .swiper-card__text {
    font-size: 16px;
    padding: 0 24px;
  }
}
@media screen and (min-width: 1200px) {
  .swiper-card__text {
    font-size: 16px;
    padding: 0 32px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}

.swiper-button {
  position: absolute;
  bottom: -24px;
  left: -48px;
  width: 944px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 2;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .swiper-button {
    width: 700px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -40px;
  }
}

.spots-prev,
.spots-next {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffee56;
  position: relative;
}

.spots-prev {
  display: none;
}
.spots-prev:focus {
  border: 2px solid #9ed0e0;
  outline: 2px solid #ffffff;
  outline-offset: 1px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .spots-prev {
    display: block;
  }
  .spots-prev::before {
    position: absolute;
    content: "";
    width: 57px;
    height: 57px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: url(../img/spots-arrow-prev.png) no-repeat center center/57px 57px;
  }
}
@media screen and (min-width: 1200px) {
  .spots-prev {
    display: block;
  }
  .spots-prev::before {
    position: absolute;
    content: "";
    width: 57px;
    height: 57px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: url(../img/spots-arrow-prev.png) no-repeat center center/57px 57px;
  }
}

.spots-next {
  display: none;
}
.spots-next:focus {
  border: 2px solid #9ed0e0;
  outline: 2px solid #ffffff;
  outline-offset: 1px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .spots-next {
    display: block;
  }
  .spots-next::before {
    position: absolute;
    content: "";
    width: 57px;
    height: 57px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: url(../img/spots-arrow-next.png) no-repeat center center/57px 57px;
  }
}
@media screen and (min-width: 1200px) {
  .spots-next {
    display: block;
  }
  .spots-next::before {
    position: absolute;
    content: "";
    width: 57px;
    height: 57px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: url(../img/spots-arrow-next.png) no-repeat center center/57px 57px;
  }
}

@media screen and (min-width: 1200px) {
  .spots__subtitle {
    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;
    margin-top: 64px;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
}

.spots__bg-paw {
  display: none;
}
@media screen and (min-width: 1200px) {
  .spots__bg-paw {
    display: block;
    position: absolute;
    width: 100px;
    height: 220px;
    bottom: -2px;
    left: -208px;
  }
}

.title-head__img {
  text-align: center;
}
.title-head__img img {
  width: 255px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .title-head__img img {
    width: 360px;
  }
}
@media screen and (min-width: 1200px) {
  .title-head__img img {
    width: 495px;
  }
}

.spots__subtitle-body {
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .spots__subtitle-body {
    text-align: right;
  }
}

.subtitle-body__text {
  color: #ffffff;
  text-align: center;
  font-size: 11.444px;
  margin-top: 16px;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .subtitle-body__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .subtitle-body__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .subtitle-body__text {
    font-size: 16px;
    margin-top: 0;
  }
}

.subtitle-body__button {
  margin-top: 24px;
}

/*qa
====================================================*/
.qa {
  margin-top: 46px;
  padding-top: 40px;
  padding-bottom: 30px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .qa {
    margin-top: 102px;
    padding-top: 100px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .qa {
    margin-top: 102px;
    padding-top: 120px;
    padding-bottom: 0;
  }
}

.qa__boxes {
  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: 12px;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .qa__boxes {
    margin-top: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .qa__boxes {
    margin-top: 32px;
    gap: 24px;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1200px) {
  .qa__boxes {
    margin-top: 40px;
    gap: 24px;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }
}

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

.qa-box {
  position: relative;
}
.qa-box.is-open .qa-box__toggle {
  background: #9ed0e0 url(../img/qa-icon-close.png) no-repeat center center/17.45px 17.45px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .qa-box.is-open .qa-box__toggle {
    background: #9ed0e0 url(../img/qa-icon-close.png) no-repeat center center/32px 32px;
  }
}
@media screen and (min-width: 1200px) {
  .qa-box.is-open .qa-box__toggle {
    background: #9ed0e0 url(../img/qa-icon-close.png) no-repeat center center/32px 32px;
  }
}
.qa-box.is-open .qa-box__body {
  display: block;
}

.qa-box__head {
  padding: 10px 47px 10px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .qa-box__head {
    gap: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .qa-box__head {
    gap: 16px;
    padding: 24px 47px 24px 22px;
  }
}
.qa-box__head:focus {
  border: 2px solid #9ed0e0;
  outline: none;
}

.qa-box__toggle {
  position: absolute;
  top: 19px;
  right: 13px;
  width: 26.182px;
  height: 26.182px;
  border-radius: 50%;
  background: #9ed0e0 url(../img/qa-icon-open.png) no-repeat center center/17.45px 17.45px;
  pointer-events: none;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .qa-box__toggle {
    width: 48px;
    height: 48px;
    right: 20px;
    background: #9ed0e0 url(../img/qa-icon-open.png) no-repeat center center/32px 32px;
  }
}
@media screen and (min-width: 1200px) {
  .qa-box__toggle {
    width: 48px;
    height: 48px;
    right: 20px;
    margin-top: -2px;
    background: #9ed0e0 url(../img/qa-icon-open.png) no-repeat center center/32px 32px;
  }
}

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

.qa-box__head-text {
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .qa-box__head-text {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .qa-box__head-text {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .qa-box__head-text {
    font-size: 20px;
  }
}

.qa-box__body {
  padding: 18px 14px 12px 14px;
  background: #f5f5f5;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .qa-box__body {
    padding: 26px 22px 22px 22px;
  }
}
@media screen and (min-width: 1200px) {
  .qa-box__body {
    padding: 26px 22px 22px 22px;
  }
}

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

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

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

/*entry
====================================================*/
.entry {
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .entry {
    padding-top: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .entry {
    padding-top: 120px;
  }
}

.entry__wrapper {
  border: 8px solid #ffffff;
  background: rgba(255, 255, 255, 0.5);
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-bottom: 32px;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .entry__wrapper {
    max-width: 600px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .entry__wrapper {
    padding-top: 24px;
    padding-bottom: 24px;
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .entry__wrapper {
    padding-top: 32px;
    padding-bottom: 32px;
    margin-bottom: 120px;
  }
}

.entry__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14.2px;
  padding: 0 15.5px;
  margin-top: 24px;
  padding-bottom: 16px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .entry__block {
    gap: 13px;
    margin-top: 40px;
    padding-left: 48px;
    padding-right: 48px;
    padding-bottom: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .entry__block {
    gap: 13px;
    margin-top: 40px;
    padding-left: 48px;
    padding-right: 48px;
    padding-bottom: 12px;
  }
}

.entry__item:nth-child(n+2) {
  border-top: 1px solid #cccccc;
  padding-top: 14px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .entry__item:nth-child(n+2) {
    padding-top: 11px;
  }
}
@media screen and (min-width: 1200px) {
  .entry__item:nth-child(n+2) {
    padding-top: 11px;
  }
}
.entry__item:nth-child(n+3) {
  margin-top: -0.2px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .entry__item:nth-child(n+3) {
    margin-top: 0.5px;
  }
}
@media screen and (min-width: 1200px) {
  .entry__item:nth-child(n+3) {
    margin-top: 0.5px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .entry__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 8px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 1200px) {
  .entry__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 16px;
  }
}

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

.item-value {
  font-size: 12px;
  margin-top: 7px;
  line-height: 1.59;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .item-value {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .item-value {
    font-size: 16px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .item-value {
    font-size: 16px;
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.notice-list {
  list-style-type: disc;
  padding-left: 1.5em;
  font-size: 12px;
  line-height: 1.58;
}
.notice-list li::marker {
  font-size: 7px;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .notice-list {
    font-size: 14px;
  }
  .notice-list li::marker {
    font-size: 10px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .notice-list {
    font-size: 16px;
    padding-left: 1.5em;
    line-height: 1.624;
  }
  .notice-list li::marker {
    font-size: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .notice-list {
    font-size: 16px;
    padding-left: 1.5em;
    line-height: 1.624;
  }
  .notice-list li::marker {
    font-size: 10px;
  }
}

.entry__bg {
  width: 100%;
  height: auto;
}
.entry__bg img {
  width: 100%;
}

/*contact
====================================================*/
.contact {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 44px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .contact {
    padding: 100px 0;
  }
}
@media screen and (min-width: 1200px) {
  .contact {
    padding: 120px 0;
  }
}

.contact__inner {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .contact__inner {
    max-width: 1018px;
  }
}
@media screen and (min-width: 1200px) {
  .contact__inner {
    max-width: 1018px;
  }
}

.contact__text {
  text-align: center;
  margin-top: 24px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .contact__text {
    margin-top: 33px;
  }
}
@media screen and (min-width: 1200px) {
  .contact__text {
    margin-top: 33px;
  }
}

.contact-text {
  font-size: 12px;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .contact-text .hidden-pc {
    display: none;
  }
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .contact-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .contact-text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .contact-text {
    font-size: 16px;
  }
}

.contact__form {
  margin-top: 24px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .contact__form {
    margin-top: 39px;
    max-width: 848px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1200px) {
  .contact__form {
    margin-top: 39px;
    max-width: 848px;
    margin-left: auto;
    margin-right: 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: 25px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .contact__fields {
    gap: 22.5px;
  }
}
@media screen and (min-width: 1200px) {
  .contact__fields {
    gap: 22.5px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .contact__field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .contact__field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}

.form-field__head {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .form-field__head {
    min-width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (min-width: 1200px) {
  .form-field__head {
    min-width: 180px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.form-field__label {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .form-field__label {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .form-field__label {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .form-field__label {
    font-size: 16px;
  }
}

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

.form-field__item {
  font-size: 14px;
  margin-top: 9px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .form-field__item {
    font-size: 16px;
    line-height: 1.62;
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media screen and (min-width: 1200px) {
  .form-field__item {
    font-size: 16px;
    line-height: 1.62;
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.form-field__item::-webkit-input-placeholder {
  color: #ccc;
}
.form-field__item::-moz-placeholder {
  color: #ccc;
}
.form-field__item:-ms-input-placeholder {
  color: #ccc;
}
.form-field__item::-ms-input-placeholder {
  color: #ccc;
}
.form-field__item::placeholder {
  color: #ccc;
}

.form-text {
  width: 100%;
  padding: 16px 16px 16px 16px;
  border-radius: 8px;
  background: #f5f5f5;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  outline: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .form-text {
    padding: 16.7px 16px 15px 16px;
  }
}
@media screen and (min-width: 1200px) {
  .form-text {
    padding: 16.7px 16px 15px 16px;
  }
}
.form-text:hover, .form-text:focus {
  border: 1px solid #9ed0e0;
  background: #e9f6f8;
}
.form-text.is-error {
  background: #fff0f7;
  border: 1px solid #ce2073;
}

.select-box {
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.select-box::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 52px;
  height: 100%;
  background: #9ed0e0;
  z-index: 2;
  pointer-events: none;
}
.select-box::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10.5px;
  width: 32px;
  height: 32px;
  background: url(../img/contact-form-arrow.png) no-repeat center center/52px 55px;
  z-index: 2;
  pointer-events: none;
}
.select-box.is-error::before {
  background: #ce2073;
}
.select-box.is-error::after {
  background: url(../img/contact-form-arrow-error.png) no-repeat center center/52px 55px;
  z-index: 2;
}

.form-select {
  border-radius: 8px;
  background: #f5f5f5;
  padding: 16px 16px 16px 16px;
  width: 100%;
  border: 1px solid transparent;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.3s, background 0.3s;
  transition: border-color 0.3s, background 0.3s;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .form-select {
    padding: 16px 16px 14.1px 16px;
  }
}
@media screen and (min-width: 1200px) {
  .form-select {
    padding: 16px 16px 14.1px 16px;
  }
}
.form-select:hover, .form-select:focus {
  border: 1px solid #9ed0e0;
  background: #e9f6f8;
  outline: none;
}
.form-select.is-error {
  border: 1px solid #ce2073;
  background: #fff0f7;
}

.radio-content {
  margin-top: -1px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .radio-content {
    height: 56px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .radio-content {
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
  }
}

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

.form-radio:hover .form-radio__text::before {
  border: 1px solid #9ed0e0;
}
.form-radio__input:checked + .form-radio__text {
  font-weight: 700;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}

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

.form-radio__text {
  padding-left: 32px;
  position: relative;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .form-radio__text {
    padding-left: 33px;
  }
}
@media screen and (min-width: 1200px) {
  .form-radio__text {
    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;
  left: 0;
  background: #f5f5f5;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-radio__text::after {
  width: 12px;
  height: 12px;
  background: #9ed0e0;
  left: 6px;
  opacity: 0;
}

@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .textarea-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 2px;
  }
}
@media screen and (min-width: 1200px) {
  .textarea-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 2px;
  }
}

.form-textarea {
  border-radius: 8px;
  background: #f5f5f5;
  width: 100%;
  height: 160px;
  padding: 15px;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .form-textarea {
    padding: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .form-textarea {
    padding: 16px;
  }
}
.form-textarea:hover, .form-textarea:focus {
  border: 1px solid #9ed0e0;
  outline: none;
}
.form-textarea.is-error {
  background: #fff0f7;
  border: 1px solid #ce2073;
}

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

.contact__button {
  margin-top: 25px;
  text-align: center;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .contact__button {
    margin-top: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .contact__button {
    margin-top: 40px;
  }
}

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

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  border: 1px solid #9ed0e0;
}
.form-checkbox__input.is-error + .form-checkbox__text::before {
  border: 1px solid #ce2073;
}

.form-checkbox__text {
  position: relative;
  padding-left: 36px;
  font-size: 14px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .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;
  border-radius: 4px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  background: #f5f5f5;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .form-checkbox__text::before {
    margin-top: 2px;
  }
}
.form-checkbox__text::after {
  background: url(../img/contact-privacycheckmark.png) no-repeat center center/contain;
  width: 14px;
  height: 9px;
  left: 5px;
  opacity: 0;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .form-checkbox__text::after {
    margin-top: 0.8px;
  }
}
.form-checkbox__text a {
  text-decoration-line: underline;
  font-weight: inherit;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.form-checkbox__text a:hover {
  color: #9ed0e0;
}
.form-checkbox__text a:focus {
  border: 2px solid #9ed0e0;
  outline: none;
}

@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .contact__button .button {
    height: 40px;
    font-size: 16px;
    border: 2px solid #4a3636;
    padding: 4px 38px 6px;
  }
}
@media screen and (min-width: 1200px) {
  .contact__button .button {
    height: 40px;
    font-size: 16px;
    border: 2px solid #4a3636;
    padding: 4px 38px 6px;
  }
}

/*footer
====================================================*/
.footer {
  padding-top: 40px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .footer {
    padding-top: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .footer {
    padding-top: 120px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .footer__contents {
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__contents {
    padding-bottom: 120px;
  }
}

.footer__fv {
  text-align: center;
  position: relative;
}

.footer__fv-text {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .footer__fv-text {
    font-size: 22px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__fv-text {
    font-size: 24px;
  }
}

.footer__bg-paw {
  position: absolute;
  top: -40px;
  right: -5px;
  width: 100px;
  height: 220px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .footer__bg-paw {
    width: 70px;
    height: auto;
  }
}

.footer__lists {
  margin-top: 23.5px;
}

.list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 39px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.list-item__link:focus {
  border: 2px solid #9ed0e0;
  outline: none;
}
.list-item__link svg {
  width: 33px;
  height: 32px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .list-item__link svg {
    width: 41px;
    height: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .list-item__link svg {
    width: 41px;
    height: 40px;
  }
}

.footer__overview {
  position: relative;
  margin-top: 43px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .footer__overview {
    margin-top: 116px;
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .footer__overview {
    margin-top: 116px;
    text-align: center;
  }
}

.footer__onomichi {
  position: absolute;
  top: -33px;
  left: 50.2%;
  width: 328px;
  -webkit-transform: translateX(-49.9%);
          transform: translateX(-49.9%);
  z-index: -1;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .footer__onomichi {
    width: 755px;
    top: -80px;
    -webkit-transform: translateX(-50.2%);
            transform: translateX(-50.2%);
  }
}
@media screen and (min-width: 1200px) {
  .footer__onomichi {
    width: 755px;
    top: -80px;
    -webkit-transform: translateX(-50.2%);
            transform: translateX(-50.2%);
  }
}

.footer__gaide {
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 23.5px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .footer__gaide {
    max-width: 1024px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 0;
  }
}
@media screen and (min-width: 1200px) {
  .footer__gaide {
    margin-top: -2px;
    max-width: 1024px;
    max-height: 400px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 0;
  }
}

.footer__map {
  aspect-ratio: 335/271;
}
.footer__map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .footer__map {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    aspect-ratio: 512/400;
  }
}
@media screen and (min-width: 1200px) {
  .footer__map {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    aspect-ratio: 512/400;
  }
}

.footer__organizer {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .footer__organizer {
    margin: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (min-width: 1200px) {
  .footer__organizer {
    margin: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.organizer__wrapper {
  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;
  padding: 0 24px 23px 24px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .organizer__wrapper {
    padding: 103px 24px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    gap: 24.5px;
  }
}
@media screen and (min-width: 1200px) {
  .organizer__wrapper {
    padding: 103px 61.5px;
    gap: 24.5px;
  }
}

.organizer__logo {
  text-align: center;
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.organizer__logo:focus {
  border: 2px solid #9ed0e0;
  outline: none;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .organizer__logo {
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  .organizer__logo {
    text-align: left;
  }
}
.organizer__logo img {
  width: 153px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .organizer__logo img {
    width: 183px;
  }
}
@media screen and (min-width: 1200px) {
  .organizer__logo img {
    width: 183px;
  }
}

.organizer__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7.8px;
  padding: 6px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .organizer__block {
    padding: 0;
    margin: 0;
    gap: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .organizer__block {
    padding: 0;
    margin: 0;
    gap: 12px;
  }
}

.organize-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .organize-item {
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .organize-item {
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.organize-item a {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.organize-item a:focus {
  border: 2px solid #9ed0e0;
  outline: none;
}

.organize-item__label {
  font-size: 12px;
  font-weight: 700;
  padding-left: 19px;
  min-width: 68px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.organize-item__label::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #9ed0e0;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .organize-item__label::before {
    left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .organize-item__label::before {
    left: 0;
  }
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .organize-item__label {
    min-width: 80px;
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .organize-item__label {
    font-size: 14px;
    text-align: left;
    min-width: 80px;
    padding-left: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .organize-item__label {
    font-size: 16px;
    text-align: left;
    min-width: 80px;
    padding-left: 16px;
  }
}

.organize-item__value {
  font-size: 12px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 600px) and (max-width: 899.9px) {
  .organize-item__value {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .organize-item__value {
    font-size: 14px;
    text-align: left;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
@media screen and (min-width: 1200px) {
  .organize-item__value {
    font-size: 16px;
    text-align: left;
  }
}

.footer__pagetop {
  text-align: center;
  padding: 22px 0;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .footer__pagetop {
    padding: 0;
  }
}
@media screen and (min-width: 1200px) {
  .footer__pagetop {
    padding: 0;
  }
}

.scroll-top-button {
  display: none;
  cursor: pointer;
}
.scroll-top-button:hover svg path {
  fill: #9ed0e0;
  stroke: #e9f6f8;
}
.scroll-top-button svg {
  width: 78px;
  height: 82px;
  display: block;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .scroll-top-button svg {
    width: 100px;
    height: 104px;
  }
}
@media screen and (min-width: 1200px) {
  .scroll-top-button svg {
    width: 100px;
    height: 104px;
  }
}
.scroll-top-button svg path {
  -webkit-transition: fill 0.3s, stroke 0.3s;
  transition: fill 0.3s, stroke 0.3s;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .scroll-top-button {
    position: fixed;
    bottom: 84px;
    right: 40px;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 10;
  }
}
@media screen and (min-width: 1200px) {
  .scroll-top-button {
    position: fixed;
    bottom: 84px;
    right: 40px;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 10;
  }
}

.footer__copyright {
  text-align: center;
  color: #ffffff;
  margin-top: 39px;
  padding-bottom: 24px;
  background: #67b0c7;
  position: relative;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .footer__copyright {
    margin-top: 117px;
    padding-bottom: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__copyright {
    margin-top: 117px;
    padding-bottom: 32px;
  }
}
.footer__copyright small {
  font-size: 10px;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .footer__copyright small {
    font-size: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__copyright small {
    font-size: 14px;
  }
}
.footer__copyright::before {
  position: absolute;
  content: "";
  top: -44px;
  right: 0;
  width: 100%;
  height: 47px;
  background: url(../img/spots-top-bg-sp.png) left center/94px 46.714px;
  z-index: 2;
}
@media screen and (min-width: 900px) and (max-width: 1199.9px) {
  .footer__copyright::before {
    height: 122px;
    top: -119px;
    right: 0;
    background: url(../img/spots-top-bg-pc.png) left center/252px 122px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__copyright::before {
    height: 122px;
    top: -119px;
    right: 0;
    background: url(../img/spots-top-bg-pc.png) left center/251px 122px;
  }
}