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

.wrapper {
  overflow: hidden;
}

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

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

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

.button {
  display: inline-block;
  padding: 4px 22px 6px 22px;
  border: 2px solid #4a3636;
  border-radius: 40px;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.button:hover {
  background-color: #ffee56;
}

.sp-screen__button {
  display: inline-block;
  margin-top: 12.8px;
  padding: 3px 23px 3px 23px;
}
@media screen and (min-width: 900px) {
  .sp-screen__button {
    padding: 6px 23px 6px 23px;
    font-size: 16px;
  }
}
.sp-screen__button:hover {
  background-color: #ffee56;
}

.about__button {
  text-align: center;
  margin-top: 25px;
}
@media screen and (min-width: 1200px) {
  .about__button {
    margin-top: 33px;
  }
}

.about-button__link {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .about-button__link {
    border: 3px solid #4a3636;
  }
}
@media screen and (min-width: 1200px) {
  .about-button__link {
    font-size: 20px;
    padding: 10px 37px 10px 37px;
  }
}
.about-button__link:hover {
  background-color: #ffee56;
}

.sns-post__button {
  text-align: center;
}

.sns-button__link {
  display: inline-block;
  font-size: 16px;
}
@media screen and (min-width: 1200px) {
  .sns-button__link {
    font-size: 20px;
    padding: 8px 38px 10px 38px;
    border: 3px solid #4a3636;
  }
}

.prizes__button {
  margin-top: 19px;
}
@media screen and (min-width: 600px) {
  .prizes__button {
    margin-top: 60px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__button {
    margin-top: 38px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__button {
    margin-top: 42px;
  }
}

.spots__button {
  margin-block: 25px 20px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .spots__button {
    margin-block: 25px 0;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .spots__button {
    margin-block: 24px 0;
    margin-right: 0;
  }
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.inline-link:hover {
  color: #67b0c7;
}

.section__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  padding-inline: 15px;
  line-height: 1.25;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .section__heading {
    gap: 8px;
    padding-inline: 15px;
  }
}
.section__heading img {
  width: 37px;
  height: 37px;
}
@media screen and (min-width: 900px) {
  .section__heading img {
    width: 48px;
    height: 48px;
  }
}

.section__heading-en {
  font-family: "Courgette", serif;
  font-size: 16px;
}
@media screen and (min-width: 900px) {
  .section__heading-en {
    font-size: 20px;
  }
}

.section__heading-jp {
  font-family: "Kiwi Maru", serif;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 6px solid #ffee56;
}
@media screen and (min-width: 900px) {
  .section__heading-jp {
    font-size: 32px;
    padding-bottom: 10px;
    border-bottom: 8px solid #ffee56;
  }
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}
.fade-in.inview {
  opacity: 1;
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, transform 1.5s;
  transition: opacity 1.5s, transform 1.5s, -webkit-transform 1.5s;
}
.fade-in-up.inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in-down {
  opacity: 0;
  -webkit-transform: translateY(-24px);
          transform: translateY(-24px);
  -webkit-transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, transform 1.5s;
  transition: opacity 1.5s, transform 1.5s, -webkit-transform 1.5s;
}
.fade-in-down.inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  -webkit-transition: opacity 2s, -webkit-transform 2s;
  transition: opacity 2s, -webkit-transform 2s;
  transition: opacity 2s, transform 2s;
  transition: opacity 2s, transform 2s, -webkit-transform 2s;
}

.inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: opacity 2s, -webkit-transform 2s;
  transition: opacity 2s, -webkit-transform 2s;
  transition: opacity 2s, transform 2s;
  transition: opacity 2s, transform 2s, -webkit-transform 2s;
}

.inview {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.blink {
  -webkit-animation: blink 1.5s infinite;
          animation: blink 1.5s infinite;
}

@-webkit-keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  z-index: 100;
  background: #fff;
  display: block;
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .header__inner {
    padding-inline: 24px;
    max-width: 1512px;
    margin-inline: auto;
  }
}

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

.header__logo a {
  margin-right: 20px;
  display: block;
}
.header__logo a img {
  width: 210px;
  display: block;
}
@media screen and (min-width: 900px) {
  .header__logo a img {
    width: 183px;
    height: 24px;
  }
}

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

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

.header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 12px;
}

.header__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__link {
  font-size: 12px;
  display: inline-block;
  padding-block: 8px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__link:hover {
  color: #67b0c7;
}

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

.drawer-icon {
  width: 32px;
  height: 23px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1), .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 13px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 32px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.drawer-icon.is-checked .drawer-icon__bar-dot {
  display: none;
}

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

.drawer-icon__bar-dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 3px;
  background: #4a3636;
  border-radius: 6px;
}

.header__attention {
  text-align: center;
  color: tomato;
  font-size: 12px;
  line-height: 1.4;
}
@media screen and (min-width: 900px) {
  .header__attention {
    font-size: 16px;
  }
}

.drawer__content {
  background: #fff;
  width: 100%;
  height: calc(100% - 64px);
  position: fixed;
  top: 64px;
  left: 0;
  padding-block: 71px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.4s linear;
  transition: -webkit-transform 0.4s linear;
  transition: transform 0.4s linear;
  transition: transform 0.4s linear, -webkit-transform 0.4s linear;
  z-index: 90;
}
.drawer__content.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer__nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 20px;
}

.drawer__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: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.drawer__link {
  font-size: 14px;
  display: inline-block;
  padding-block: 8px;
}

.drawer__button {
  margin-top: 30px;
  text-align: center;
}

.drawer__button-link {
  padding: 5px 24px 5px 24px;
  font-size: 16px;
}

.fv {
  position: relative;
  padding-top: 17px;
  margin-top: 64px;
}
@media screen and (min-width: 900px) {
  .fv {
    padding-top: 33px;
  }
}

.fv__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 154px);
}
@media screen and (min-width: 900px) {
  .fv__bg-image {
    height: calc(100% - 140px);
  }
}
.fv__bg-image img {
  border-radius: 0px 0px 24px 24px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 900px) {
  .fv__bg-image img {
    border-radius: 0px 0px 40px 40px;
  }
}

.fv__inner {
  position: relative;
  max-width: 375px;
  width: 100%;
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .fv__inner {
    max-width: 540px;
  }
}
@media screen and (min-width: 900px) {
  .fv__inner {
    max-width: 888px;
  }
}

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

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

.fv__heading-image1 {
  margin-inline: auto;
  width: 335px;
}
@media screen and (min-width: 600px) {
  .fv__heading-image1 {
    width: 420px;
  }
}
@media screen and (min-width: 900px) {
  .fv__heading-image1 {
    width: 520px;
  }
}
.fv__heading-image1 img {
  width: 100%;
}

.fv__heading-image2 {
  margin-top: 12px;
  margin-inline: auto;
  width: 240px;
}
@media screen and (min-width: 600px) {
  .fv__heading-image2 {
    margin-top: 16px;
    width: 300px;
  }
}
@media screen and (min-width: 900px) {
  .fv__heading-image2 {
    width: 356px;
  }
}
.fv__heading-image2 img {
  width: 100%;
}

.fv__image-contents {
  position: relative;
  margin-top: 10px;
  height: 522px;
}
@media screen and (min-width: 900px) {
  .fv__image-contents {
    height: 604px;
    margin-top: 0;
  }
}

.fv-image__fukidashi {
  position: absolute;
  top: 7px;
  left: calc(50% - 169px);
  width: 142px;
}
@media screen and (min-width: 600px) {
  .fv-image__fukidashi {
    top: 0;
    left: calc(50% - 282px);
    width: 180px;
  }
}
@media screen and (min-width: 900px) {
  .fv-image__fukidashi {
    left: calc(50% - 388px);
    width: 244px;
  }
}
.fv-image__fukidashi img {
  width: 100%;
}

.fv-image__present {
  position: absolute;
  top: 0;
  right: calc(50% - 142px);
  width: 110px;
  height: 110px;
}
@media screen and (min-width: 600px) {
  .fv-image__present {
    top: 2px;
    right: calc(50% - 260px);
    width: 145px;
  }
}
@media screen and (min-width: 900px) {
  .fv-image__present {
    top: 17px;
    right: calc(50% - 297px);
    width: 180px;
  }
}
.fv-image__present img {
  width: 100%;
}

.fv-image__smartphone {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
}
@media screen and (min-width: 900px) {
  .fv-image__smartphone {
    width: 210px;
  }
}
@media screen and (min-width: 900px) {
  .fv-image__smartphone {
    bottom: 60px;
    width: 250px;
  }
}
.fv-image__smartphone img {
  width: 100%;
}

.smartphone__screen {
  position: absolute;
  left: 50%;
  top: 228px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 12.8px;
  background-color: #fff;
}
@media screen and (min-width: 900px) {
  .smartphone__screen {
    top: 188px;
  }
}

.sp-screen__heading {
  display: block;
  width: 100%;
  padding: 6.4px 9.6px;
  text-align: center;
  border-radius: 12.8px 12.8px 0px 0px;
  color: #fff;
  font-size: 12.8px;
  font-weight: 700;
  background: linear-gradient(265deg, #ac3790 -3.52%, #d65a5c 44.94%, #f4c06d 92.38%);
}
@media screen and (min-width: 900px) {
  .sp-screen__heading {
    padding: 8px 12px;
    font-size: 16px;
  }
}

.sp-screen__box {
  text-align: center;
  padding: 0 13px 19.2px 13px;
}
@media screen and (min-width: 900px) {
  .sp-screen__box {
    padding: 0 12px 24px 12px;
  }
}

.text-period {
  margin-top: 12px;
  display: inline-block;
  font-size: 12px;
  border-bottom: 2.4px solid #ce2073;
}
@media screen and (min-width: 900px) {
  .text-period {
    margin-top: 16px;
    font-size: 14px;
  }
}

.text-date {
  margin-top: 3.2px;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .text-date {
    margin-top: 8px;
    font-size: 16px;
  }
}

.fv-image__food {
  position: absolute;
  bottom: 0;
  left: calc(50% - 168px);
  width: 90px;
}
@media screen and (min-width: 600px) {
  .fv-image__food {
    left: calc(50% - 235px);
    width: 120px;
  }
}
@media screen and (min-width: 900px) {
  .fv-image__food {
    bottom: 44px;
    left: calc(50% - 426px);
    width: 215px;
  }
}
.fv-image__food img {
  width: 100%;
}

.cat-black1 {
  position: absolute;
  bottom: 57px;
  right: calc(50% - 167px);
  width: 62px;
}
@media screen and (min-width: 600px) {
  .cat-black1 {
    right: calc(50% - 230px);
    bottom: 66px;
    width: 105px;
  }
}
@media screen and (min-width: 900px) {
  .cat-black1 {
    right: calc(50% - 361px);
    bottom: 106px;
    width: 170px;
  }
}
.cat-black1 img {
  width: 100%;
}

.cat-tora1 {
  position: absolute;
  bottom: 0;
  right: calc(50% - 158px);
  width: 98px;
}
@media screen and (min-width: 600px) {
  .cat-tora1 {
    right: calc(50% - 224px);
    bottom: -8px;
    width: 140px;
  }
}
@media screen and (min-width: 900px) {
  .cat-tora1 {
    right: calc(50% - 424px);
    bottom: 2px;
    width: 233px;
  }
}
.cat-tora1 img {
  width: 100%;
}

.about {
  margin-top: 32px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .about {
    margin-top: 36px;
  }
}

@media screen and (min-width: 900px) {
  .about-bg__oblique {
    position: absolute;
    top: -20px;
    left: calc(50% - 556px);
    width: 250px;
  }
}
@media screen and (min-width: 1200px) {
  .about-bg__oblique {
    left: calc(50% - 776px);
  }
}
.about-bg__oblique img {
  width: 100%;
}

@media screen and (min-width: 900px) {
  .about-bg__wave1 {
    position: absolute;
    width: 807px;
    height: 12px;
    top: 601px;
    left: calc(50% + 362px);
  }
}
@media screen and (min-width: 1200px) {
  .about-bg__wave1 {
    left: calc(50% + 515px);
  }
}
.about-bg__wave1 img {
  width: 100%;
}

@media screen and (min-width: 900px) {
  .about-bg__wave2 {
    position: absolute;
    width: 807px;
    height: 12px;
    top: 634px;
    left: calc(50% + 294px);
  }
}
@media screen and (min-width: 1200px) {
  .about-bg__wave2 {
    left: calc(50% + 446px);
  }
}
.about-bg__wave2 img {
  width: 100%;
}

.about__bg-paw1 {
  position: absolute;
  top: -10px;
  right: calc(50% - 187px);
  width: 54px;
}
@media screen and (min-width: 600px) {
  .about__bg-paw1 {
    top: -28px;
    right: calc(50% - 341px);
    width: 85px;
  }
}
@media screen and (min-width: 900px) {
  .about__bg-paw1 {
    right: calc(50% - 458px);
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-paw1 {
    top: -83px;
    right: calc(50% - 590px);
    width: 100px;
  }
}
.about__bg-paw1 img {
  width: 100%;
}

.about__bg-slope {
  position: absolute;
  bottom: -5px;
  left: -58px;
  width: 222px;
  height: 433px;
  z-index: -1;
}
@media screen and (min-width: 600px) {
  .about__bg-slope {
    bottom: 214px;
    left: -90px;
    width: 338px;
  }
}
@media screen and (min-width: 900px) {
  .about__bg-slope {
    bottom: 446px;
    left: -103px;
    width: 382px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-slope {
    bottom: 536px;
    width: 427px;
  }
}
.about__bg-slope img {
  width: 100%;
}

.about__bg-photo-l {
  position: absolute;
  top: 395px;
  left: calc(50% - 328px);
  width: 200px;
  height: 200px;
  border-radius: 24px;
}
@media screen and (min-width: 900px) {
  .about__bg-photo-l {
    top: 72px;
    left: calc(50% - 892px);
    width: 480px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-photo-l {
    left: calc(50% - 1094px);
  }
}
.about__bg-photo-l img {
  width: 100%;
}

.about__bg-photo-r {
  position: absolute;
  top: 273px;
  right: calc(50% - 328px);
  width: 200px;
  height: 200px;
  border-radius: 24px;
}
@media screen and (min-width: 900px) {
  .about__bg-photo-r {
    top: 72px;
    right: calc(50% - 892px);
    width: 480px;
    height: 480px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-photo-r {
    right: calc(50% - 1040px);
  }
}
.about__bg-photo-r img {
  width: 100%;
}

.about__bg-goods1 {
  position: absolute;
  bottom: 213px;
  right: calc(50% - 167px);
  width: 48px;
}
@media screen and (min-width: 600px) {
  .about__bg-goods1 {
    bottom: 286px;
    right: calc(50% - 341px);
    width: 72px;
  }
}
@media screen and (min-width: 900px) {
  .about__bg-goods1 {
    right: calc(50% - 460px);
    bottom: 588px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-goods1 {
    right: calc(50% - 606px);
    bottom: 588px;
    width: 100px;
  }
}
.about__bg-goods1 img {
  width: 100%;
}

.about__bg-goods2 {
  position: absolute;
  bottom: 155px;
  right: calc(50% - 129px);
  width: 133px;
}
@media screen and (min-width: 600px) {
  .about__bg-goods2 {
    bottom: 199px;
    right: calc(50% - 283px);
    width: 200px;
  }
}
@media screen and (min-width: 900px) {
  .about__bg-goods2 {
    bottom: 292px;
    right: calc(50% - 481px);
    width: 272px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-goods2 {
    bottom: 380px;
    right: calc(50% - 682px);
    width: 308px;
  }
}
.about__bg-goods2 img {
  width: 100%;
}

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

.about__contents {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 335px;
  padding: 40px 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 24px;
  background: #fff;
}
@media screen and (min-width: 600px) {
  .about__contents {
    width: 500px;
    padding: 40px 90px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 900px) {
  .about__contents {
    width: 700px;
    padding: 40px;
    border-radius: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .about__contents {
    width: 100%;
    padding: 40px 12.2844827586%;
    border-radius: 40px;
  }
}
.about__contents::after {
  content: "";
  width: 100px;
  height: 36px;
  background: url(../img/arrow.webp) no-repeat center center/contain;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .about__contents::after {
    width: 150px;
    height: 50px;
  }
}

.about__heading-pic-l {
  position: absolute;
  top: 32px;
  left: calc(50% - 135px);
  width: 88px;
}
@media screen and (min-width: 600px) {
  .about__heading-pic-l {
    top: 25px;
    left: calc(50% - 180px);
  }
}
@media screen and (min-width: 900px) {
  .about__heading-pic-l {
    top: 50px;
    left: calc(50% - 340px);
    width: 147px;
  }
}
.about__heading-pic-l img {
  width: 100%;
}

.about__heading-pic-r {
  position: absolute;
  top: 31px;
  right: calc(50% - 147px);
  width: 88px;
}
@media screen and (min-width: 600px) {
  .about__heading-pic-r {
    top: 25px;
    right: calc(50% - 180px);
  }
}
@media screen and (min-width: 900px) {
  .about__heading-pic-r {
    top: 50px;
    right: calc(50% - 340px);
    width: 147px;
  }
}
.about__heading-pic-r img {
  width: 100%;
}

.about__text-box {
  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;
  gap: 19px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .about__text-box {
    margin-top: 32px;
    gap: 29px;
  }
}

.about-sub-heading__top {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .about-sub-heading__top {
    font-size: 16px;
  }
}

.about-text {
  font-size: 12px;
}
@media screen and (min-width: 600px) {
  .about-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .about-text {
    font-size: 16px;
  }
}
.about-text .sns-tag {
  font-weight: 700;
}

.about-sub-heading__bottom {
  font-weight: 700;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-block: 12px 6px;
  border-bottom: 2px dashed #9ed0e0;
}
@media screen and (min-width: 900px) {
  .about-sub-heading__bottom {
    font-size: 20px;
    padding: 10px 0;
  }
}

.about__bg-onomichi {
  display: block;
  margin-inline: auto;
  margin-top: 138px;
  width: 355px;
}
@media screen and (min-width: 600px) {
  .about__bg-onomichi {
    margin-top: 165px;
    width: 500px;
  }
}
@media screen and (min-width: 900px) {
  .about__bg-onomichi {
    margin-top: 165px;
    width: 700px;
  }
}
@media screen and (min-width: 1200px) {
  .about__bg-onomichi {
    margin-top: 161px;
    width: 892px;
  }
}
.about__bg-onomichi img {
  width: 100%;
}

.about__slider {
  position: relative;
  z-index: 1;
}

.about-slide {
  overflow: hidden;
}

.how-to-enter {
  margin-top: 65px;
  position: relative;
}
@media screen and (min-width: 600px) {
  .how-to-enter {
    margin-top: 80px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter {
    margin-top: 90px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter {
    margin-top: 118px;
  }
}

.how-to-enter__image-map {
  position: absolute;
  width: 138px;
  top: 0;
  left: calc(50% - 189px);
  z-index: -1;
}
@media screen and (min-width: 600px) {
  .how-to-enter__image-map {
    width: 280px;
    top: -66px;
    left: calc(50% - 320px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__image-map {
    width: 330px;
    top: -66px;
    left: calc(50% - 570px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__image-map {
    width: 422px;
    top: -60px;
    left: calc(50% - 722px);
  }
}
.how-to-enter__image-map img {
  width: 100%;
}

.cat-tora2 {
  position: absolute;
  width: 105px;
  top: 0;
  right: calc(50% - 163px);
}
@media screen and (min-width: 600px) {
  .cat-tora2 {
    width: 188px;
    top: -29px;
    right: calc(50% - 325px);
  }
}
@media screen and (min-width: 900px) {
  .cat-tora2 {
    width: 208px;
    top: -29px;
    right: calc(50% - 445px);
  }
}
@media screen and (min-width: 1200px) {
  .cat-tora2 {
    width: 238px;
    top: -25px;
    right: calc(50% - 525px);
  }
}

.cat-black2 {
  position: absolute;
  width: 94px;
  top: 6px;
  right: calc(50% - 218px);
}
@media screen and (min-width: 600px) {
  .cat-black2 {
    width: 164px;
    top: -22px;
    right: calc(50% - 414px);
  }
}
@media screen and (min-width: 900px) {
  .cat-black2 {
    width: 180px;
    top: -22px;
    right: calc(50% - 545px);
  }
}
@media screen and (min-width: 1200px) {
  .cat-black2 {
    width: 214px;
    top: -16px;
    right: calc(50% - 651px);
  }
}

.how-to-enter__image-paw3 {
  position: absolute;
  width: 55px;
  top: 76px;
  right: calc(50% - 168px);
  z-index: -1;
}
@media screen and (min-width: 600px) {
  .how-to-enter__image-paw3 {
    width: 70px;
    top: 144px;
    right: calc(50% - 300px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__image-paw3 {
    width: 85px;
    right: calc(50% - 500px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__image-paw3 {
    width: 100px;
    top: 148px;
    right: calc(50% - 721px);
  }
}
.how-to-enter__image-paw3 img {
  width: 100%;
}

.how-to-enter__image-paw2 {
  position: absolute;
  width: 55px;
  top: 549px;
  left: calc(50% - 168px);
}
@media screen and (min-width: 600px) {
  .how-to-enter__image-paw2 {
    width: 72px;
    top: 576px;
    left: calc(50% - 300px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__image-paw2 {
    width: 85px;
    top: 480px;
    left: calc(50% - 500px);
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__image-paw2 {
    width: 100px;
    top: 580px;
    left: calc(50% - 722px);
  }
}
.how-to-enter__image-paw2 img {
  width: 100%;
}

.how-to-enter__image-sp-paw4 {
  position: absolute;
  width: 55px;
  top: 881px;
  right: calc(50% - 167px);
}
@media screen and (min-width: 600px) {
  .how-to-enter__image-sp-paw4 {
    width: 70px;
    top: 981px;
    right: calc(50% - 300px);
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__image-sp-paw4 {
    display: none;
  }
}

.how-to-enter__inner {
  max-width: 375px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__inner {
    max-width: 900px;
    padding-inline: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__inner {
    max-width: 1512px;
    padding-inline: 36px;
  }
}

.how-to-enter__steps {
  margin-top: 30px;
  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;
}
@media screen and (min-width: 900px) {
  .how-to-enter__steps {
    margin-block: 25px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 45px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__steps {
    margin-block: 40px;
    gap: 33px;
  }
}

.how-to-enter__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  margin-top: 33px;
}
@media screen and (min-width: 900px) {
  .how-to-enter__step {
    margin-bottom: 8px;
    width: 240px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__step {
    margin-bottom: 8px;
    width: 320px;
  }
}
.how-to-enter__step:nth-child(1) {
  margin-top: 0;
}
.how-to-enter__step:nth-child(1)::after, .how-to-enter__step:nth-child(2)::after {
  content: "";
  position: absolute;
  background: url(../img/sp/sp-step-line.webp) no-repeat center center/contain;
  width: 7px;
  height: 33px;
  left: 50%;
  bottom: -48px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}
@media screen and (min-width: 900px) {
  .how-to-enter__step:nth-child(1)::after, .how-to-enter__step:nth-child(2)::after {
    background: url(../img/step-line.webp) no-repeat center center/contain;
    width: 90px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__step:nth-child(1)::after, .how-to-enter__step:nth-child(2)::after {
    width: 113px;
  }
}
.how-to-enter__step:nth-child(1)::after {
  content: "";
}
@media screen and (min-width: 900px) {
  .how-to-enter__step:nth-child(1)::after {
    top: 150px;
    left: 257px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__step:nth-child(1)::after {
    top: 199px;
    left: 313px;
  }
}
@media screen and (min-width: 900px) {
  .how-to-enter__step:nth-child(2) {
    margin-top: 45px;
  }
  .how-to-enter__step:nth-child(2)::after {
    content: "";
    top: 105px;
    left: 265px;
  }
}
@media screen and (min-width: 1200px) {
  .how-to-enter__step:nth-child(2) {
    margin-top: 67px;
  }
  .how-to-enter__step:nth-child(2)::after {
    content: "";
    top: 132px;
    left: 320px;
  }
}

.step__image {
  width: 196px;
  margin-inline: auto;
}
@media screen and (min-width: 1200px) {
  .step__image {
    width: 280px;
  }
}
.step__image img {
  width: 100%;
}

.step__heading {
  margin-top: 16px;
  font-weight: 700;
  font-size: 16px;
}
@media screen and (min-width: 1200px) {
  .step__heading {
    margin-top: 24px;
    font-size: 20px;
  }
}

.step__text {
  margin-top: 15px;
  font-size: 12px;
}
@media screen and (min-width: 1200px) {
  .step__text {
    margin-top: 16px;
    font-size: 16px;
  }
}
.step__text .sns-tag {
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 1200px) {
  .step__text .sns-tag {
    font-size: 16px;
  }
}

.step__sns-follow {
  margin-top: 16px;
}
@media screen and (min-width: 1200px) {
  .step__sns-follow {
    margin-top: 18px;
  }
}

.follow-link-insta {
  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;
  padding: 6px;
  background: #fff;
  width: 226px;
  margin-inline: auto;
  border: 2px solid transparent;
}
@media screen and (min-width: 1200px) {
  .follow-link-insta {
    width: 254px;
    padding: 8px;
  }
}
.follow-link-insta:hover {
  border: 2px solid #9ed0e0;
}
.follow-link-insta img {
  width: 20px;
}
@media screen and (min-width: 1200px) {
  .follow-link-insta img {
    width: 24px;
  }
}

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

.prizes {
  margin-top: 13px;
}
@media screen and (min-width: 600px) {
  .prizes {
    margin-top: 55px;
  }
}
@media screen and (min-width: 900px) {
  .prizes {
    margin-top: 95px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes {
    margin-top: 129px;
  }
}

.prizes__bg-top {
  position: relative;
}

@media screen and (min-width: 900px) {
  .prizes-bg__triangle-l {
    position: absolute;
    top: 37px;
    left: calc(50% - 413px);
    width: 260px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-bg__triangle-l {
    position: absolute;
    top: 24px;
    left: calc(50% - 512px);
    width: 315px;
    height: 86px;
  }
  .prizes-bg__triangle-l img {
    width: 100%;
  }
}

@media screen and (min-width: 900px) {
  .prizes-bg__triangle-r {
    position: absolute;
    top: 37px;
    right: calc(50% - 413px);
    width: 260px;
  }
}
@media screen and (min-width: 900px) and (min-width: 1200px) {
  .prizes-bg__triangle-r {
    position: absolute;
    top: 24px;
    right: calc(50% - 512px);
    width: 315px;
    height: 86px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-bg__triangle-r img {
    width: 100%;
  }
}

.prizes__heading {
  position: relative;
  top: 45px;
  z-index: 3;
}
@media screen and (min-width: 900px) {
  .prizes__heading {
    top: 26px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__heading {
    top: 25px;
  }
}

.prizes__contents {
  position: relative;
  border-radius: 24px;
  background-color: #fff;
  width: 375px;
  padding: 60px 20px 34px 20px;
  margin-inline: auto;
}
@media screen and (min-width: 600px) {
  .prizes__contents {
    width: 500px;
    padding-inline: 30px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__contents {
    width: 830px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__contents {
    width: 1024px;
    padding: 60px 55px 16px 55px;
  }
}
.prizes__contents::before {
  content: "";
  position: absolute;
  top: -82px;
  left: 50%;
  width: 237.6px;
  height: 83px;
  background: url(../img/sp/sp-heading_bg-halfcircle.webp) no-repeat center center/cover;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .prizes__contents::before {
    background: url(../img/heading_bg-halfcircle.webp) no-repeat center center/cover;
    top: -148px;
    width: 366px;
    height: 149px;
  }
}

.prizes-contents__inner {
  position: relative;
}
@media screen and (min-width: 900px) {
  .prizes-contents__inner {
    top: -36px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-contents__inner {
    top: -35px;
  }
}

.prizes__text {
  margin-top: -1px;
  text-align: center;
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .prizes__text {
    margin-top: 39px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__text {
    font-size: 16px;
  }
}

.prizes__cards {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 39px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 600px) {
  .prizes__cards {
    gap: 55px 0;
    margin-top: 55px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__cards {
    margin-top: 77px;
    gap: 60px 0;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__cards {
    margin-top: 82px;
    gap: 80px 0;
  }
}

.prizes__card {
  position: relative;
  width: 160px;
  height: 196px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.prizes__card:nth-of-type(5) {
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-of-type(5) {
    margin-inline: 0;
    margin-top: 0;
  }
}
@media screen and (min-width: 600px) {
  .prizes__card {
    width: 205px;
    height: 260px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card {
    width: 365px;
    height: 410px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__card {
    width: 442px;
    height: 460px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-of-type(3), .prizes__card:nth-of-type(4), .prizes__card:nth-of-type(5) {
    width: 235px;
    height: 270px;
  }
  .prizes__card:nth-of-type(3) .prizes__number-box, .prizes__card:nth-of-type(4) .prizes__number-box, .prizes__card:nth-of-type(5) .prizes__number-box {
    width: 65px;
    height: 65px;
    top: -32px;
  }
  .prizes__card:nth-of-type(3) .prizes-number__benefit, .prizes__card:nth-of-type(4) .prizes-number__benefit, .prizes__card:nth-of-type(5) .prizes-number__benefit {
    font-size: 12px;
  }
  .prizes__card:nth-of-type(3) .prizes-number__number, .prizes__card:nth-of-type(4) .prizes-number__number, .prizes__card:nth-of-type(5) .prizes-number__number {
    font-size: 30px;
  }
  .prizes__card:nth-of-type(3) .prizes-card__box, .prizes__card:nth-of-type(4) .prizes-card__box, .prizes__card:nth-of-type(5) .prizes-card__box {
    border-radius: 16px;
  }
  .prizes__card:nth-of-type(3) .prizes-card__image, .prizes__card:nth-of-type(4) .prizes-card__image, .prizes__card:nth-of-type(5) .prizes-card__image {
    height: 185px;
  }
  .prizes__card:nth-of-type(3) .prizes-card__heading, .prizes__card:nth-of-type(4) .prizes-card__heading, .prizes__card:nth-of-type(5) .prizes-card__heading {
    height: 73px;
    font-size: 14px;
  }
  .prizes__card:nth-of-type(3) .prizes-card__button, .prizes__card:nth-of-type(4) .prizes-card__button, .prizes__card:nth-of-type(5) .prizes-card__button {
    border-radius: 16px;
  }
  .prizes__card:nth-of-type(3) .prizes-card__expansion, .prizes__card:nth-of-type(4) .prizes-card__expansion, .prizes__card:nth-of-type(5) .prizes-card__expansion {
    width: 50px;
    height: 50px;
  }
  .prizes__card:nth-of-type(3) .expansion-icon, .prizes__card:nth-of-type(4) .expansion-icon, .prizes__card:nth-of-type(5) .expansion-icon {
    bottom: 4px;
    right: 8px;
  }
  .prizes__card:nth-of-type(3) .expansion-icon svg, .prizes__card:nth-of-type(4) .expansion-icon svg, .prizes__card:nth-of-type(5) .expansion-icon svg {
    width: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__card:nth-of-type(3), .prizes__card:nth-of-type(4), .prizes__card:nth-of-type(5) {
    width: 280px;
    height: 320px;
  }
  .prizes__card:nth-of-type(3) .prizes__number-box, .prizes__card:nth-of-type(4) .prizes__number-box, .prizes__card:nth-of-type(5) .prizes__number-box {
    width: 76px;
    height: 76px;
    top: -37px;
  }
  .prizes__card:nth-of-type(3) .prizes-number__benefit, .prizes__card:nth-of-type(4) .prizes-number__benefit, .prizes__card:nth-of-type(5) .prizes-number__benefit {
    font-size: 12.8px;
  }
  .prizes__card:nth-of-type(3) .prizes-number__number, .prizes__card:nth-of-type(4) .prizes-number__number, .prizes__card:nth-of-type(5) .prizes-number__number {
    font-size: 38.4px;
  }
  .prizes__card:nth-of-type(3) .prizes-card__image, .prizes__card:nth-of-type(4) .prizes-card__image, .prizes__card:nth-of-type(5) .prizes-card__image {
    height: 240px;
  }
  .prizes__card:nth-of-type(3) .prizes-card__heading, .prizes__card:nth-of-type(4) .prizes-card__heading, .prizes__card:nth-of-type(5) .prizes-card__heading {
    height: 79px;
    font-size: 16px;
  }
  .prizes__card:nth-of-type(3) .prizes-card__expansion, .prizes__card:nth-of-type(4) .prizes-card__expansion, .prizes__card:nth-of-type(5) .prizes-card__expansion {
    width: 64px;
    height: 64px;
  }
  .prizes__card:nth-of-type(3) .expansion-icon, .prizes__card:nth-of-type(4) .expansion-icon, .prizes__card:nth-of-type(5) .expansion-icon {
    bottom: 4px;
    right: 9px;
  }
  .prizes__card:nth-of-type(3) .expansion-icon svg, .prizes__card:nth-of-type(4) .expansion-icon svg, .prizes__card:nth-of-type(5) .expansion-icon svg {
    width: 20px;
  }
}
.prizes__card:hover .prizes-card__image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.prizes__number-box {
  background: url(../img/prizes-num-bg.webp) no-repeat center center/contain;
  position: absolute;
  width: 46px;
  height: 46px;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .prizes__number-box {
    width: 59px;
    height: 65px;
    top: -32px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__number-box {
    width: 76px;
    height: 82px;
    top: -41px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__number-box {
    width: 96px;
    height: 102px;
    top: -50px;
  }
}

.prizes-number__benefit {
  font-size: 7.68px;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .prizes-number__benefit {
    font-size: 10px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-number__benefit {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-number__benefit {
    font-size: 16px;
  }
}

.prizes-number__number {
  font-family: "Josefin Sans", serif;
  font-size: 23.04px;
  font-weight: 700;
  line-height: 1;
  margin-top: 1px;
}
@media screen and (min-width: 600px) {
  .prizes-number__number {
    font-size: 25px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-number__number {
    font-size: 30px;
    margin-top: 4px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-number__number {
    font-size: 48px;
  }
}

.prizes-card__box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
}
@media screen and (min-width: 900px) {
  .prizes-card__box {
    border-radius: 24px;
  }
}

.prizes-card__image {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 140px;
}
@media screen and (min-width: 600px) {
  .prizes-card__image {
    height: 190px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card__image {
    height: 290px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card__image {
    height: 340px;
  }
}
.prizes-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.prizes-card__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  height: 56px;
  font-size: 12px;
  font-weight: 700;
  pointer-events: none;
}
@media screen and (min-width: 600px) {
  .prizes-card__heading {
    height: 70px;
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card__heading {
    height: 120px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card__heading {
    height: 120px;
    font-size: 20px;
  }
}

.prizes-card__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid transparent;
  border-radius: 8px;
}
.prizes-card__button:hover {
  border: 4px solid #9ed0e0;
}
@media screen and (min-width: 900px) {
  .prizes-card__button:hover {
    border-radius: 24px;
  }
}
.prizes-card__button:hover .prizes-card__expansion {
  background-color: #9ed0e0;
}

.prizes-card__expansion {
  position: absolute;
  background-color: #67b0c7;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  bottom: -5px;
  right: -5px;
  width: 39px;
  height: 39px;
}
@media screen and (min-width: 600px) {
  .prizes-card__expansion {
    width: 43px;
    height: 43px;
  }
}
@media screen and (min-width: 900px) {
  .prizes-card__expansion {
    width: 80px;
    height: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes-card__expansion {
    bottom: -4px;
    right: -4px;
    width: 100px;
    height: 100px;
  }
}

.expansion-icon {
  position: absolute;
  bottom: 1px;
  right: 6px;
}
@media screen and (min-width: 900px) {
  .expansion-icon {
    bottom: 11px;
    right: 14px;
  }
}
.expansion-icon svg {
  width: 12px;
}
@media screen and (min-width: 600px) {
  .expansion-icon svg {
    width: 14px;
  }
}
@media screen and (min-width: 900px) {
  .expansion-icon svg {
    width: 23px;
  }
}
@media screen and (min-width: 1200px) {
  .expansion-icon svg {
    width: 32px;
  }
}

.prizes__dialogs {
  position: fixed;
  margin: auto;
  max-width: calc(100% - 30px);
  max-height: calc(100% - 40px);
  overflow-y: auto;
  overscroll-behavior-y: none;
}
.prizes__dialogs ::-ms-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
.prizes__dialogs ::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

.prizes__modal {
  width: 336px;
  min-height: 480px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: none;
  border-radius: 24px;
}
@media screen and (min-width: 900px) {
  .prizes__modal {
    width: 480px;
    min-height: 650px;
  }
}

.prizes-modal__image {
  height: 210px;
}
@media screen and (min-width: 900px) {
  .prizes-modal__image {
    height: 300px;
  }
}
.prizes-modal__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.prizes-modal__box {
  padding: 39px 20px 20px 20px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .prizes-modal__box {
    padding: 32px 35px 20px 35px;
  }
}

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

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

.modal__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  margin-inline: auto;
  margin-top: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px 24px 8px 24px;
  border: 2px solid #4a3636;
  border-radius: 40px;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 900px) {
  .modal__close {
    margin-top: 24px;
  }
}
.modal__close:hover {
  border: 2px solid #9ed0e0;
}

.prizes__bg-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -45px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1200px) {
  .prizes__bg-bottom {
    margin-top: 2px;
  }
}
.prizes__bg-bottom img {
  min-width: 580px;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .prizes__bg-bottom img {
    min-width: 912px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__bg-bottom img {
    min-width: 1212px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__bg-bottom img {
    min-width: 1512px;
  }
}

.spots {
  position: relative;
  padding-top: 46px;
  padding-bottom: 46px;
  margin-top: -46px;
}
@media screen and (min-width: 900px) {
  .spots {
    padding-top: 0;
    top: -84px;
  }
}
@media screen and (min-width: 1200px) {
  .spots {
    padding-top: 120px;
    padding-bottom: 120px;
    margin-top: -120px;
    top: 0;
  }
}
.spots::before, .spots::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 46px;
  background-color: transparent;
  background-repeat: repeat-x;
  background-position: left -3px center;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .spots::before, .spots::after {
    height: 120px;
    background-position: left center;
  }
}
.spots::before {
  content: "";
  top: 1px;
  background-image: url(../img/top-wave.svg), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
}
@media screen and (min-width: 900px) {
  .spots::before {
    background-image: url(../img/top-wave.svg), linear-gradient(to bottom, transparent 50px, #67b0c7 50px);
  }
}
.spots::after {
  content: "";
  bottom: 1px;
  background-image: url(../img/bottom-wave.svg), linear-gradient(to top, transparent 13px, #67b0c7 13px);
  z-index: -1;
}
@media screen and (min-width: 900px) {
  .spots::after {
    bottom: -60px;
    background-image: url(../img/bottom-wave.svg), linear-gradient(to top, transparent 50px, #67b0c7 50px);
  }
}
@media screen and (min-width: 1200px) {
  .spots::after {
    bottom: 0px;
  }
}

.spots__bg {
  display: none;
}
@media screen and (min-width: 900px) {
  .spots__bg {
    display: block;
    position: relative;
    width: 50px;
    top: 610px;
    left: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__bg {
    width: 100px;
    top: 497px;
    left: 36px;
  }
  .spots__bg img {
    position: absolute;
    width: 100%;
  }
}

.spots__outer {
  background-color: #67b0c7;
}

@media screen and (min-width: 900px) {
  .spots__top-contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 23px;
       -moz-column-gap: 23px;
            column-gap: 23px;
    padding-left: calc(50% - 512px);
    margin-left: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__top-contents {
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    margin-left: 0;
  }
}

.spots__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  width: 260px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .spots__heading {
    -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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.spots__heading-icon {
  width: 28px;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .spots__heading-icon {
    width: 46px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__heading-icon {
    width: 56px;
  }
}
.spots__heading-icon img {
  width: 100%;
  vertical-align: top;
  margin-top: 2px;
}
@media screen and (min-width: 900px) {
  .spots__heading-icon img {
    margin-top: 0;
  }
}

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

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

.spots-slide {
  height: 402.15px;
}
@media screen and (min-width: 600px) {
  .spots-slide {
    height: 480px;
  }
}
@media screen and (min-width: 900px) {
  .spots-slide {
    height: 542px;
  }
}

.spots-card {
  width: auto;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: none;
  border-radius: 12px;
}
@media screen and (min-width: 900px) {
  .spots-card {
    border-radius: 24px;
  }
}

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

.spots-card__texts {
  margin-top: 16px;
  padding: 0 24px 24px 24px;
}
@media screen and (min-width: 900px) {
  .spots-card__texts {
    margin-top: 24px;
    padding: 0 32px 24px 32px;
  }
}

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

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

@media screen and (min-width: 900px) {
  .spots-slider__arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 780px;
    height: 70px;
    position: absolute;
    left: 50%;
    bottom: 200px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 1;
  }
}
@media screen and (min-width: 1200px) {
  .spots-slider__arrows {
    width: 964px;
    height: 80px;
    bottom: 283px;
  }
}

@media screen and (min-width: 900px) {
  .spots__prev,
  .spots__next {
    width: 70px;
    height: 70px;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .spots__prev:hover,
  .spots__next:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media screen and (min-width: 1200px) {
  .spots__prev,
  .spots__next {
    width: 80px;
    height: 80px;
  }
}
.spots__prev::after,
.spots__next::after {
  visibility: hidden;
}

@media screen and (min-width: 900px) {
  .spots__prev {
    background: url(../img/spots__prev.webp) no-repeat center center/contain;
  }
}

@media screen and (min-width: 900px) {
  .spots__next {
    background: url(../img/spots__next.webp) no-repeat center center/contain;
  }
}

.spots__bottom-contents {
  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;
  margin-inline: auto;
  width: 337px;
}
@media screen and (min-width: 900px) {
  .spots__bottom-contents {
    width: 450px;
  }
}
@media screen and (min-width: 1200px) {
  .spots__bottom-contents {
    -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;
    width: 1024px;
    margin-inline: auto;
    margin-top: 64px;
  }
}

@media screen and (min-width: 900px) {
  .spots-bottom-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 450px;
    margin-top: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .spots-bottom-content {
    margin-top: 0;
  }
}

.spots__bottom-logo {
  width: 255px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .spots__bottom-logo {
    width: 355px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .spots__bottom-logo {
    width: 495px;
    margin-left: 0;
  }
}
.spots__bottom-logo img {
  width: 100%;
}

.spots__bottom-text {
  text-align: center;
  color: #fff;
  font-size: 11.444px;
  margin-top: 15px;
}
@media screen and (min-width: 900px) {
  .spots__bottom-text {
    text-align: center;
    font-size: 14px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .spots__bottom-text {
    text-align: right;
    font-size: 16px;
  }
}

.qa {
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .qa {
    margin-top: 80px;
  }
}
@media screen and (min-width: 900px) {
  .qa {
    margin-top: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .qa {
    margin-top: 122px;
  }
}

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

.qa-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #fff;
}

.qa-box__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 12px 10px 13px;
  width: 100%;
  gap: 14px;
}
@media screen and (min-width: 900px) {
  .qa-box__heading {
    padding: 21px 20px 19px 22px;
    gap: 16px;
  }
}

.qa-box__q-q {
  color: #9ed0e0;
  font-family: "Josefin Sans", serif;
  font-size: 24px;
  line-height: 1.25;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .qa-box__q-q {
    font-size: 28px;
  }
}
@media screen and (min-width: 900px) {
  .qa-box__q-q {
    font-size: 33px;
  }
}

.qa-box__q-text {
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 600px) {
  .qa-box__q-text {
    font-size: 16px;
    width: 410px;
  }
}
@media screen and (min-width: 900px) {
  .qa-box__q-text {
    font-size: 20px;
    width: 675px;
  }
}
@media screen and (min-width: 1200px) {
  .qa-box__q-text {
    font-size: 20px;
    width: 880px;
  }
}

.qa-box__q-toggle {
  position: relative;
  display: block;
  background-color: #9ed0e0;
  width: 29px;
  height: 27px;
  border-radius: 50%;
}
@media screen and (min-width: 600px) {
  .qa-box__q-toggle {
    width: 28px;
    height: 27px;
  }
}
@media screen and (min-width: 900px) {
  .qa-box__q-toggle {
    width: 48px;
    height: 48px;
  }
}
.qa-box__q-toggle::before, .qa-box__q-toggle::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  border-radius: 50px;
  background: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 900px) {
  .qa-box__q-toggle::before, .qa-box__q-toggle::after {
    width: 20px;
    height: 3px;
  }
}
.qa-box__q-toggle::before {
  content: "";
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.is-open .qa-box__q-toggle::before {
  content: "";
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

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

.qa-box__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 900px) {
  .qa-box__a {
    gap: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .qa-box__a {
    gap: 17px;
  }
}

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

.qa-box__a-text {
  width: 270px;
}
@media screen and (min-width: 600px) {
  .qa-box__a-text {
    font-size: 15px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media screen and (min-width: 900px) {
  .qa-box__a-text {
    font-size: 16px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.qa-box__a-text .sns-tag {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.entry-requirements {
  margin-top: 32px;
}
@media screen and (min-width: 600px) {
  .entry-requirements {
    margin-top: 80px;
  }
}
@media screen and (min-width: 900px) {
  .entry-requirements {
    margin-top: 120px;
  }
}

.entry-requirements__contents {
  padding: 15px;
  border: 8px solid #fff;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 34px;
}
@media screen and (min-width: 600px) {
  .entry-requirements__contents {
    padding: 20px 35px 30px 35px;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 900px) {
  .entry-requirements__contents {
    padding: 33px 48px 35px 48px;
    margin-bottom: 118px;
  }
}

.entry-requirements__table {
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .entry-requirements__table {
    margin-top: 15px;
  }
}
@media screen and (min-width: 900px) {
  .entry-requirements__table {
    margin-top: 28px;
  }
}

.entry-requirements-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.entry-requirements-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ccc;
  margin-top: 12px;
}
@media screen and (min-width: 900px) {
  .entry-requirements-table__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    padding-bottom: 10px;
    margin-top: 13px;
  }
}

.hidden-line {
  border-bottom: none;
}

.entry-requirements-table__heading {
  position: relative;
  width: 200px;
  font-weight: 700;
  padding-left: 16px;
}
@media screen and (min-width: 900px) {
  .entry-requirements-table__heading {
    width: 240px;
    font-size: 16px;
    padding-left: 32px;
  }
}
.entry-requirements-table__heading::before {
  content: "";
  position: absolute;
  background-color: #9ed0e0;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 0;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 900px) {
  .entry-requirements-table__heading::before {
    top: 11px;
    left: 16px;
  }
}

.entry-requirements-table__data {
  width: 100%;
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .entry-requirements-table__data {
    width: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    font-size: 16px;
  }
}
.entry-requirements-table__data ul li {
  padding-left: 19px;
  position: relative;
  line-height: 1.587;
}
@media screen and (min-width: 1200px) {
  .entry-requirements-table__data ul li {
    padding-left: 24px;
    line-height: 1.625;
  }
}
.entry-requirements-table__data ul li::before {
  content: "";
  position: absolute;
  background-color: #4a3636;
  width: 3px;
  height: 3px;
  top: 10px;
  left: 8px;
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .entry-requirements-table__data ul li::before {
    width: 4px;
    height: 4px;
    top: 13px;
    left: 10px;
  }
}

.entry-requirements__bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.entry-requirements__bg img {
  width: 100%;
}

.contact {
  padding-block: 40px 46px;
  background: #fff;
}
@media screen and (min-width: 900px) {
  .contact {
    padding-block: 90px;
  }
}
@media screen and (min-width: 1200px) {
  .contact {
    padding-block: 120px;
  }
}

@media screen and (min-width: 900px) {
  .contact__inner {
    max-width: 820px;
    margin-inline: auto;
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .contact__inner {
    max-width: 888px;
    margin-inline: auto;
    padding-inline: 20px;
  }
}

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

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

.form__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 600px;
}
@media screen and (min-width: 900px) {
  .form__fields {
    max-width: 848px;
  }
}

.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;
  margin-top: 25px;
}
.form-field:nth-of-type(1) {
  margin-top: 0;
}
@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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 24px;
  }
  .form-field:nth-of-type(1) {
    margin-top: 0;
  }
}

@media screen and (min-width: 900px) {
  .form-field__option {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .form-field__option .form-field__head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form-field__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.form-field__tag {
  margin-left: 9px;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  border-radius: 4px;
  background: #ce2073;
  padding: 4px 8px;
}
@media screen and (min-width: 1200px) {
  .form-field__tag {
    margin-bottom: 1px;
  }
}

.form-field__item {
  margin-top: 8.5px;
}
@media screen and (min-width: 900px) {
  .form-field__item {
    margin-top: 0;
    width: 580px;
  }
}
@media screen and (min-width: 1200px) {
  .form-field__item {
    margin-top: 0;
    width: 628px;
  }
}

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

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border-radius: 8px;
  background-image: url(../img/icon/icon_select-arrow.png), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  background-repeat: no-repeat;
  background-position: center right 14px, top left;
  background-size: 26px, auto;
  background-color: #f5f5f5;
  padding: 15px;
  border: 1px solid transparent;
}
.form-select:focus {
  outline: none;
  border-color: #9ed0e0;
}
.form-select.is-error {
  border: 1px solid #ce2073;
  background: url(../img/icon/icon_select-arrow.png) no-repeat center right 14px/26px, linear-gradient(to left, #ce2073 52px, #fff0f7 52px);
}
@media screen and (min-width: 900px) {
  .form-select {
    font-size: 16px;
    padding: 13px 15px;
  }
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  width: 214px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 900px) {
  .form-field__radios {
    width: 234px;
    height: 56px;
    padding: 0 0 0 1px;
  }
}

.from-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

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

.from-radio__text {
  position: relative;
  padding-left: 32px;
}
@media screen and (min-width: 900px) {
  .from-radio__text {
    font-size: 16px;
    margin-left: 0;
  }
}
.from-radio__text::before, .from-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.from-radio__text::before {
  width: 24px;
  height: 24px;
  background-color: #f5f5f5;
  border: 1px solid transparent;
  left: 0;
}
.from-radio__text::after {
  width: 12px;
  height: 12px;
  left: 6px;
  background-color: #9ed0e0;
  opacity: 0;
}

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

.contact__privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  margin-top: 23px;
}
@media screen and (min-width: 1200px) {
  .contact__privacy {
    margin-top: 41px;
  }
}

.form-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.form-checkbox__text {
  position: relative;
  padding-left: 35px;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text {
    font-size: 16px;
    padding-left: 36px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  left: 0;
  border-radius: 4px;
  background-color: #f5f5f5;
  border: 1px solid transparent;
}
.form-checkbox__text::after {
  width: 20px;
  height: 11px;
  left: 3px;
  background: url(../img/icon/icon_check.png) no-repeat center center/contain;
  opacity: 0;
}

.contact__button {
  margin-top: 26px;
  margin-inline: auto;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 1200px) {
  .contact__button {
    margin-top: 39px;
  }
}

.button-submit {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 4px 22px 6px 22px;
  border: 2px solid #4a3636;
  border-radius: 40px;
  -webkit-box-shadow: 0px 4px 0px 0px #4a3636;
          box-shadow: 0px 4px 0px 0px #4a3636;
  background: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 1200px) {
  .button-submit {
    width: 240px;
    font-size: 16px;
    padding: 6px 24px 6px 24px;
  }
}
.button-submit:hover {
  background-color: #ffee56;
}
.button-submit:focus {
  outline: none;
  border-color: #9ed0e0;
}

.footer {
  margin-top: 38px;
  position: relative;
}
@media screen and (min-width: 600px) {
  .footer {
    margin-top: 60px;
  }
}
@media screen and (min-width: 900px) {
  .footer {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .footer {
    margin-top: 120px;
  }
}

.footer__bg {
  position: absolute;
  top: -42px;
  right: 40px;
  width: 80px;
}
@media screen and (min-width: 1200px) {
  .footer__bg {
    top: -42px;
    right: 80px;
    width: 100px;
  }
}
.footer__bg img {
  width: 100%;
}

.footer__sns-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 210px;
  margin-inline: auto;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .footer__sns-links {
    width: 220px;
  }
}

.footer-follow__text {
  font-family: "Josefin Sans", serif;
  font-size: 20px;
  line-height: 1.25;
}
@media screen and (min-width: 600px) {
  .footer-follow__text {
    font-size: 22px;
  }
}
@media screen and (min-width: 900px) {
  .footer-follow__text {
    font-size: 24px;
  }
}

.sns-links__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 23px;
}

.sns__icon img {
  width: 32px;
  height: 32px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 600px) {
  .sns__icon img {
    width: 36px;
    height: 36px;
  }
}
@media screen and (min-width: 900px) {
  .sns__icon img {
    width: 40px;
    height: 40px;
  }
}
.sns__icon img:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.footer__logo img {
  width: 328px;
  display: block;
  margin: 13px auto 0 auto;
}
@media screen and (min-width: 600px) {
  .footer__logo img {
    width: 470px;
    margin: 30px auto 0 auto;
  }
}
@media screen and (min-width: 900px) {
  .footer__logo img {
    width: 600px;
    margin: 40px auto 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .footer__logo img {
    width: 755px;
  }
}

.footer__address-wrap {
  border-radius: 16px;
}

.address-wrap {
  width: 335px;
  height: 475px;
  margin-inline: auto;
  border-radius: 16px;
  background: #fff;
}
@media screen and (min-width: 600px) {
  .address-wrap {
    width: 400px;
    height: 550px;
  }
}
@media screen and (min-width: 900px) {
  .address-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;
    width: 830px;
    height: 350px;
  }
}
@media screen and (min-width: 1200px) {
  .address-wrap {
    width: 1024px;
    height: 400px;
  }
}

.address__map {
  height: 270px;
}
@media screen and (min-width: 600px) {
  .address__map {
    height: 300px;
  }
}
@media screen and (min-width: 900px) {
  .address__map {
    width: 415px;
    height: 350px;
  }
}
@media screen and (min-width: 1200px) {
  .address__map {
    width: 512px;
    height: 400px;
  }
}
.address__map iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px 16px 0 0;
}
@media screen and (min-width: 900px) {
  .address__map iframe {
    border-radius: 0 16px 16px 0;
  }
}

.address-wrap__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 26px 30px 26px;
}
@media screen and (min-width: 600px) {
  .address-wrap__body {
    padding: 0 35px 30px 35px;
  }
}
@media screen and (min-width: 900px) {
  .address-wrap__body {
    margin-inline: auto;
    padding: 30px 26px 33px 26px;
  }
}

.address__logo {
  margin-top: 21px;
  margin-inline: auto;
  width: 153px;
}
@media screen and (min-width: 600px) {
  .address__logo {
    margin-top: 30px;
    width: 170px;
  }
}
@media screen and (min-width: 900px) {
  .address__logo {
    text-align: left;
    margin-top: 55px;
    margin-inline: 0;
    width: 183px;
  }
}
@media screen and (min-width: 1200px) {
  .address__logo {
    margin-top: 72px;
  }
}
.address__logo img {
  width: 100%;
}

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

.address-definition__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 12px;
}
@media screen and (min-width: 600px) {
  .address-definition__row {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .address-definition__row {
    font-size: 16px;
  }
}

.address-definition__term {
  position: relative;
  padding-left: 17px;
  width: 82px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .address-definition__term {
    width: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .address-definition__term {
    width: 120px;
    padding-left: 16px;
  }
}
.address-definition__term::before {
  content: "";
  position: absolute;
  background-color: #9ed0e0;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 0;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.address-definition__Description {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.footer__pagetop {
  margin-inline: auto;
  width: 76px;
  padding-top: 24px;
}
@media screen and (min-width: 600px) {
  .footer__pagetop {
    padding-top: 40px;
  }
}
@media screen and (min-width: 900px) {
  .footer__pagetop {
    margin-inline: 0;
    padding-top: 0;
    position: fixed;
    width: 90px;
    right: 23px;
    bottom: 30px;
    opacity: 0;
    visibility: hidden;
    z-index: 80;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
  }
}
@media screen and (min-width: 1200px) {
  .footer__pagetop {
    width: 106px;
    right: 36px;
    bottom: 36px;
  }
}
.footer__pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
.footer__pagetop img {
  width: 100%;
}

.footer__bottom {
  background: #67b0c7;
  position: relative;
  padding-top: 15px;
  margin-top: 50px;
}
@media screen and (min-width: 600px) {
  .footer__bottom {
    margin-top: 67px;
  }
}
@media screen and (min-width: 900px) {
  .footer__bottom {
    margin-top: 170px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__bottom {
    margin-top: 221px;
  }
}
.footer__bottom::before {
  content: "";
  position: absolute;
  top: -27px;
  left: 0;
  width: 100%;
  height: 46px;
  background-image: url(../img/top-wave.svg), linear-gradient(to bottom, transparent 13px, #67b0c7 13px);
  background-repeat: repeat-x;
  background-position: left 0 center;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .footer__bottom::before {
    top: -72px;
    height: 90px;
    background-image: url(../img/top-wave.svg), linear-gradient(to bottom, transparent 40px, #67b0c7 40px);
  }
}
@media screen and (min-width: 1200px) {
  .footer__bottom::before {
    top: -103px;
    height: 120px;
    background-image: url(../img/top-wave.svg), linear-gradient(to bottom, transparent 50px, #67b0c7 50px);
  }
}

.copyright {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 10px;
  padding-bottom: 28px;
}
@media screen and (min-width: 900px) {
  .copyright {
    font-size: 14px;
    padding-bottom: 35px;
  }
}

.click-reply__drawer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 355px;
  border-radius: 12px;
  padding: 16px 12px;
  background: #fff;
  position: fixed;
  z-index: 100;
  bottom: 10px;
  left: calc(50% - 177.5px);
  -webkit-transform: translateX(-185%);
          transform: translateX(-185%);
  z-index: 90;
}
@media screen and (min-width: 900px) {
  .click-reply__drawer {
    width: auto;
    border-radius: 16px;
    padding: 30px 20px;
    bottom: 100px;
    left: 50px;
    -webkit-transform: translateX(-120%);
            transform: translateX(-120%);
  }
}
.click-reply__drawer.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.click-reply__drawer.is-checked:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.click-reply__heading {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .click-reply__heading {
    font-size: 20px;
  }
}

.click-reply__box {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (min-width: 900px) {
  .click-reply__box {
    margin-top: 20px;
  }
}

.reply__image {
  width: 90px;
}
@media screen and (min-width: 900px) {
  .reply__image {
    width: 100px;
  }
}
.reply__image img {
  width: 100%;
}

.reply__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 12px;
}
@media screen and (min-width: 900px) {
  .reply__texts {
    margin-left: 16px;
  }
}

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

.reply-text-close {
  font-size: 12px;
}
@media screen and (min-width: 900px) {
  .reply-text-close {
    margin-top: 10px;
    font-size: 15px;
  }
}

.click-reply__button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #9ed0e0;
  border-radius: 12px;
}
@media screen and (min-width: 900px) {
  .click-reply__button {
    border: 6px solid #9ed0e0;
    border-radius: 16px;
  }
}