@charset "UTF-8";
.inner {
  margin: 0 auto;
  max-width: 600px;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 640px;
  }
}
@media screen and (min-width: 900px) {
  .inner {
    max-width: 1024px;
  }
}

.button {
  font-weight: 700;
  padding: 4px 22px 6px 22px;
  display: inline-block;
  border-radius: 40px;
  border: 2px solid #4A3636;
  background: #FFF;
  -webkit-box-shadow: 0px 4px 0px 0px #4A3636;
          box-shadow: 0px 4px 0px 0px #4A3636;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}
.button:hover {
  background: #FFEE56;
  cursor: url(../img/Vector.svg), pointer;
}
@media screen and (min-width: 900px) {
  .button {
    border-radius: 40px;
    border: 3px solid var(--lp-blown, #4A3636);
  }
}
.button.disabled {
  background: #CCC;
  pointer-events: none; /* 無効な状態でクリックを無効にする */
  cursor: not-allowed;
}

.contents {
  padding-inline: 12px;
  background-color: #FFFFFF;
  border-radius: 24px;
}
@media screen and (min-width: 900px) {
  .contents {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

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

.heading-icon {
  width: 37.333px;
  height: 37.333px;
  margin-right: 1px;
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .heading-icon {
    width: 48px;
    height: 48px;
  }
}

.title {
  font-family: "Courgette", cursive;
  font-size: 16px;
  line-height: 1.25;
  margin-block: 6px;
}
@media screen and (min-width: 900px) {
  .title {
    font-size: 20px;
    margin-block: 8px;
  }
}

.heading-head {
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  border-bottom: 6px solid #FFEE56;
  padding-bottom: 6px;
}
@media screen and (min-width: 900px) {
  .heading-head {
    font-size: 32px;
    font-style: normal;
    border-bottom: 8px solid #FFEE56;
    padding-bottom: 8px;
  }
}

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

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

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

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

header {
  position: fixed;
  width: 100vw;
  background: #fff;
  z-index: 101;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 64px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  .header__container {
    padding: 0 24px;
  }
}

.header__logo {
  margin-right: auto;
  width: 210px;
}
.header__logo img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 210px;
  }
}
@media screen and (min-width: 900px) {
  .header__logo img {
    width: 183px;
    margin-right: 725px;
  }
}

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

.header__nav-items {
  margin-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .header__nav-items {
    gap: 12px;
  }
}

.header__nav-item:not(:nth-child(6)) {
  font-size: 14px;
  font-weight: 400;
}
.header__nav-item:not(:nth-child(6)) a:hover {
  color: #67B0C7;
  border: 1px solid #67B0C7;
  cursor: url(../img/Vector.svg), pointer;
}
@media screen and (min-width: 900px) {
  .header__nav-item:not(:nth-child(6)) {
    font-size: 12px;
    white-space: nowrap;
  }
}
@media screen and (min-width: 900px) {
  .header__nav-item:nth-child(5) {
    padding-right: 3px;
  }
}

.header__btn {
  font-size: 16px;
}
@media screen and (min-width: 900px) {
  .header__btn {
    border: 2px solid #4A3636;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
  }
}

.drawer-icon {
  position: fixed;
  right: 20px;
  top: 19px;
  width: 32px;
  height: 27px;
  z-index: 102;
}
.drawer-icon.is-checked .drawer-icon__bar1 {
  width: 32px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 9px;
}
.drawer-icon.is-checked .drawer-icon__bar2,
.drawer-icon.is-checked .drawer-icon__bar3 {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar4 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 9px;
}
@media screen and (min-width: 900px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar1 {
  width: 25.6px;
  top: 0;
}

.drawer-icon__bar2 {
  width: 4.8px;
  top: 0;
  right: 0;
}

.drawer-icon__bar3 {
  width: 32px;
  top: 12px;
}

.drawer-icon__bar4 {
  width: 32px;
  top: 24px;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3,
.drawer-icon__bar4 {
  position: absolute;
  height: 3px;
  border-radius: 6px;
  background: #4A3636;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
@media screen and (min-width: 900px) {
  .drawer-icon__bar1,
  .drawer-icon__bar2,
  .drawer-icon__bar3,
  .drawer-icon__bar4 {
    display: none;
  }
}

.drawer-content {
  position: fixed;
  height: 100%;
  right: 50%;
  -webkit-transform: translateX(500%);
          transform: translateX(500%);
  top: 100px;
  z-index: 61;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
@media screen and (min-width: 900px) {
  .drawer-content {
    display: none;
  }
}

.drawer-content__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px 0;
}

.drawer-content__item {
  text-align: center;
}
.drawer-content__item a {
  font-size: 14px;
}

.drawer-background {
  background: #fff;
  position: fixed;
  top: 64px;
  width: 100%;
  height: 100%;
  z-index: 60;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
.drawer-background.is-checked {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
@media screen and (min-width: 900px) {
  .drawer-background {
    display: none;
  }
}

.main {
  background-color: #E9F6F8;
  overflow: hidden;
  z-index: -2;
}

.fv {
  padding-top: 64px;
  position: relative;
}

.fv__contents {
  max-width: 848px;
  margin: 0 auto;
}

.fv__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 155px);
  overflow: hidden;
  border-radius: 0px 0px 24px 24px;
}
@media screen and (min-width: 900px) {
  .fv__image {
    height: calc(100% - 96px);
    width: 100vw;
  }
}
.fv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__image-box {
  max-width: 335px;
  height: 522px;
  margin: 10px auto 0;
  position: relative;
}
@media screen and (min-width: 900px) {
  .fv__image-box {
    max-width: 848px;
    height: 560px;
    margin-top: 0;
  }
}

.fv__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .fv__message {
    gap: 24px;
    top: 0px;
  }
}

.fv__text {
  color: #4A3636;
  text-align: center;
  text-shadow: 0px 0px 30px #FFF;
  font-family: "Kiwi Maru", serif;
  font-size: 14px;
  line-height: 1.25;
  padding-top: 18px;
}
@media screen and (min-width: 900px) {
  .fv__text {
    font-size: 24px;
    font-weight: 500;
    padding-top: 34px;
  }
}

.fv__title {
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .fv__title {
    gap: 16px;
  }
}

.fv__title-1 {
  width: 335px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .fv__title-1 {
    width: 520px;
  }
}

.fv__title-2 {
  width: 241px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .fv__title-2 {
    width: 356px;
  }
}

.fv__comment-image {
  position: absolute;
  width: 139.672px;
  height: auto;
  top: 8px;
  left: 1px;
}
.fv__comment-image img {
  display: block;
  width: 100%;
  height: 80px;
}
@media screen and (min-width: 900px) {
  .fv__comment-image {
    position: absolute;
    width: 240px;
    padding-top: 0;
    top: 2px;
    left: 39px;
  }
  .fv__comment-image img {
    height: 130px;
  }
}

.fv__comment-text-image {
  position: absolute;
  width: 84px;
  height: auto;
  top: 10px;
  left: 22px;
}
.fv__comment-text-image img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .fv__comment-text-image {
    width: 147px;
    top: 6px;
    left: 73px;
  }
}

.fv__circle {
  position: absolute;
  top: 0px;
  left: 200px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: #CE2073;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .fv__circle {
    width: 180px;
    height: 180px;
    top: 19px;
    left: 541px;
  }
}

.fv__circle-text {
  position: absolute;
  top: 18.94px;
  left: 24.67px;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .fv__circle-text {
    font-size: 16px;
    top: 31px;
    left: 42px;
  }
}

.fv__circle-text-2 {
  position: absolute;
  top: 39.11px;
  left: 15px;
  color: #FFFFFF;
  font-size: 9.778px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .fv__circle-text-2 {
    font-size: 16px;
    left: 22.6px;
    top: 64px;
  }
}

.fv__circle-text-3 {
  position: absolute;
  top: 64.17px;
  left: 18px;
  color: #FFFFFF;
  font-size: 14.667px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .fv__circle-text-3 {
    font-size: 24px;
    left: 30px;
    top: 105px;
  }
}

.c-text-1 {
  display: inline-block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-family: "Noto Sans Javanese", sans-serif;
  font-size: 30.458px;
  line-height: 38.072px;
  font-weight: 700;
  color: #FFEE56;
}
@media screen and (min-width: 900px) {
  .c-text-1 {
    font-size: 49.84px;
    line-height: 1.25;
  }
}

.c-text-2 {
  color: #FFEE56;
  font-weight: 700;
}

.fv__mv-image {
  width: 200px;
  position: absolute;
  bottom: 11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 98;
}
@media screen and (min-width: 900px) {
  .fv__mv-image {
    width: 250px;
    bottom: 17px;
  }
}

.fv__main-image {
  width: 200px;
  height: 408px;
  position: absolute;
  top: 51px;
  left: 34px;
}
@media screen and (min-width: 900px) {
  .fv__main-image {
    width: 250px;
    height: 510px;
    left: 149px;
    top: 17px;
  }
}

.fv__notice {
  position: absolute;
  top: 226px;
  left: 88px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 160px;
  background-color: #fff;
  border-radius: 12.8px;
  padding-bottom: 19.2px;
}
@media screen and (min-width: 900px) {
  .fv__notice {
    padding-bottom: 23px;
    border-radius: 16px;
    top: 188px;
    left: 323px;
    width: 200px;
  }
}

.fv-notice__head {
  background: linear-gradient(265deg, #AC3790 -3.52%, #D65A5C 44.94%, #F4C06D 92.38%);
  border-radius: 12.8px 12.8px 0 0;
  padding: 6px 9.6px;
}
@media screen and (min-width: 900px) {
  .fv-notice__head {
    padding: 8px 12px 7px;
  }
}

.fv-notice__title {
  color: #FFFFFF;
  font-size: 12.8px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .fv-notice__title {
    font-size: 16px;
    border-radius: 16px 16px 0 0;
  }
}

.fv-notice__text-box {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-block: 12.8px;
}
@media screen and (min-width: 900px) {
  .fv-notice__text-box {
    margin-top: 14px;
    margin-bottom: 15px;
  }
}

.fv-notice__text {
  border-bottom: 2.4px solid #CE2073;
  padding-bottom: 0.8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: 42px;
}
@media screen and (min-width: 900px) {
  .fv-notice__text {
    font-size: 14px;
    margin-inline: 60px;
    border-bottom: 3px solid #CE2073;
    padding-bottom: 1px;
    padding-top: 2px;
  }
}

.fv-notice__data {
  font-weight: 700;
  display: block;
  margin-top: 3px;
}
@media screen and (min-width: 900px) {
  .fv-notice__data {
    font-size: 16px;
    margin-top: 5px;
  }
}

.fv-notice__button {
  padding: 2px 22px 4px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .fv-notice__button {
    padding: 4px 22px 6px;
    border: 2px solid #4A3636;
    font-size: 16px;
  }
}

.fv__sub-image-1 {
  position: absolute;
  top: 381px;
  width: 90px;
}
@media screen and (min-width: 900px) {
  .fv__sub-image-1 {
    width: 211px;
    top: 229px;
    left: 0px;
    height: 332px;
  }
}
.fv__sub-image-2 {
  position: absolute;
  top: 395px;
  left: 273px;
  width: 62px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .fv__sub-image-2 {
    width: 170px;
    top: 310px;
    left: 615px;
  }
}
.fv__sub-image-3 {
  position: absolute;
  top: 450px;
  left: 228px;
  width: 98px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .fv__sub-image-3 {
    width: 233px;
    top: 431px;
    left: 615px;
  }
}
.fv__back-image {
  position: absolute;
  max-width: 100%;
  height: auto;
  top: 796px;
  right: 0;
  width: 55px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .fv__back-image {
    width: 100px;
    top: 900px;
    right: calc(167px - 9%);
  }
}
@media screen and (min-width: 1500px) {
  .fv__back-image {
    right: 167px;
  }
}

.about {
  overflow: hidden;
  margin-top: 0;
}
@media screen and (min-width: 900px) {
  .about {
    margin-top: 36px;
    padding-top: 81px;
    padding-bottom: 64.8px;
    margin-top: 0;
  }
}

.about__inner {
  position: relative;
  text-align: center;
  padding-top: 32px;
  max-width: 375px;
}
@media screen and (min-width: 600px) {
  .about__inner {
    max-width: 500px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 900px) {
  .about__inner {
    max-width: 640px;
    padding-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .about__inner {
    max-width: 890px;
  }
}

.about__section-contents {
  padding: 40px 11px 39px 11px;
  background: #fff;
  border-radius: 24px;
  overflow-y: visible;
  position: relative;
  z-index: 81;
}
@media screen and (min-width: 900px) {
  .about__section-contents {
    padding: 40px 11px 40px 11px;
    border-radius: 40px;
    padding-right: 13px;
  }
}

.about__section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 900px) {
  .about__icon {
    width: 50px;
    height: 48px;
  }
}

.about__title {
  position: relative;
}
.about__title::before {
  content: "";
  position: absolute;
  width: 89px;
  height: 72px;
  background: url(../img/img_about_pic1.png) no-repeat center center/cover;
  left: -114px;
  top: -53px;
}
@media screen and (min-width: 900px) {
  .about__title::before {
    top: -60px;
    width: 150px;
    height: 123px;
    left: calc(-313px + 72%);
  }
}
@media screen and (min-width: 1200px) {
  .about__title::before {
    left: -313px;
  }
}
.about__title::after {
  content: "";
  position: absolute;
  width: 87px;
  height: 57px;
  left: 81px;
  top: -46px;
  aspect-ratio: 80/60;
  background: url(../img/img_about_pic2.png) no-repeat center center/cover;
}
@media screen and (min-width: 900px) {
  .about__title::after {
    width: 129px;
    height: 119px;
    top: -50px;
    left: calc(227px - 58%);
  }
}
@media screen and (min-width: 1200px) {
  .about__title::after {
    left: 227px;
  }
}

.about__content-title-pc {
  display: none;
}
@media screen and (min-width: 900px) {
  .about__content-title-pc {
    display: block;
    font-size: 16px;
    margin-top: 33px;
    margin-bottom: 32px;
  }
}

.about__content-title {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 23px;
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .about__content-title {
    display: none;
  }
}

@media screen and (min-width: 900px) {
  .about__content-text-2 {
    margin-top: 1px;
  }
}

.about__content-text-3 {
  margin-top: 19px;
}
@media screen and (min-width: 900px) {
  .about__content-text-3 {
    margin-top: 26px;
  }
}

.about__content-text-4 {
  margin-top: 18px;
}
@media screen and (min-width: 900px) {
  .about__content-text-4 {
    margin-top: 27px;
  }
}

.about__content-text-5 {
  margin-top: 18px;
}
@media screen and (min-width: 1200px) {
  .about__content-text-5 {
    margin-top: 27px;
  }
}

.text-3__sns {
  text-decoration-line: underline;
}
.text-3__sns:hover {
  color: #67B0C7;
  cursor: url(../img/Vector.svg), pointer;
}

.text-5__span {
  font-weight: 700;
}

.about__content-text-puresent {
  position: relative;
  display: inline-block;
  margin-top: 31px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 33px;
}
@media screen and (min-width: 900px) {
  .about__content-text-puresent {
    margin-top: 30px;
    margin-bottom: 28px;
    font-size: 20px;
    padding-top: 15px;
    padding-bottom: 17px;
  }
}
.about__content-text-puresent::after {
  position: absolute;
  content: "";
  bottom: -9px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 249px;
  border-bottom: 2px dashed #9ED0E0;
}
@media screen and (min-width: 900px) {
  .about__content-text-puresent::after {
    bottom: 6px;
    width: 356px;
  }
}

.about__content-button {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .about__content-button {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 7px 37px 9px 37px;
  }
}

.about__content-arrow-icon {
  display: inline-block;
  width: 100px;
  height: 36px;
}
@media screen and (min-width: 900px) {
  .about__content-arrow-icon {
    width: 140px;
  }
}

.about__back-image-1 {
  display: none;
}
@media screen and (min-width: 900px) {
  .about__back-image-1 {
    display: block;
    width: 806.851px;
    height: auto;
    position: relative;
    bottom: 267px;
    right: -940px;
  }
}
.about__back-image-2 {
  display: none;
}
@media screen and (min-width: 900px) {
  .about__back-image-2 {
    display: block;
    width: 806.851px;
    height: auto;
    position: relative;
    bottom: 259px;
    right: -870px;
  }
}
.about__back-image-3 {
  position: absolute;
  top: 306px;
  max-width: 100%;
  width: 200px;
  height: 200px;
  right: -160px;
  border-radius: 24px;
}
.about__back-image-3 img {
  border-radius: 40px;
  display: block;
}
@media screen and (min-width: 900px) {
  .about__back-image-3 {
    border-radius: 40px;
    width: 496px;
    height: 490px;
    top: 72px;
    right: calc(-615px + 17%);
  }
  .about__back-image-3 img {
    width: 485px;
    height: 485px;
  }
}
@media screen and (min-width: 1200px) {
  .about__back-image-3 {
    right: calc(-610px + 9%);
  }
}
@media screen and (min-width: 1500px) {
  .about__back-image-3 {
    right: -610px;
  }
}

.about__back-image-4 {
  position: absolute;
  top: 428px;
  left: -160px;
  max-width: 100%;
  width: 200px;
  height: 200px;
  border-radius: 24px;
}
.about__back-image-4 img {
  border-radius: 40px;
  display: block;
}
@media screen and (min-width: 900px) {
  .about__back-image-4 {
    border-radius: 40px;
    width: 485px;
    height: 485px;
    top: 73px;
    left: calc(-652px + 25%);
  }
  .about__back-image-4 img {
    width: 485px;
    height: 485px;
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .about__back-image-4 {
    left: calc(-652px + 9%);
  }
}
@media screen and (min-width: 1500px) {
  .about__back-image-4 {
    left: -652px;
  }
}

.about__back-image-5 {
  display: none;
}
@media screen and (min-width: 900px) {
  .about__back-image-5 {
    display: block;
    width: 250px;
    height: 250px;
    position: absolute;
    top: -20px;
    left: -352px;
  }
  .about__back-image-5 img {
    display: block;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .about__back-image-5 {
    left: -332px;
  }
}

.about__back-image-box {
  width: 100vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}
.about__back-image-6 {
  position: absolute;
  top: -35px;
  left: 0px;
  width: 138px;
}
.about__back-image-6 img {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .about__back-image-6 {
    width: 275px;
    height: 403px;
    top: -177px;
  }
}
@media screen and (min-width: 1200px) {
  .about__back-image-6 {
    width: 275px;
    height: 403px;
    top: -298px;
    left: 5px;
  }
}

.about__back-image-7 {
  position: absolute;
  top: 19px;
  right: 57px;
  width: 133px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .about__back-image-7 {
    width: 258px;
    top: -80px;
  }
}
@media screen and (min-width: 1200px) {
  .about__back-image-7 {
    width: 308px;
    top: -85px;
    right: 74px;
  }
}
.about__back-image-7 img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 1500px) {
  .about__back-image-7 {
    top: -161px;
  }
}

.about__back-image-8 {
  position: absolute;
  width: 48px;
  top: -24px;
  right: 21px;
}
@media screen and (min-width: 900px) {
  .about__back-image-8 {
    width: 101px;
    top: -219px;
    right: 44px;
  }
}
@media screen and (min-width: 1200px) {
  .about__back-image-8 {
    width: 101px;
    height: auto;
    top: -199px;
    right: 56px;
  }
}
.about__back-image-8 img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 1500px) {
  .about__back-image-8 {
    top: -316px;
    right: 150px;
  }
}

.about__back-image-logo {
  position: absolute;
  margin-top: 102.67px;
  width: 355px;
  height: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}
.about__back-image-logo img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .about__back-image-logo {
    width: 891px;
    left: 50%;
    margin-top: 80px;
    height: auto;
  }
}
@media screen and (min-width: 1200px) {
  .about__back-image-logo {
    width: 891px;
    margin-top: 80px;
    height: auto;
    left: 752px;
  }
}

.gallery__slider {
  position: relative;
  height: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 141.87px;
}
@media screen and (min-width: 900px) {
  .gallery__slider {
    padding-top: 171.87px;
  }
}

/*wrapperのサイズを調整*/
.about__slider-wrapper {
  width: 100%;
  height: 100px;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
@media screen and (min-width: 900px) {
  .about__slider-wrapper {
    width: 100%;
    height: 200px;
  }
}

/* スライドのサイズを調整*/
.about__slide {
  width: 100%;
  height: 100%;
}

.about__slider-image {
  width: 100%;
  height: 100px;
}
@media screen and (min-width: 900px) {
  .about__slider-image {
    height: 200px;
  }
}
.about__slider-image img {
  display: block;
  width: 100%;
}

.how-to-enter {
  padding-bottom: 22.67px;
  margin-top: 34px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .how-to-enter {
    margin-left: 20px;
    margin-right: 20px;
    margin-inline: 40px;
  }
}

.how-to-enter__contents {
  padding-top: 32px;
  padding-inline: 0;
  background: #E9F6F8;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .how-to-enter__contents {
    padding-top: 21px;
  }
}

.how-to-enter__title {
  position: relative;
}

.how-to-enter-icon {
  width: 37.333px;
  height: auto;
}
@media screen and (min-width: 900px) {
  .how-to-enter-icon {
    width: 48px;
  }
}
.how-to-enter__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 900px) {
  .how-to-enter__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    margin: 0 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.how-to-enter__box {
  text-align: center;
  padding-top: 32px;
  padding-bottom: 15px;
  position: relative;
  z-index: 42;
}
@media screen and (min-width: 900px) {
  .how-to-enter__box {
    width: 320px;
    padding-top: 40px;
    padding-bottom: 15px;
    position: relative;
    z-index: 42;
  }
}
@media screen and (min-width: 1500px) {
  .how-to-enter__box {
    width: 320px;
  }
}

.how-to-enter__image {
  width: 196px;
  height: 210px;
  position: relative;
  margin: 0 auto;
}
.how-to-enter__image img {
  width: 196px;
}
@media screen and (min-width: 768px) {
  .how-to-enter__image {
    margin: 0 auto;
    width: 323px;
    height: 302px;
    padding-inline: 0;
    width: 280px;
  }
  .how-to-enter__image img {
    width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__image {
    margin: 0 auto;
    height: 302px;
    padding-inline: 0;
    width: 265px;
  }
  .how-to-enter__image img {
    width: 100%;
  }
}
@media screen and (min-width: 1500px) {
  .how-to-enter__image {
    width: 280px;
    height: 302px;
    padding-inline: 0;
  }
  .how-to-enter__image img {
    width: 100%;
  }
}

.how-to-image__text {
  font-family: "Josefin Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: normal;
  background: #FFF;
  border-radius: 5.6px;
  border: 1.4px solid #4A3636;
  padding: 4.2px 16px 1.4px 15.4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 204.66px;
  left: 125.3px;
}
@media screen and (min-width: 600px) {
  .how-to-image__text {
    left: calc(125.3px + 21%);
  }
}
@media screen and (min-width: 768px) {
  .how-to-image__text {
    width: 121px;
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid #4A3636;
    padding: 6px 22px 2px 22px;
    top: 284px;
    left: calc(102px + 24%);
  }
}
@media screen and (min-width: 900px) {
  .how-to-image__text {
    left: calc(102px - 10%);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-image__text {
    left: 102px;
  }
}

.how-to-enter__text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
}
@media screen and (min-width: 1200px) {
  .how-to-enter__text-box {
    margin-top: 23px;
  }
}

.how-to-text__title {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .how-to-text__title {
    font-size: 19px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-text__title {
    font-size: 20px;
  }
}

.how-to-text__text {
  font-size: 12px;
  font-weight: 400;
  margin-top: 15px;
}
@media screen and (min-width: 900px) {
  .how-to-text__text {
    font-size: 13px;
    position: relative;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-text__text {
    font-size: 16px;
    margin-top: 16px;
  }
}

.box1-sns {
  text-decoration-line: underline;
}
.box1-sns:hover {
  color: #67B0C7;
  cursor: url(../img/Vector.svg), pointer;
}
@media screen and (min-width: 900px) {
  .box1-sns {
    margin-block: 2px;
    display: inline-block;
  }
}

@media screen and (min-width: 900px) {
  .box1-span2 {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 78px;
    left: 13px;
  }
}

.how-to-text__instagram {
  padding-top: 31px;
  padding-bottom: 7px;
  padding-left: 3px;
  background: #FFFFFF;
  padding-right: 222px;
  margin-top: 15px;
}
@media screen and (min-width: 900px) {
  .how-to-text__instagram {
    padding-bottom: 12px;
    padding-left: 32px;
    margin-top: 38px;
  }
}

.how-to-text__instagram-text-box {
  position: relative;
}

.how-to-text__instagram-icon {
  width: 21px;
  height: 21px;
  position: absolute;
  bottom: 1px;
  left: 8px;
}
@media screen and (min-width: 900px) {
  .how-to-text__instagram-icon {
    width: 24px;
    height: 24px;
    bottom: -3px;
    left: -21px;
  }
  .how-to-text__instagram-icon svg {
    width: 24px;
    height: 24px;
  }
}

.how-to-text__instagram-text {
  position: absolute;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  white-space: nowrap;
  font-size: 14px;
  left: 37px;
  bottom: 0px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .how-to-text__instagram-text {
    font-size: 16px;
    left: 12px;
    top: -21px;
  }
}

.how-to-enter__line-image {
  margin-inline: auto;
  width: 2.3%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .how-to-enter__line-image {
    width: 113px;
    margin: 0;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.how-to-enter__line-image img {
  max-height: 100%;
}

.box-2 {
  padding-top: 35px;
  padding-bottom: 15px;
}
@media screen and (min-width: 900px) {
  .box-2 {
    padding-top: 108px;
  }
}
.box-2::before {
  position: absolute;
  content: "";
  background: url(../img/How-to/img_step_line.png) no-repeat center center;
  background-size: 7px 34px;
  width: 10px;
  height: 34px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .box-2::before {
    background: url(../img/pc/img_step_line.png) no-repeat center center/contain;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 80px;
    top: 231px;
    left: -80px;
  }
}
@media screen and (min-width: 1200px) {
  .box-2::before {
    width: 113px;
    height: 24px;
    top: 255px;
    left: -97px;
  }
}

@media screen and (min-width: 1500px) {
  .box-2__image {
    width: 280px;
  }
}

.box-2__text-box {
  margin-top: 18px;
}
@media screen and (min-width: 900px) {
  .box-2__text-box {
    margin-top: 23px;
    padding-top: 0;
    padding-left: 0;
  }
}

@media screen and (min-width: 900px) {
  .box-2__text {
    margin-top: 17px;
  }
}

.how-to-box3 {
  padding-top: 35px;
}
@media screen and (min-width: 900px) {
  .how-to-box3 {
    padding-top: 40px;
    position: relative;
  }
}
.how-to-box3::before {
  position: absolute;
  content: "";
  background: url(../img/How-to/img_step_line.png) no-repeat center center;
  background-size: 7px 34px;
  width: 10px;
  height: 34px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .how-to-box3::before {
    background: url(../img/pc/img_step_line.png) no-repeat center center/contain;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 80px;
    top: 231px;
    left: -80px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-box3::before {
    width: 113px;
    height: 24px;
    top: 255px;
    left: -90px;
  }
}

@media screen and (min-width: 1500px) {
  .box-3__image {
    width: 280px;
  }
}

.box-3__text-box {
  padding-top: 0px;
  margin-top: 17px;
}
@media screen and (min-width: 900px) {
  .box-3__text-box {
    position: relative;
    margin-top: 28px;
    padding-left: 0px;
  }
}

.how-to-image__num-image {
  display: block;
  width: 100%;
  height: 100%;
}

.box-3__title {
  padding-left: 2px;
}
@media screen and (min-width: 900px) {
  .box-3__title {
    padding-left: 3px;
  }
}

@media screen and (min-width: 1200px) {
  .box-3__text {
    width: 320px;
    margin-top: 19px;
  }
}

.box-3__em {
  font-style: normal;
  font-weight: 700;
}

.box-3__span {
  font-weight: 700;
  letter-spacing: 3px;
}
@media screen and (min-width: 900px) {
  .box-3__span {
    letter-spacing: 2px;
    font-weight: 400;
  }
}

.box-3__span-after {
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .box-3__span-after {
    font-weight: 400;
  }
}

@media screen and (min-width: 900px) {
  .box-3__button-box {
    position: absolute;
    bottom: -89px;
    right: 295px;
    right: calc(295px - 30%);
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .box-3__button-box {
    right: 295px;
  }
}

.box-3__button {
  white-space: nowrap;
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .box-3__button {
    font-size: 20px;
    padding: 9px 37px 9px 37px;
    margin-top: 0;
  }
}

.how-to-enter__back-image-1 {
  position: absolute;
  width: 110px;
  height: 63px;
  top: -1px;
  left: 224px;
}
@media screen and (min-width: 600px) {
  .how-to-enter__back-image-1 {
    left: calc(224px + 24%);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__back-image-1 {
    width: 210px;
    height: 141px;
    top: -28px;
    left: calc(1043px - 50%);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__back-image-1 {
    width: 238px;
    left: calc(1043px - 20%);
  }
}
@media screen and (min-width: 1500px) {
  .how-to-enter__back-image-1 {
    left: 1043px;
  }
}
.how-to-enter__back-image-1 img {
  display: block;
  width: 100%;
  height: 100%;
}

.how-to-enter__back-image-2 {
  position: absolute;
  width: 94px;
  height: auto;
  left: 292px;
  top: 4px;
}
@media screen and (min-width: 600px) {
  .how-to-enter__back-image-2 {
    left: calc(292px + 24%);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__back-image-2 {
    width: 186px;
    top: -17px;
    left: calc(1193px - 50%);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__back-image-2 {
    width: 214px;
    left: calc(1193px - 20%);
  }
}
@media screen and (min-width: 1500px) {
  .how-to-enter__back-image-2 {
    left: 1193px;
  }
}

.how-to-enter__back-image-3 {
  position: absolute;
  width: 55px;
  height: auto;
  left: 280px;
  top: 73px;
}
@media screen and (min-width: 600px) {
  .how-to-enter__back-image-3 {
    left: calc(280px + 24%);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__back-image-3 {
    width: 100px;
    top: 147px;
    left: 1376px;
  }
}

.how-to-enter__back-image-4 {
  position: absolute;
  width: 148px;
  height: auto;
  top: 0px;
  left: -20px;
  z-index: 40;
}
.how-to-enter__back-image-4 img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
}
@media screen and (min-width: 600px) {
  .how-to-enter__back-image-4 {
    left: calc(-20px + 10%);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__back-image-4 {
    width: 363px;
    height: 485px;
    top: -59px;
    left: -25px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__back-image-4 {
    width: 463px;
    height: 685px;
    top: -59px;
    left: 34px;
  }
}

.how-to-enter__back-image-5 {
  width: 55px;
  height: auto;
  position: absolute;
  top: 17px;
  left: 0px;
}
@media screen and (min-width: 600px) {
  .how-to-enter__back-image-5 {
    left: -20%;
  }
}
@media screen and (min-width: 768px) {
  .how-to-enter__back-image-5 {
    width: 100px;
    top: 433px;
    left: -559px;
  }
}

.how-to-enter__back-image-6 {
  width: 55px;
  height: auto;
  position: absolute;
  top: 347px;
  right: 0px;
}
@media screen and (min-width: 600px) {
  .how-to-enter__back-image-6 {
    right: -20%;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__back-image-6 {
    display: none;
  }
}

.prizes {
  position: relative;
}
@media screen and (min-width: 900px) {
  .prizes {
    padding-top: 201px;
  }
}

.prizes__inner {
  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) {
  .prizes__inner {
    min-height: 900px;
    max-width: 1084px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
.prizes__inner::before {
  content: "";
  position: absolute;
  background: url(../img/sp/device=SP.png) no-repeat center center/contain;
  top: -8px;
  width: 250px;
  height: 100px;
  aspect-ratio: 250/100;
  z-index: 19;
}
@media screen and (min-width: 900px) {
  .prizes__inner::before {
    width: 383px;
    height: 275px;
    top: -69px;
    background: url(../img/pc/device=PC.png) no-repeat center center/contain;
  }
}

.prizes__back-image-right {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes__back-image-right {
    position: absolute;
    display: inline-block;
    top: 0;
    right: 31px;
    width: 290px;
    height: auto;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__back-image-right {
    top: 20px;
    width: 315px;
  }
}

.prizes__back-image-left {
  display: none;
}
@media screen and (min-width: 900px) {
  .prizes__back-image-left {
    position: absolute;
    display: inline-block;
    left: 31px;
    height: auto;
    top: 0;
    width: 290px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__back-image-left {
    top: 21px;
    width: 315px;
  }
}

.prizes__section-contents {
  position: absolute;
  background: transparent;
  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;
  text-align: center;
  padding-inline: 20px;
}

.prizes__title {
  margin-top: 20px;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 15px;
  background: transparent;
  z-index: 20;
}

.prizes__wrapper {
  border-radius: 24px;
  background: #FFFFFF;
  margin-top: 83.67px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  text-align: center;
  padding-bottom: 34.67px;
  z-index: 1;
  width: 100vw;
}
@media screen and (min-width: 600px) {
  .prizes__wrapper {
    max-width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .prizes__wrapper {
    padding-inline: 30px;
    margin-inline: 0;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__wrapper {
    width: 100%;
    margin-top: 141px;
    padding-inline: 56px;
    padding-bottom: 53px;
  }
}

.prizes__title-head {
  text-align: center;
}

.prizes__title-text {
  margin-top: 16px;
  z-index: 22;
}
@media screen and (min-width: 600px) {
  .prizes__title-text {
    font-size: 10px;
  }
}
@media screen and (min-width: 768px) {
  .prizes__title-text {
    font-size: 11px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__title-text {
    margin-top: 40px;
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__title-text {
    font-size: 16px;
  }
}

.prizes__boxes {
  display: grid;
  grid-template-columns: repeat(2, 160px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  margin-top: 121.33px;
  padding-bottom: 19px;
}
@media screen and (min-width: 600px) {
  .prizes__boxes {
    row-gap: 10px;
    -webkit-column-gap: 120px;
       -moz-column-gap: 120px;
            column-gap: 120px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__boxes {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, auto);
    row-gap: 40px;
    -webkit-column-gap: 13px;
       -moz-column-gap: 13px;
            column-gap: 13px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__boxes {
    -webkit-column-gap: 33px;
       -moz-column-gap: 33px;
            column-gap: 33px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__boxes:nth-child(1) .prizes__box-text-box {
    padding-block: 32px;
  }
}

.prizes__box {
  position: relative;
  border-radius: 8px;
  text-align: center;
  padding-top: 23px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: url(../img/prizen/Vector.png), default;
  width: 100%;
  justify-self: center;
  height: 100%;
}
@media screen and (min-width: 600px) {
  .prizes__box {
    width: 250px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__box {
    padding-top: 50px;
    width: 95%;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__box {
    width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .prizes__box:nth-child(1) {
    grid-column: 1/4;
  }
  .prizes__box:nth-child(1) .prizes__box__head {
    width: 97px;
  }
  .prizes__box:nth-child(1) .box-text-1 {
    padding-top: 30px;
    padding-bottom: 28px;
  }
  .prizes__box:nth-child(1) .prizes__box-head {
    margin-top: 26px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__box:nth-child(1) .prizes__box-head {
    margin-top: 0;
  }
}
@media screen and (min-width: 900px) {
  .prizes__box:nth-child(2) {
    grid-column: 4/7;
  }
  .prizes__box:nth-child(2) .prizes__box__head {
    width: 97px;
  }
  .prizes__box:nth-child(2) .box-text-2 {
    padding-top: 46px;
    padding-bottom: 42px;
  }
  .prizes__box:nth-child(2) .prizes__box-head {
    margin-top: 26px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__box:nth-child(2) .prizes__box-head {
    margin-top: 0;
  }
}
.prizes__box:nth-child(3) {
  padding-top: 23px;
}
.prizes__box:nth-child(3) .box-text-3:hover {
  padding: 17.5px 25px;
}
@media screen and (min-width: 900px) {
  .prizes__box:nth-child(3) {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
@media screen and (min-width: 900px) {
  .prizes__box:nth-child(4) {
    grid-column: 3/5;
    grid-row: 2/3;
  }
}
.prizes__box:nth-child(5) {
  grid-column: 1/3;
  width: 48%;
}
.prizes__box:nth-child(5) .box-text-5 {
  padding-left: 31px;
  padding-top: 10px;
  padding-bottom: 8px;
}
@media screen and (min-width: 900px) {
  .prizes__box:nth-child(5) {
    width: 100%;
    grid-column: 5/7;
    grid-row: 2/3;
  }
}

.prizes__box-head {
  background: url(../img/prizen/Star\ 1.png) no-repeat center center/contain;
  width: 48px;
  height: 48px;
  text-align: center;
  color: #FFFFFF;
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #FFFFFF;
  z-index: 23;
}
@media screen and (min-width: 900px) {
  .prizes__box-head {
    width: 80px;
    height: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__box-head {
    width: 100px;
    height: 100px;
  }
}

.prizes__head-text {
  font-size: 7.68px;
  font-weight: 700;
  padding-top: 5.76px;
}
@media screen and (min-width: 900px) {
  .prizes__head-text {
    font-size: 16px;
    margin-top: 14px;
    padding-top: 0;
  }
}

.prizes__head-number {
  font-family: "Josefin Sans", sans-serif;
  font-size: 23.04px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 900px) {
  .prizes__head-number {
    font-size: 38px;
    margin-top: 1px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__head-number {
    font-size: 48px;
  }
}

.prizes__box-card {
  aspect-ratio: 160/140;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  display: block;
}
.prizes__box-card:hover {
  border-top: 1px solid #9ED0E0;
  border-inline: 1px solid #9ED0E0;
  border-bottom: none;
}
.prizes__box-card img {
  border-radius: 8px 8px 0 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.prizes__box-card img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media screen and (min-width: 900px) {
  .prizes__box-card {
    aspect-ratio: 440/340;
    border-radius: 24px 24px 0 0;
  }
  .prizes__box-card img {
    aspect-ratio: 440/340;
    border-radius: 24px 24px 0 0;
  }
}

.prizes__body {
  padding: 9px 38px;
  background: #F5F5F5;
  border-radius: 0 0 8px 8px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .prizes__body {
    padding: 9px 44px;
    border-radius: 0 0 16px 16px;
  }
}
.prizes__body:hover {
  border-bottom: 1px solid #9ED0E0;
  border-inline: 1px solid #9ED0E0;
  border-top: none;
  padding-bottom: 8px;
  padding-inline: 37px;
}

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

.prizes__line-box {
  position: absolute;
  background: linear-gradient(-45deg, #67B0C7 0%, #67B0C7 50%, transparent 50%, transparent 100%);
  top: 20px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 0 0 20%;
}
.prizes__line-box:hover {
  top: 21px;
  background: linear-gradient(-45deg, #9ED0E0 0%, #9ED0E0 50%, transparent 50%, transparent 100%);
}
@media screen and (min-width: 900px) {
  .prizes__line-box {
    border-radius: 0 0 25%;
    top: 21px;
    right: 0px;
    width: 100px;
    height: 100px;
  }
}

.prizes__line-box__icon {
  position: absolute;
  max-width: 100%;
  height: auto;
  width: 11.52px;
  top: 18.36px;
  left: 19.26px;
}
@media screen and (min-width: 900px) {
  .prizes__line-box__icon {
    width: 32px;
    height: 32px;
    top: 53px;
    left: 54px;
  }
}
.prizes__line-box__icon img {
  display: block;
  width: 100%;
}

@media screen and (min-width: 900px) {
  .prizes__button {
    font-size: 20px;
    padding: 9px 37px 9px 37px;
    font-size: 20px;
    margin-top: 21px;
  }
}

@media screen and (min-width: 900px) {
  .prizes__box:nth-child(n+3) {
    padding-top: 39px;
    width: 230px;
  }
  .prizes__box:nth-child(n+3) .prizes__box-head {
    width: 76px;
    height: 76px;
  }
  .prizes__box:nth-child(n+3) .prizes__head-text {
    font-size: 12.8px;
    margin-top: 10px;
  }
  .prizes__box:nth-child(n+3) .prizes__head-number {
    font-size: 38.4px;
    margin-top: 2px;
  }
  .prizes__box:nth-child(n+3) .prizes__box-card {
    aspect-ratio: 280/240;
    border-radius: 16px 16px 0 0;
  }
  .prizes__box:nth-child(n+3) .prizes__box-card img {
    aspect-ratio: 280/240;
    border-radius: 16px 16px 0 0;
  }
  .prizes__box:nth-child(n+3) .prizes__body {
    padding-top: 15px;
    padding-bottom: 13px;
  }
  .prizes__box:nth-child(n+3) .prizes__body-text {
    font-size: 16px;
  }
  .prizes__box:nth-child(n+3) .prizes__line-box {
    width: 64px;
    height: 64px;
    top: 15px;
  }
  .prizes__box:nth-child(n+3) .prizes__line-box__icon {
    width: 20.48px;
    height: 20.48px;
    top: 35px;
    left: 35px;
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .prizes__box:nth-child(n+3) {
    width: 280px;
  }
}

@media screen and (min-width: 1200px) {
  .prizes__box:nth-child(3) {
    padding-top: 38px;
  }
}
.prizes__box:nth-child(3) .box-text-3 {
  padding: 18.5px 26px;
}
@media screen and (min-width: 900px) {
  .prizes__box:nth-child(3) .box-text-3 {
    padding-inline: 25px;
    padding-top: 24px;
    padding-bottom: 29px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__box:nth-child(3) .box-text-3 {
    padding-top: 28px !important;
    padding-bottom: 27px !important;
  }
}
.prizes__box:nth-child(5) .box-text-5 {
  padding-top: 10px;
  padding-bottom: 8px;
  padding-left: 24px;
  padding-right: 25px;
}
.prizes__box:nth-child(5) .box-text-5:hover {
  padding-inline: 31px;
}
@media screen and (min-width: 900px) {
  .prizes__box:nth-child(5) .box-text-5 {
    padding-top: 13px;
    padding-bottom: 15px;
  }
}

.modal {
  position: fixed;
  inset: 0;
  margin: auto;
  text-align: center;
  border-radius: 24px;
  background: #FFF;
  z-index: 999;
}

.prizes-modal__image {
  width: 100%;
  height: auto;
}
.prizes-modal__image img {
  width: 336px;
}

.prizes-modal__body {
  padding-top: 39px;
  padding-inline: 20px;
  padding-bottom: 44px;
}

.prizes-modal__title {
  font-size: 16px;
  font-weight: 700;
}

.prizes-modal__text {
  margin-top: 12px;
  margin-bottom: 16px;
}

.prizes__back-image-box {
  padding-top: 124px;
  width: 100vw;
}
@media screen and (min-width: 900px) {
  .prizes__back-image-box {
    padding-top: 166px;
  }
}

.prizes__back-image {
  overflow-x: hidden;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 0;
  z-index: -2;
  margin-top: -167px;
}
.prizes__back-image img {
  width: 100%;
  min-width: 580px;
}

.spots {
  position: relative;
  padding-bottom: 18px;
}
@media screen and (min-width: 900px) {
  .spots {
    padding-bottom: 0;
  }
}
.spots::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 48px;
  top: -47px;
  left: -3px;
  background: url(../img/sp/img_bg_wave-sp.png);
  background-repeat: repeat;
  background-size: 96px 48px;
}
@media screen and (min-width: 900px) {
  .spots::before {
    background: url(../img/pc/img_bg_wave.png);
    height: 123px;
    background-size: 252px 123px;
    top: -119px;
  }
}
.spots::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 45.7px;
  bottom: -21px;
  left: 0;
  background: url(../img/spots/img_bg_wave.svg);
  background-repeat: repeat-x;
  background-position: left -4px center;
  background-size: 96px 48px;
}
@media screen and (min-width: 900px) {
  .spots::after {
    background: url(../img/spots/pc/img_bg_wave-bottom-pc.png);
    background-repeat: repeat-x;
    background-position: left -2px center;
    height: 120px;
    bottom: -52px;
    background-size: contain;
    background-color: transparent;
  }
}

@media screen and (min-width: 900px) {
  .spots__decoration-pawpads {
    position: absolute;
    bottom: 115px;
    left: 9px;
    width: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__decoration-pawpads {
    bottom: 66px;
    left: 36px;
    width: 100px;
  }
}

.spots__main-contents {
  padding-bottom: 26.86px;
  background-color: #67B0C7;
}

@media screen and (min-width: 900px) {
  .spots__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: max(30px, 50vw - 509px);
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__top {
    padding-left: 4px;
  }
}

.spots__head {
  position: relative;
  padding-bottom: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 93px;
}
@media screen and (min-width: 600px) {
  .spots__head {
    margin: 0 auto;
  }
}
@media screen and (min-width: 900px) {
  .spots__head {
    padding-bottom: 29px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__head {
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    margin-left: 243px;
    margin-bottom: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.spots__title-icon {
  position: absolute;
  width: 28px;
  height: auto;
  left: -36px;
  top: 3px;
}
@media screen and (min-width: 768px) {
  .spots__title-icon {
    top: 7%;
    left: -15%;
  }
}
@media screen and (min-width: 900px) {
  .spots__title-icon {
    left: o;
    right: -3px;
    top: 1px;
    width: 56px;
    height: 56px;
  }
  .spots__title-icon img {
    display: block;
    width: 100%;
  }
}

.spots__title {
  font-family: "Kiwi Maru", serif;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
}
@media screen and (min-width: 900px) {
  .spots__title {
    font-size: 40px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    padding-top: 72px;
    letter-spacing: 10px;
  }
  .spots__title span {
    position: relative;
    left: -5px;
    top: 5px;
  }
}

.spots__slider {
  margin-top: 0px;
}
@media screen and (min-width: 900px) {
  .spots__slider {
    width: calc(100% - 56px - 32px);
  }
}
@media screen and (min-width: 1200px) {
  .spots__slider {
    width: 100%;
  }
}

@media screen and (min-width: 900px) {
  .spots__slider-wrapper {
    position: relative;
    padding-bottom: 22px;
  }
}

.spot__slide {
  height: 402px;
  margin-right: 16px;
}
@media screen and (min-width: 900px) {
  .spot__slide {
    height: 542px;
  }
}

.spots__card {
  padding-bottom: 31.16px;
  border-radius: 12px;
  background: #FFFFFF;
  height: 100%;
  padding-right: 24px;
  padding-left: 24px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .spots__card {
    padding-right: 32px;
    padding-left: 32px;
    border-radius: 24px;
  }
}

.spots__figure {
  margin: 0;
}
.spots__card-image {
  display: block;
  width: 240px;
  margin-left: -24px;
}
.spots__card-image img {
  width: 100%;
  border-radius: 12px 12px 0 0;
}
@media screen and (min-width: 300px) {
  .spots__card-image {
    width: 306px;
  }
}
@media screen and (min-width: 600px) {
  .spots__card-image {
    width: calc(100% + 48px);
  }
}
@media screen and (min-width: 900px) {
  .spots__card-image {
    width: 442px;
    margin-left: -32px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__card-image {
    width: 357px;
  }
}
@media screen and (min-width: 1500px) {
  .spots__card-image {
    width: 344px;
  }
}

.spots__figcaption {
  height: 100%;
}

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

.spots__card-text {
  margin-top: 13px;
}
@media screen and (min-width: 768px) {
  .spots__card-text {
    margin-top: 3px;
  }
}
@media screen and (min-width: 900px) {
  .spots__card-text {
    margin-top: 25px;
  }
}

.spot__btn-prev {
  position: absolute;
  top: -382px;
  left: 0px;
  width: 100vw;
  height: 402px;
}
@media screen and (min-width: 900px) {
  .spot__btn-prev {
    width: 80px;
    height: 80px;
    position: relative;
  }
}
.spot__btn-prev::before {
  content: "";
}
@media screen and (min-width: 900px) {
  .spot__btn-prev::before {
    position: absolute;
    background: url(../img/spots/pc/spot-slider.png) no-repeat center center/contain;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    top: 326px;
    left: 40px;
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .spot__btn-prev::before {
    left: 254px;
  }
}
.spot__btn-prev::after {
  display: none;
}

.spot__btn-next {
  position: relative;
}
.spot__btn-next::after {
  content: "";
  position: absolute;
  background: url(../img/spots/pc/\ stopslider-next.png) no-repeat center center/contain;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  left: 913px;
  left: 736px;
  top: -113px;
}
@media screen and (min-width: 1200px) {
  .spot__btn-next::after {
    left: 1127px;
  }
}

.spots__inner {
  position: relative;
}
@media screen and (min-width: 900px) {
  .spots__inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media screen and (min-width: 900px) {
  .spots__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    top: -43px;
  }
}

.spots__logo {
  width: 255px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .spots__logo {
    width: 397px;
    height: 107px;
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .spots__logo {
    width: 497px;
    margin-left: 214px;
  }
  .spots__logo img {
    width: 495px;
    aspect-ratio: 495/107;
  }
}

.spots__text-box {
  text-align: center;
}
@media screen and (min-width: 900px) {
  .spots__text-box {
    right: -244px;
    top: -16px;
  }
}

.spots__text {
  text-align: center;
  color: #FFFFFF;
  font-size: 11.444px;
  padding-top: 15px;
}
@media screen and (min-width: 900px) {
  .spots__text {
    font-size: 14px;
    padding-top: 0;
    margin-left: 11px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__text {
    padding-top: 0;
    margin-left: 45px;
  }
}
@media screen and (min-width: 1500px) {
  .spots__text {
    margin-left: 79px;
    font-size: 16px;
  }
}

.spots__button {
  font-size: 16px;
  margin-top: 24px;
}
@media screen and (min-width: 900px) {
  .spots__button {
    margin-left: 0;
    margin-top: 25px;
    font-size: 18px;
    padding: 7px 37px 9px 37px;
    left: 10px;
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .spots__button {
    font-size: 18px;
  }
}
@media screen and (min-width: 1500px) {
  .spots__button {
    margin-left: 90px;
    font-size: 20px;
  }
}

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

.qa__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .qa__inner {
    padding-inline: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .qa__inner {
    padding: 0;
  }
}

.qa__contents {
  padding-top: 61px;
  padding-bottom: 23.67px;
  background: #E9F6F8;
}
@media screen and (min-width: 900px) {
  .qa__contents {
    padding-top: 173px;
    padding-bottom: 40.67px;
  }
}

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

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

.qa-box__head {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-inline: 14px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .qa-box__head {
    padding-top: 27px;
    padding-inline: 22px;
    padding-bottom: 22px;
  }
}
.qa-box__head::after {
  content: "";
  position: absolute;
  width: 26.182px;
  height: 26.182px;
  border-radius: 50%;
  background: #9ED0E0;
  left: 291.91px;
  top: 20px;
}
@media screen and (min-width: 600px) {
  .qa-box__head::after {
    left: calc(291.91px + 58%);
  }
}
@media screen and (min-width: 768px) {
  .qa-box__head::after {
    left: calc(291.91px + 65%);
  }
}
@media screen and (min-width: 900px) {
  .qa-box__head::after {
    width: 48px;
    height: 48px;
    left: calc(951.91px - 40%);
  }
}
@media screen and (min-width: 1200px) {
  .qa-box__head::after {
    left: 951.91px;
  }
}
.qa-box__head::before {
  content: "";
  position: absolute;
  width: 17.455px;
  height: 17.455px;
  background: url(../img/qa/plusIcon.png) no-repeat center center/contain;
  top: 23.18px;
  left: 295.27px;
  z-index: 61;
}
@media screen and (min-width: 600px) {
  .qa-box__head::before {
    left: calc(295.27px + 58%);
  }
}
@media screen and (min-width: 768px) {
  .qa-box__head::before {
    left: calc(295.27px + 65%);
  }
}
@media screen and (min-width: 900px) {
  .qa-box__head::before {
    width: 32px;
    height: 32px;
    top: 26.18px;
    left: calc(960.27px - 40%);
  }
}
@media screen and (min-width: 1200px) {
  .qa-box__head::before {
    left: 960.27px;
  }
}

.qa-box__head.is-open::before {
  content: "";
  position: absolute;
  width: 17.455px;
  height: 17.455px;
  background: url(../img/qa/minusIcon.png) no-repeat center center/contain;
  left: 296.91px;
  top: 24px;
  z-index: 11;
}
@media screen and (min-width: 600px) {
  .qa-box__head.is-open::before {
    left: calc(296.91px + 57.5%);
  }
}
@media screen and (min-width: 768px) {
  .qa-box__head.is-open::before {
    left: calc(296.91px + 64.5%);
  }
}
@media screen and (min-width: 900px) {
  .qa-box__head.is-open::before {
    width: 32px !important;
    height: 32px !important;
    top: 26.18px;
    left: calc(960.27px - 40%);
  }
}
@media screen and (min-width: 1200px) {
  .qa-box__head.is-open::before {
    left: 960.27px;
  }
}

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

.qa-box__head-text {
  font-size: 14px;
  font-weight: 700;
  margin-inline: 13px;
  display: block;
}
@media screen and (min-width: 600px) {
  .qa-box__head-text {
    width: 299px;
  }
}
@media screen and (min-width: 900px) {
  .qa-box__head-text {
    width: 366px;
    font-size: 20px;
    margin-inline: 17px;
  }
}

.qa-box__body {
  display: none;
  padding-top: 17px;
  padding-bottom: 12px;
  padding-inline: 14px;
  background: #F5F5F5;
  border-radius: 0 0 12px 12px;
  padding-bottom: 13px;
}
@media screen and (min-width: 900px) {
  .qa-box__body {
    padding-inline: 22px;
    padding-top: 26px;
    padding-bottom: 23px;
  }
}

.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

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

.qa__box:nth-child(4) {
  margin-top: -1px;
}
.qa__box:nth-child(4) .qa-box__head {
  padding-top: 9px;
  padding-bottom: 9px;
}
@media screen and (min-width: 900px) {
  .qa__box:nth-child(4) .qa-box__head {
    padding-top: 28px;
    padding-bottom: 21px;
  }
}

.entry {
  padding-bottom: 32.5px;
}
@media screen and (min-width: 900px) {
  .entry {
    padding-bottom: 120px;
  }
}

.entry__inner {
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 900px) {
  .entry__inner {
    padding-inline: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .entry__inner {
    padding: 0;
  }
}

.entry__contents {
  padding-top: 16px;
  border: 8px solid var(--LP-White, #FFF);
  background: rgba(255, 255, 255, 0.5);
  padding-left: 15.5px;
  padding-right: 15px;
  padding-bottom: 15px;
}
@media screen and (min-width: 900px) {
  .entry__contents {
    padding-bottom: 34px;
    padding-top: 32px;
    padding-left: 48px;
    padding-right: 48px;
    padding-bottom: 30px;
  }
}

.entry__section-title {
  text-align: center;
}

.entry__icon {
  width: 38.333px;
}
@media screen and (min-width: 900px) {
  .entry__icon {
    width: 48px;
  }
}

.entry-title__head {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.entry-requirements__table {
  margin-top: 24px;
  text-align: left;
}
@media screen and (min-width: 900px) {
  .entry-requirements__table {
    margin-top: 40px;
  }
}

.entry__table {
  border-collapse: collapse;
  width: 100%;
  display: block;
}

.table-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .table-contents {
    gap: 12px;
  }
}

.table-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 900px) {
  .table-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0px;
    padding-bottom: 11px;
  }
}
.table-content:nth-child(2) {
  padding-bottom: 14px;
}
@media screen and (min-width: 900px) {
  .table-content:nth-child(2) {
    padding-bottom: 10px;
  }
}
.table-content:nth-child(3) {
  padding-bottom: 14px;
}
@media screen and (min-width: 900px) {
  .table-content:nth-child(3) {
    padding-bottom: 11px;
  }
}
.table-content:nth-child(4) {
  padding-bottom: 14px;
}
@media screen and (min-width: 900px) {
  .table-content:nth-child(4) {
    padding-bottom: 10px;
  }
}
.table-content:nth-child(5) {
  padding-bottom: 13px;
}
@media screen and (min-width: 768px) {
  .table-content:nth-child(5) {
    padding-bottom: 14px;
  }
}

.table-head {
  font-size: 14px;
  font-weight: 700;
  position: relative;
  padding-left: 16px;
}
@media screen and (min-width: 900px) {
  .table-head {
    padding-left: 32px;
  }
}
@media screen and (min-width: 900px) {
  .table-head {
    font-size: 16px;
    display: block;
    width: 240px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.table-head::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ED0E0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (min-width: 900px) {
  .table-head::before {
    left: 16px;
  }
}

.table-body {
  padding-top: 8px;
  position: relative;
}
.table-body span {
  text-decoration-line: underline;
}
@media screen and (min-width: 900px) {
  .table-body {
    display: block;
    width: 672px;
    padding-top: 1px;
  }
}
.table-body li {
  position: relative;
  padding-left: 18px;
  line-height: 1.587;
}
.table-body li span {
  text-decoration-line: underline;
}
@media screen and (min-width: 900px) {
  .table-body li {
    padding-left: 24px;
    padding-top: 1px;
  }
}
.table-body li:nth-child(8) {
  line-height: 1.58;
}
@media screen and (min-width: 900px) {
  .table-body li:nth-child(8) {
    line-height: 1.587;
  }
}
.table-body li:nth-child(9) {
  padding-top: 1px;
  line-height: 1.58;
}
@media screen and (min-width: 900px) {
  .table-body li:nth-child(9) {
    padding-top: 3.2px;
    line-height: 1.587;
  }
}
.table-body li::before {
  content: "";
  position: absolute;
  background: #4A3636;
  width: 3px;
  height: 3px;
  top: 9px;
  left: 7px;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .table-body li::before {
    width: 4px;
    height: 4px;
    top: 14px;
    left: 10px;
  }
}

.table-2::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #9ED0E0;
  top: 12px;
  left: 16px;
}

.contact {
  padding-top: 41px;
  padding-bottom: 43px;
  background: #FFFFFF;
}
@media screen and (min-width: 900px) {
  .contact {
    padding-top: 120px;
    padding-bottom: 119px;
  }
}

.contact__inner {
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .contact__inner {
    padding-inline: 30px;
  }
}

@media screen and (min-width: 900px) {
  .contact__contents {
    padding-left: 48px;
    padding-right: 49px;
  }
}
@media screen and (min-width: 1200px) {
  .contact__contents {
    padding-left: 58px;
    padding-right: 59px;
  }
}

.contact__title {
  margin-top: 6px;
  margin-bottom: 5px;
}
@media screen and (min-width: 900px) {
  .contact__title {
    margin-top: 8px;
    margin-bottom: 8px;
  }
}

.contact__title-text {
  text-align: center;
  padding: 24px 0;
}
@media screen and (min-width: 900px) {
  .contact__title-text {
    padding: 33px 0;
  }
}

.contact__form {
  margin-top: 2px;
}
@media screen and (min-width: 900px) {
  .contact__form {
    margin-top: 6px;
  }
}

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

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

@media screen and (min-width: 900px) {
  .form-field-head {
    display: block;
    margin-top: 16px;
  }
}

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

.form-field__tag {
  font-weight: 700;
  color: #FFFFFF;
  border-radius: 4px;
  background: #CE2073;
  padding: 6px 8px 4px 8px;
  margin-left: 9px;
  font-size: 12px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .form-field__tag {
    padding: 6px 7px 5px 7px;
    top: -1px;
  }
}

.form-field__item {
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .form-field__item {
    width: 548px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .form-field__item {
    width: 628px;
  }
}

.form-text {
  font-size: 14px;
  padding: 16px 16px 17px 16px;
  border: none;
  width: 100%;
  border-radius: 8px;
  background: #F5F5F5;
}
@media screen and (min-width: 900px) {
  .form-text {
    font-size: 16px;
    padding: 16px 16px 15px 17px;
  }
}
.form-text.is-error {
  outline: #CE2073 auto 1px;
  background: #fff0f7;
}
.form-text::-webkit-input-placeholder {
  color: #CCC;
}
.form-text::-moz-placeholder {
  color: #CCC;
}
.form-text:-ms-input-placeholder {
  color: #CCC;
}
.form-text::-ms-input-placeholder {
  color: #CCC;
}
.form-text::placeholder {
  color: #CCC;
}
.form-text:focus {
  outline: #9ED0E0 auto 1px;
  background: #E9F6F8;
}

.form-select {
  width: 100%;
  border-radius: 8px;
  background: #F5F5F5;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 17px 16px 16px 16px;
  font-size: 14px;
  background-image: url(../img/Contact/Icon-select.png), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat, no-repeat;
  background-position: center right 12px, center center;
  background-size: 32px 32px, cover;
  border: none;
}
.form-select:focus {
  outline: #9ED0E0 auto 1px;
}
@media screen and (min-width: 900px) {
  .form-select {
    font-size: 16px;
    padding: 18px 16px 13px 17px;
  }
}

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

.form-radio__text, .form-radio__text-right {
  position: relative;
  padding-left: 32px;
}
@media screen and (min-width: 900px) {
  .form-radio__text, .form-radio__text-right {
    left: 2px;
    top: 19px;
  }
}
.form-radio__text::before, .form-radio__text::after, .form-radio__text-right::before, .form-radio__text-right::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-radio__text::before, .form-radio__text-right::before {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F5F5F5;
  left: 0;
}
.form-radio__text::after, .form-radio__text-right::after {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #9ed0e0;
  opacity: 0;
  left: 6px;
}

.form-radio__text-right {
  padding-left: 53px;
}
.form-radio__text-right::before {
  left: 20px;
}
.form-radio__text-right::after {
  left: 26px;
}

.form-textarea__input {
  width: 100%;
  border-radius: 8px;
  background: #F5F5F5;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 17px;
  height: 160px;
}
@media screen and (min-width: 900px) {
  .form-textarea__input {
    padding-left: 17px;
  }
}
.form-textarea__input::-webkit-input-placeholder {
  color: #CCC;
}
.form-textarea__input::-moz-placeholder {
  color: #CCC;
}
.form-textarea__input:-ms-input-placeholder {
  color: #CCC;
}
.form-textarea__input::-ms-input-placeholder {
  color: #CCC;
}
.form-textarea__input::placeholder {
  color: #CCC;
}
.form-textarea__input:focus {
  outline: #9ED0E0 auto 1px;
  background: #E9F6F8;
}
.form-textarea__input.is-error {
  outline: #CE2073 auto 1px;
  background: #fff0f7;
}

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

.form-checkbox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

.form-checkbox__text {
  font-size: 14px;
  font-weight: 400;
  position: relative;
  top: -26px;
  left: 18px;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: -29px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  background: #F5F5F5;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -37px;
}
.form-checkbox__text::after {
  width: 14px;
  height: 9px;
  left: -32px;
  top: 10px;
  background: url(../img/Contact/Vector\ 7.png) no-repeat center center/contain;
  opacity: 0;
}
.form-checkbox__text a {
  text-decoration-line: underline;
}
.form-checkbox__text a:hover {
  color: #67B0C7;
  cursor: url(../img/Vector.svg), pointer;
}

.contact__button {
  display: block;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (min-width: 900px) {
  .contact__button {
    margin-top: 14px;
    border: 2px solid #4A3636;
    padding: 4px 22px 6px 22px;
    width: 240px;
  }
}

.form-field:nth-child(2) {
  gap: 11px;
}
.form-field:nth-child(3) {
  gap: 9px;
}
.form-field:nth-child(4) {
  gap: 9px;
  margin-top: -2px;
}
@media screen and (min-width: 900px) {
  .form-field:nth-child(4) {
    gap: 7px;
    margin-top: 0;
  }
}
@media screen and (min-width: 900px) {
  .form-field:nth-child(4) .form-field-head {
    margin-top: 18px;
  }
}
@media screen and (min-width: 900px) {
  .form-field:nth-child(4) .form-field__item {
    margin-bottom: 35px;
  }
}
.form-field:nth-child(5) .form-field__tag {
  padding: 5px 8px 5px 8px;
  margin-left: 10px;
}
@media screen and (min-width: 900px) {
  .form-field:nth-child(5) .form-field__tag {
    top: -1px;
    left: -1px;
  }
}
@media screen and (min-width: 900px) {
  .form-field:nth-child(5) .form-field-head {
    margin-top: 0px;
  }
}

.footer {
  padding-top: 40px;
}
@media screen and (min-width: 900px) {
  .footer {
    position: relative;
    padding-top: 121px;
  }
}

.footer__inner {
  padding-bottom: 80px;
}
@media screen and (min-width: 900px) {
  .footer__inner {
    padding-bottom: 101px;
    padding-inline: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__inner {
    padding-inline: 0;
  }
}

.footer__back-image {
  display: none;
}
@media screen and (min-width: 900px) {
  .footer__back-image {
    display: block;
    width: 80px;
    height: 200px;
    position: absolute;
    right: 80px;
    top: 78px;
  }
}
.footer__back-image img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .footer__back-image {
    width: 100px;
    height: 220px;
  }
}

.footer__sns-links {
  padding-bottom: 14px;
}
@media screen and (min-width: 900px) {
  .footer__sns-links {
    padding-bottom: 40px;
  }
}

.footer__title {
  width: 182px;
  aspect-ratio: 182/25;
  margin-left: 76px;
  margin-right: auto;
  margin-top: 1px;
}
@media screen and (min-width: 600px) {
  .footer__title {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1200px) {
  .footer__title {
    width: 213px;
    width: 216px;
    margin-left: 403px;
    margin-left: 314px;
  }
}
.footer__title img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .footer__title {
    margin-left: 403px;
  }
}

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

@media screen and (min-width: 900px) {
  .footer__sns-link-icon {
    width: 40px;
    height: 40px;
  }
  .footer__sns-link-icon img {
    width: 100%;
  }
}
.footer__sns-link-icon:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.footer__logo {
  width: 333px;
  padding-left: 3px;
  padding-right: 4px;
}
@media screen and (min-width: 600px) {
  .footer__logo {
    margin-inline: auto;
  }
}
@media screen and (min-width: 900px) {
  .footer__logo {
    width: 746px;
    height: 125px;
    margin-top: 2px;
  }
}

@media screen and (min-width: 600px) {
  .addres-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    position: relative;
  }
}
@media screen and (min-width: 900px) {
  .addres-wrap {
    z-index: 50;
    top: -47px;
  }
}

.address-wrap__map {
  height: 271px;
  width: 335px;
}
.address-wrap__map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 335/271;
}
@media screen and (min-width: 600px) {
  .address-wrap__map {
    width: 346px;
  }
}
@media screen and (min-width: 900px) {
  .address-wrap__map {
    width: 512px;
    height: 400px;
  }
}

.address-wrap__body {
  padding-top: 24px;
  padding-inline: 24px;
  padding-bottom: 30px;
  background: #FFFFFF;
  border-radius: 0 0 16px 16px;
}
@media screen and (min-width: 600px) {
  .address-wrap__body {
    border-radius: 16px 0 0 16px;
    width: 50%;
    padding-inline: 22px;
  }
}
@media screen and (min-width: 1200px) {
  .address-wrap__body {
    padding-inline: 24px;
    padding-top: 106px;
    padding-left: 58px;
    padding-right: 58px;
  }
}

.address-wrap__logo {
  aspect-ratio: 153/20;
  width: 153px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .address-wrap__logo {
    width: 182px;
    margin-left: 4px;
  }
}
.address-wrap__logo img {
  display: block;
  width: 100%;
}

.address-wrap__info {
  font-style: normal;
  margin-top: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .address-wrap__info {
    margin-top: 25px;
    gap: 12px;
  }
}

.address-wrap__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
}
@media screen and (min-width: 600px) {
  .address-wrap__info-row {
    gap: 29px;
  }
}
@media screen and (min-width: 1200px) {
  .address-wrap__info-row {
    gap: 36px;
  }
}

.address-wrap__info-team {
  font-weight: 700;
  width: 48px;
  padding-left: 19.5px;
  white-space: nowrap;
  position: relative;
}
@media screen and (min-width: 900px) {
  .address-wrap__info-team {
    width: 97px;
  }
}
.address-wrap__info-team::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ED0E0;
  left: 3px;
  top: 5px;
}
@media screen and (min-width: 900px) {
  .address-wrap__info-team::before {
    top: 8px;
  }
}

.address-wrap__info-description {
  width: 202px;
}
@media screen and (min-width: 900px) {
  .address-wrap__info-description {
    width: 312px;
  }
}

.footer__bottom {
  position: relative;
}
.footer__bottom::before {
  content: "";
  position: absolute;
  top: -30px;
  background: url(../img/footer/img_bg_wave.png), linear-gradient(to bottom, transparent 12px, #67B0C7 10px);
  width: 100%;
  height: 45.714px;
  background-repeat: repeat-x;
  background-position: left -6px center;
  background-size: 96px 45.714px;
}
@media screen and (min-width: 768px) {
  .footer__bottom::before {
    top: -32px;
  }
}
@media screen and (min-width: 900px) {
  .footer__bottom::before {
    background: url(../img/footer/img_bg_wave-pc.png);
    height: 120px;
    background-size: 252px 120px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__bottom::before {
    top: -30px;
  }
}

.footer__copyright {
  display: block;
  padding-top: 16px;
  color: #FFFFFF;
  background: #67B0C7;
  text-align: center;
  padding-bottom: 25px;
}
@media screen and (min-width: 900px) {
  .footer__copyright {
    padding-top: 90px;
    font-size: 14px;
    padding-bottom: 28px;
  }
}

.page-top {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 77px;
  height: 76px;
  cursor: pointer;
  position: relative;
  top: 23px;
}
.page-top img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 900px) {
  .page-top {
    position: fixed;
    right: 40px;
    top: 840px;
    width: 101px;
    height: 104px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .page-top.is-show {
    opacity: 1;
    visibility: visible;
  }
}