@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

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

a:focus {
  outline-offset: 2px;
}

a {
  -webkit-transition: color 0.3s ease, text-decoration-color 0.3s ease;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}
a:hover {
  color: #67b0c7;
  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;
}

.button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 40px;
  color: #4a3636;
  -webkit-box-shadow: 0 4px 0 0 #4a3636;
          box-shadow: 0 4px 0 0 #4a3636;
  background: #ffffff;
  font-weight: 700;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.button:hover {
  background-color: #ffee56;
}
.button:active, .button:focus {
  background: #ffffff;
  outline: none;
}

.button--link {
  display: inline-block;
  -webkit-tap-highlight-color: transparent;
}
.button--link:hover {
  background-color: #ffee56;
  color: #4a3636;
  text-decoration-line: none;
}
.button--link:focus, .button--link:active {
  background-color: #ffffff !important;
  outline: none !important;
  -webkit-box-shadow: 0 4px 0 0 #4a3636;
          box-shadow: 0 4px 0 0 #4a3636;
}

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

.title {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .title {
    gap: 8px;
  }
}
.title .title-img img {
  width: 37.33px;
  height: 37.33px;
}
@media screen and (min-width: 768px) {
  .title .title-img img {
    width: 48px;
    height: 48px;
  }
}
.title .title-en {
  font-family: "Courgette", cursive;
  font-size: 16px;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .title .title-en {
    font-size: 20px;
  }
}
.title .title-jp {
  margin-inline: auto;
  font-family: "Kiwi Maru";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .title .title-jp {
    font-size: 32px;
  }
}
.title .title-jp::after {
  content: "";
  background-color: #ffee56;
  display: block;
  width: auto;
  height: 6px;
  margin-top: 6px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .title .title-jp::after {
    margin-top: 8px;
    height: 8px;
  }
}

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

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

.link-text {
  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: 2px;
  text-underline-position: from-font;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: #ffffff;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 64px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 1512px;
    padding-inline: 15px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 900px) {
  .header__inner {
    padding-inline: 24px;
  }
}

.header__logo:hover {
  opacity: 0.5;
}
.header__logo a img {
  display: block;
  width: 210px;
  height: 27px;
}
@media screen and (min-width: 768px) {
  .header__logo a img {
    width: 183px;
  }
}

.header__nav {
  position: fixed;
  top: 64px;
  right: 0;
  width: 100%;
  height: calc(100% - 65px);
  background-color: #ffffff;
  font-size: 14px;
  display: block;
  z-index: 50;
  padding: 82px 20px;
  text-align: center;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.header__nav.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

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

.header__link {
  -webkit-transition: color 0.3s ease, text-decoration-color 0.3s ease;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}
.header__link:hover {
  color: #67b0c7;
  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;
}
@media screen and (min-width: 768px) {
  .header__link {
    font-weight: 300;
    letter-spacing: 0.1px;
  }
}

.header__link-button {
  margin-top: 40px;
  padding: 4px 22px 6px;
  border: 2px solid #4a3636;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .header__button {
    padding: 4px 22px 6px;
    border: 2px solid #4a3636;
    font-size: 14px;
  }
}
@media screen and (min-width: 900px) {
  .header__button {
    padding: 4px 22px 6px;
    border: 2px solid #4a3636;
    font-size: 14px;
  }
}

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

@media screen and (min-width: 768px) {
  .header__pc-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
  }
}

.header__pc-nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .header__pc-nav-link {
    gap: 8px;
    font-size: 12px;
  }
}
@media screen and (min-width: 900px) {
  .header__pc-nav-link {
    gap: 12px;
    font-size: 14px;
  }
}

.header__pc-link {
  -webkit-transition: color 0.3s ease, text-decoration-color 0.3s ease;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}
.header__pc-link:hover {
  color: #67b0c7;
  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;
}
@media screen and (min-width: 768px) {
  .header__pc-link {
    font-size: 12px;
  }
}
.drawer-icon {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar {
  background: #4a3636;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  width: 32px;
  top: 13px;
  left: 4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2), .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(4) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 13px;
  left: 4px;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 3px;
  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-of-type(1) {
  top: 2.6px;
  width: 25.6px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 2.6px;
  left: 27.4px;
  width: 4.8px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 15px;
}
.drawer-icon__bar:nth-of-type(4) {
  top: 27.4px;
}

.main {
  overflow-x: hidden;
  z-index: -2;
}

.fv {
  position: relative;
  overflow: hidden;
  background-color: #e9f6f8;
}
.fv-picture {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: calc(100% - 155px);
  overflow: hidden;
  border-radius: 0px 0px 24px 24px;
}
@media screen and (min-width: 768px) {
  .fv-picture {
    height: calc(100% - 140px);
  }
}
.fv-picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .fv__inner {
    max-width: 940px;
    padding-inline: 20px;
    margin-inline: auto;
  }
}

.fv__content {
  position: relative;
  padding-top: 17px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__content {
    padding-top: 34px;
  }
}

.fv-title__text {
  color: #4a3636;
  text-align: center;
  text-shadow: 0px 0px 30px #fff;
  font-family: "Kiwi Maru";
  font-size: 14px;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .fv-title__text {
    font-size: 24px;
    font-weight: 500;
  }
}

.fv-title__campaign {
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 20px;
  max-width: 335px;
}
@media screen and (min-width: 768px) {
  .fv-title__campaign {
    max-width: 520px;
    margin-top: 24px;
  }
}

.fv-popupImg__share {
  position: absolute;
  top: 7px;
  left: 50%;
  -webkit-transform: translateX(-168px);
          transform: translateX(-168px);
  width: 142px;
}
@media screen and (min-width: 768px) {
  .fv-popupImg__share {
    width: 244px;
    top: 0px;
    -webkit-transform: translateX(-387px);
            transform: translateX(-387px);
  }
}
@media screen and (min-width: 768px) {
  .fv-popupImg__share img {
    width: 100%;
  }
}

.fv-popupImg__gift {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(32px);
          transform: translateX(32px);
  width: 110px;
}
@media screen and (min-width: 768px) {
  .fv-popupImg__gift {
    width: 180px;
    top: 16px;
    -webkit-transform: translateX(116px);
            transform: translateX(116px);
  }
}
.fv-popupImg__gift img {
  width: 100%;
}

.fv__smartphone-wrapper {
  position: relative;
  height: 522px;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .fv__smartphone-wrapper {
    margin-top: 0;
    height: 603px;
  }
}

.fv__smartphone {
  position: absolute;
  top: 103px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .fv__smartphone {
    top: 33px;
    width: 250px;
  }
}
.fv__smartphone img {
  border-radius: 22px;
}

.fv__drinkImg {
  position: absolute;
  bottom: 16px;
  left: 50%;
  -webkit-transform: translateX(-124px);
          transform: translateX(-124px);
  z-index: 3;
  width: 47.257px;
}
@media screen and (min-width: 768px) {
  .fv__drinkImg {
    width: 111px;
    bottom: 85px;
    -webkit-transform: translateX(-323px);
            transform: translateX(-323px);
  }
}
.fv__drinkImg img {
  width: 100%;
}

.fv__foodImg {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-168px);
          transform: translateX(-168px);
  z-index: 3;
  width: 54.069px;
}
@media screen and (min-width: 768px) {
  .fv__foodImg {
    bottom: 45px;
    -webkit-transform: translateX(-425px);
            transform: translateX(-425px);
    width: 127px;
  }
}
.fv__foodImg img {
  width: 100%;
}

.fv__BlackCatImg {
  position: absolute;
  bottom: 58px;
  right: 50%;
  -webkit-transform: translateX(167px);
          transform: translateX(167px);
  z-index: 2;
  width: 62px;
}
@media screen and (min-width: 768px) {
  .fv__BlackCatImg {
    width: 170px;
    bottom: 106px;
    -webkit-transform: translateX(360px);
            transform: translateX(360px);
  }
}
.fv__BlackCatImg img {
  width: 100%;
}

.fv__BrownCatImg {
  position: absolute;
  bottom: 0;
  right: 50%;
  -webkit-transform: translateX(158px);
          transform: translateX(158px);
  z-index: 3;
  width: 98px;
}
@media screen and (min-width: 768px) {
  .fv__BrownCatImg {
    width: 233px;
    bottom: 0px;
    -webkit-transform: translateX(423px);
            transform: translateX(423px);
  }
}
.fv__BrownCatImg img {
  width: 100%;
}

.fv__ApplyPop {
  position: absolute;
  bottom: 142.4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 160px;
  border-radius: 12.8px;
  background: #ffffff;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .fv__ApplyPop {
    bottom: 223.5px;
    width: 200px;
    border-radius: 16px;
  }
}

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

.fv__ApplyPop-text {
  margin-left: auto;
  margin-right: auto;
  margin-top: 12.8px;
  border-bottom: 2.4px solid #ce2073;
  width: 48px;
}
@media screen and (min-width: 768px) {
  .fv__ApplyPop-text {
    margin-top: 16px;
    font-size: 14px;
    width: 56px;
    border-bottom: 4px;
  }
}

.fv__ApplyPop-term {
  margin-top: 3.2px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .fv__ApplyPop-term {
    margin-top: 8px;
    font-size: 16px;
  }
}

.fv__button-wrapper {
  margin-top: 12.8px;
  margin-bottom: 19.2px;
}
@media screen and (min-width: 768px) {
  .fv__button-wrapper {
    margin-top: 16px;
    margin-bottom: 24px;
  }
}

.fv__ApplyPop-button {
  padding: 4px 22px 6px;
  border: 2px solid #4a3636;
  font-size: 14px;
  padding-top: 2px;
  padding-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .fv__ApplyPop-button {
    padding: 4px 22px 6px;
    border: 2px solid #4a3636;
    -webkit-font-feature-settings: "pref" on;
            font-feature-settings: "pref" on;
    font-size: 16px;
  }
}

.about {
  position: relative;
  width: 100vw;
}
.about-bg__powpads {
  position: absolute;
  top: -9px;
  right: 50%;
  -webkit-transform: translateX(186px);
          transform: translateX(186px);
  width: 54px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about-bg__powpads {
    width: 100px;
    top: -82px;
    right: 350px;
    z-index: 0;
  }
}

.about-bg__stripe {
  display: none;
}
@media screen and (min-width: 768px) {
  .about-bg__stripe {
    position: absolute;
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-776px);
            transform: translateX(-776px);
    display: block;
    width: 250px;
  }
}

.about-bg__photoR,
.about-bg__photoL {
  position: absolute;
  width: 200px;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about-bg__photoR,
  .about-bg__photoL {
    width: 480px;
  }
}
.about-bg__photoR img,
.about-bg__photoL img {
  border-radius: 24px;
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .about-bg__photoR img,
  .about-bg__photoL img {
    border-radius: 40px;
  }
}

.about-bg__photoR {
  top: 274px;
  right: 50%;
  -webkit-transform: translateX(328px);
          transform: translateX(328px);
}
@media screen and (min-width: 768px) {
  .about-bg__photoR {
    top: 74px;
    -webkit-transform: translateX(1040px);
            transform: translateX(1040px);
  }
}

.about-bg__photoL {
  top: 396px;
  left: 50%;
  -webkit-transform: translateX(-328px);
          transform: translateX(-328px);
}
@media screen and (min-width: 768px) {
  .about-bg__photoL {
    top: 74px;
    -webkit-transform: translateX(-1095px);
            transform: translateX(-1095px);
  }
}

.about-bg__slope {
  position: absolute;
  width: 138px;
  top: 710px;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about-bg__slope {
    width: 427px;
    top: 320px;
    left: -104px;
  }
}
.about-bg__slope img {
  width: 100%;
}

.about-bg__wave1,
.about-bg__wave2 {
  display: none;
}
@media screen and (min-width: 768px) {
  .about-bg__wave1,
  .about-bg__wave2 {
    display: block;
    position: absolute;
    width: 806.851px;
    z-index: -10;
  }
}

.about-bg__wave1 {
  top: 600px;
  right: 50%;
  -webkit-transform: translateX(1320px);
          transform: translateX(1320px);
}

.about-bg__wave2 {
  top: 635px;
  right: 50%;
  -webkit-transform: translateX(1252px);
          transform: translateX(1252px);
}

.about-bg__buttons {
  position: absolute;
  width: 48px;
  bottom: 219px;
  right: 50%;
  -webkit-transform: translateX(166px);
          transform: translateX(166px);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about-bg__buttons {
    width: 101px;
    bottom: 586px;
    -webkit-transform: translateX(608px);
            transform: translateX(608px);
  }
}

.about-bg__clothes {
  position: absolute;
  width: 133px;
  bottom: 160px;
  right: 50%;
  -webkit-transform: translateX(130px);
          transform: translateX(130px);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about-bg__clothes {
    bottom: 376px;
    -webkit-transform: translateX(682px);
            transform: translateX(682px);
    width: 308px;
  }
}

.about-bg__arrow {
  width: 100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .about-bg__arrow {
    width: 140px;
  }
}
.about-bg__arrow img {
  width: 100%;
}

.about-bg__text {
  position: absolute;
  width: 355px;
  bottom: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.about-bg__text img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about-bg__text {
    width: 891px;
    bottom: 192px;
  }
}

.about__inner {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .about__inner {
    max-width: 928px;
    padding-inline: 40px;
    margin-inline: auto;
  }
}

.about__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: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 32px;
  padding: 40px 12px;
  border-radius: 24px;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .about__contents {
    width: 100%;
    padding: 40px 114px;
    gap: 32px;
    margin-top: 37px;
    border-radius: 40px;
  }
}

.about__sub-title__text-sp {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .about__sub-title__text-sp {
    display: none;
  }
}

.about__sub-title__text-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .about__sub-title__text-pc {
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    height: 26px;
  }
}

.about__content {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__content {
    font-size: 16px;
  }
}
.about__content p + p {
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .about__content p + p {
    margin-top: 27px;
  }
}
.about__content span {
  font-weight: 700;
}

.about__text {
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 2px dashed #9ed0e0;
}
@media screen and (min-width: 768px) {
  .about__text {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 20px;
  }
}

.about__button {
  padding: 4px 22px 6px;
  border: 2px solid #4a3636;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
}
.about__button a {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .about__button {
    padding: 7px 37px 9px;
    border: 3px solid #4a3636;
    font-size: 20px;
  }
}

.about__top-img1,
.about__top-img2 {
  position: absolute;
  width: 87px;
}
@media screen and (min-width: 768px) {
  .about__top-img1,
  .about__top-img2 {
    width: 147px;
  }
}
.about__top-img1 img,
.about__top-img2 img {
  width: 100%;
}

.about__top-img1 {
  top: 33px;
  left: 50%;
  -webkit-transform: translateX(-134px);
          transform: translateX(-134px);
}
@media screen and (min-width: 768px) {
  .about__top-img1 {
    top: 40px;
    -webkit-transform: translateX(-339px);
            transform: translateX(-339px);
  }
}

.about__top-img2 {
  top: 31px;
  right: 50%;
  -webkit-transform: translateX(147px);
          transform: translateX(147px);
}
@media screen and (min-width: 768px) {
  .about__top-img2 {
    top: 45px;
    -webkit-transform: translateX(340px);
            transform: translateX(340px);
  }
}

.about__slider {
  margin-top: 140.87px;
}
@media screen and (min-width: 768px) {
  .about__slider {
    margin-top: 208px;
  }
}

.about__slide {
  width: 100px !important;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .about__slide {
    width: 200px !important;
    border-radius: 24px;
  }
}
.about__slide img {
  width: 100%;
}

.about__prev,
.about__next {
  display: none;
}

.step {
  position: relative;
  width: 100vw;
  margin-top: 64.8px;
  margin-bottom: 37.67px;
}
@media screen and (min-width: 768px) {
  .step {
    margin-top: 120px;
    margin-bottom: 0;
  }
}

.step-bg__map {
  position: absolute;
  width: 149px;
  top: 0px;
  right: 50%;
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .step-bg__map {
    width: 460px;
    top: -60px;
    -webkit-transform: translateX(-260px);
            transform: translateX(-260px);
  }
}
.step-bg__map img {
  width: 100%;
}

.step-bg__cats {
  position: absolute;
  width: 160px;
  top: -1px;
  right: 50%;
  -webkit-transform: translateX(218px);
          transform: translateX(218px);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .step-bg__cats {
    width: 433px;
    top: -24px;
    -webkit-transform: translateX(720px);
            transform: translateX(720px);
  }
}
.step-bg__cats img {
  width: 100%;
}

.step-bg__powL {
  position: absolute;
  width: 55px;
  top: 547px;
  left: 50%;
  -webkit-transform: translateX(-168px);
          transform: translateX(-168px);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .step-bg__powL {
    width: 100px;
    top: 580px;
    -webkit-transform: translateX(-718px);
            transform: translateX(-718px);
  }
}
.step-bg__powL img {
  width: 100%;
}

.step-bg__powR {
  position: absolute;
  width: 55px;
  top: 877px;
  right: 50%;
  -webkit-transform: translateX(166px);
          transform: translateX(166px);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .step-bg__powR {
    display: none;
  }
}
.step-bg__powR img {
  width: 100%;
}

.step__inner {
  text-align: center;
}

.step__sts {
  margin-top: 32px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 33px;
}
@media screen and (min-width: 768px) {
  .step__sts {
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    max-width: 1024px;
  }
}

.step__st {
  position: relative;
  margin-bottom: 16px;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .step__st:nth-child(2) {
    padding-top: 69px;
  }
}
.step__st:nth-child(2)::before, .step__st:nth-child(2)::after {
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 7px;
  height: 34px;
  content: "";
  background: url(../img/sp/img_step_line.png) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .step__st:nth-child(2)::before, .step__st:nth-child(2)::after {
    width: 113px;
    height: 24px;
    background: url(../img/pc/img_step_line.png) no-repeat center center/cover;
  }
}
.step__st:nth-child(2)::before {
  top: -34px;
  left: 50%;
}
@media screen and (min-width: 768px) {
  .step__st:nth-child(2)::before {
    top: 38%;
    left: -13%;
  }
}
.step__st:nth-child(2)::after {
  bottom: -48px;
  left: 50%;
}
@media screen and (min-width: 768px) {
  .step__st:nth-child(2)::after {
    top: 38%;
    left: 100%;
  }
}

.step__head {
  display: block;
  width: 196px;
  height: 210px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .step__head {
    padding-inline: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
  }
}
.step__head img {
  width: 100%;
}

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

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

.step__text-content {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .step__text-content {
    font-size: 16px;
  }
}
.step__text-content span {
  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: 2px;
  text-underline-position: from-font;
}

.step__link {
  background: #ffffff;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
  padding: 8px 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .step__link {
    margin-top: 18px;
  }
}
.step__link img {
  width: 20px;
}
@media screen and (min-width: 768px) {
  .step__link img {
    width: 24px;
  }
}
.step__link p {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .step__link p {
    font-size: 16px;
  }
}

.step__waveline-img {
  width: 7px;
  margin-left: auto;
  margin-right: auto;
}
.step__waveline-img img {
  width: 100%;
}

.step__button {
  padding: 4px 22px 6px;
  border: 2px solid #4a3636;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .step__button {
    padding: 7px 37px 9px;
    border: 3px solid #4a3636;
    font-size: 20px;
    margin-top: 34px;
  }
}

.prizes {
  padding-top: 83px;
  position: relative;
  padding-bottom: 216.67px;
}
@media screen and (min-width: 768px) {
  .prizes {
    margin-top: 120px;
    padding-top: 156px;
    padding-bottom: 640px;
  }
}

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

.prizes__contents {
  text-align: center;
  position: relative;
  padding: 59.33px 20px 34.67px;
  border-radius: 24px;
  background-color: #ffffff;
}
@media screen and (min-width: 900px) {
  .prizes__contents {
    padding: 64.03px 30px 53px;
  }
}
@media screen and (min-width: 1200px) {
  .prizes__contents {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.prizes__contents::before {
  content: "";
  position: absolute;
  width: 237.6px;
  height: 83px;
  top: -83px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/sp/prizes_bg_sp.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .prizes__contents::before {
    width: 365.624px;
    height: 148.967px;
    top: -149px;
    background: url(../img/pc/prizes_bg_pc.png) no-repeat center center/cover;
  }
}

.prizes__bg-L,
.prizes__bg-R {
  display: none;
}
@media screen and (min-width: 768px) {
  .prizes__bg-L,
  .prizes__bg-R {
    display: block;
    position: absolute;
    width: calc((100% - 366px) / 2);
    height: auto;
    top: -80px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__bg-L,
  .prizes__bg-R {
    top: -121px;
    width: calc((100% - 394px) / 2);
  }
}

.prizes__bg-L {
  left: 0;
}

.prizes__bg-R {
  right: 0;
}

.prizes__title {
  position: absolute;
  top: -63px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .prizes__title {
    top: -121px;
  }
}

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

.prizes_cards {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 14px 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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) {
  .prizes_cards {
    margin-top: 32px;
    gap: 40px 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.prizes__card {
  position: relative;
  width: calc(50% - 7.5px);
}
@media screen and (min-width: 900px) {
  .prizes__card {
    width: calc(50% - 16px);
  }
}
.prizes__card::after {
  pointer-events: none; /* クリック判定が「親要素（button）」に透過 */
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 0 0 8px 0;
  background: url(../img/prizes_zoom.png) no-repeat center center/cover;
}
@media screen and (min-width: 900px) {
  .prizes__card::after {
    width: 100px;
    height: 100px;
    border-radius: 0 0 24px 0;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-child(3), .prizes__card:nth-child(4), .prizes__card:nth-child(5) {
    width: calc(33.3333333333% - 24px);
  }
}
.prizes__card:nth-child(3) img, .prizes__card:nth-child(4) img, .prizes__card:nth-child(5) img {
  border-radius: 8px 8px 0 0;
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-child(3) img, .prizes__card:nth-child(4) img, .prizes__card:nth-child(5) img {
    border-radius: 16px 16px 0 0;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-child(3)::after, .prizes__card:nth-child(4)::after, .prizes__card:nth-child(5)::after {
    width: 64px;
    height: 64px;
    border-radius: 0 0 16px 0;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-child(3) .prizes__card-inner, .prizes__card:nth-child(4) .prizes__card-inner, .prizes__card:nth-child(5) .prizes__card-inner {
    margin-top: 40px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-child(3) .prizes__card-head, .prizes__card:nth-child(4) .prizes__card-head, .prizes__card:nth-child(5) .prizes__card-head {
    width: 80px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-child(3) .prizes__card-title, .prizes__card:nth-child(4) .prizes__card-title, .prizes__card:nth-child(5) .prizes__card-title {
    height: 81px;
    padding: 14px;
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .prizes__card:nth-child(4), .prizes__card:nth-child(5) {
    margin-left: 36px;
  }
}
.prizes__card:hover::after {
  background: url(../img/prizes_zoom-focus.png) no-repeat center center/cover;
}

.prizes__card-head {
  position: absolute;
  z-index: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 48px;
  height: 48px;
}
@media screen and (min-width: 900px) {
  .prizes__card-head {
    width: 100px;
  }
}
.prizes__card-head img {
  width: 100%;
}

.prizes__card-inner {
  overflow: hidden;
  width: 100%;
  margin-top: 24px;
  position: relative;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .prizes__card-inner {
    margin-top: 50px;
    border-radius: 24px;
  }
}
.prizes__card-inner:hover {
  border: 4px solid #9ed0e0;
}
.prizes__card-inner:hover .prizes__card-img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.prizes__card-img-wrapper {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  overflow: hidden;
}
.prizes__card-img {
  display: block;
}
.prizes__card-img img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}
@media screen and (min-width: 900px) {
  .prizes__card-img img {
    border-radius: 24px 24px 0 0;
  }
}

.prizes__card-title {
  display: grid;
  place-items: center;
  height: 56px;
  padding: 9px;
  color: #4a3636;
  font-weight: 700;
  background: #f5f5f5;
  border-radius: 0 0 8px 8px;
}
@media screen and (min-width: 900px) {
  .prizes__card-title {
    height: 120px;
    padding: 32px;
    font-size: 20px;
    border-radius: 0 0 24px 24px;
  }
}

.prizes__modal {
  position: fixed;
  inset: 0;
  margin: auto;
  z-index: 9999;
  max-width: calc(100% - 40px);
  max-height: calc(100% - 40px);
  border-radius: 24px;
  overflow: hidden;
  padding: 0 0 56px 0;
  border: none;
  text-align: center;
}
.prizes__modal::-ms-backdrop {
  opacity: 0.8;
  background: #000;
}
.prizes__modal::backdrop {
  opacity: 0.8;
  background: #000;
}
.prizes__modal img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .prizes__modal {
    max-width: 480px;
    max-height: 650px;
    padding: 0 0 106px 0;
  }
}

.modal__title {
  margin-top: 39px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .modal__title {
    margin-top: 32px;
    font-size: 20px;
  }
}

.modal__text {
  margin-top: 12px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .modal__text {
    padding-left: 40px;
    padding-right: 40px;
    font-size: 16px;
  }
}

.modal__close {
  margin-top: 16px;
  padding: 4px 22px 6px;
  border: 2px solid #4a3636;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .modal__close {
    margin-top: 24px;
  }
}

.prizes__button {
  padding: 4px 22px 6px;
  border: 2px solid #4a3636;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
  display: inline-block;
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .prizes__button {
    padding: 7px 37px 9px;
    border: 3px solid #4a3636;
    font-size: 20px;
    margin-top: 40px;
    display: inline-block;
  }
}

.prizes__bg-slope {
  position: absolute;
  bottom: 0;
  width: 100vw;
  height: 260px;
  z-index: -1;
  background: url(../img/sp/prizes_bg-slope.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .prizes__bg-slope {
    height: 640px;
    background: url(../img/pc/prizes_bg-slope.jpg) no-repeat center center/cover;
  }
}

.prizes__bg-wave {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 46px;
  background: url("../img/sp/img_bg_wave.svg") repeat-x left top;
  background-size: 92px 46px;
  display: block;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .prizes__bg-wave {
    height: 120px;
    background: url(../img/pc/prizes_bg_wave.png) repeat-x left top/252px 120px;
  }
}

.spots {
  position: relative;
  background-color: #67b0c7;
  text-align: center;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .spots {
    padding-top: 3px;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .spots__bg-pawpads {
    position: absolute;
    width: 100px;
    height: 220px;
    top: 500px;
    left: 50%;
    -webkit-transform: translateX(-720px);
            transform: translateX(-720px);
    z-index: 0;
    background: url(../img/pc/spots__bg-pawpads.png) no-repeat center center/contain;
  }
}
.spots__bg-pawpads img {
  width: 100%;
}

.spots__bg-wave1,
.spots__bg-wave2 {
  position: absolute;
  width: 100%;
  height: 46px;
  display: block;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .spots__bg-wave1,
  .spots__bg-wave2 {
    height: 120px;
  }
}

.spots__bg-wave1 {
  top: -44px;
  background: url(../img/sp/img_bg_wave.svg) repeat-x left top;
}
@media screen and (min-width: 768px) {
  .spots__bg-wave1 {
    top: -119px;
    background: url(../img/pc/prizes_bg_wave.png) repeat-x left top/252px;
  }
}

.spots__bg-wave2 {
  bottom: -44px;
  background: url(../img/sp/img_bg_wave2.svg) repeat-x left top;
}
@media screen and (min-width: 768px) {
  .spots__bg-wave2 {
    bottom: -119px;
    background: url(../img/pc/spot_bg_wave.png) repeat-x left top/252px 120px;
  }
}

@media screen and (min-width: 768px) {
  .spots__upper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 36px;
    padding-left: max(30px, 50% - 512px);
  }
}

.spots__title {
  position: relative;
  display: inline-block;
  padding-left: 36px;
  color: #ffffff;
  text-align: center;
  font-family: "Kiwi Maru";
  font-size: 28px;
  font-weight: 500;
  line-height: 50px;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .spots__title {
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    text-align: start;
    font-size: 40px;
    padding-left: 0;
    padding-top: 70px;
    letter-spacing: 10px;
  }
}
.spots__title::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  background: url(../img/spots__Icon.png) no-repeat center center;
  background-size: contain;
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 768px) {
  .spots__title::before {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 56px;
    height: 56px;
  }
}

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

.spots__slide {
  width: 240px !important;
  height: 402.2px !important;
  height: 371px;
  text-align: center;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .spots__slide {
    width: 344px !important;
    height: 542px !important;
    border-radius: 24px;
  }
}

.spots__slide-img img {
  width: 100%;
}

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

.spots__slide-text {
  text-align: left;
  margin-top: 16px;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (min-width: 768px) {
  .spots__slide-text {
    margin-top: 24px;
    font-size: 16px;
    padding-left: 32px;
    padding-right: 32px;
  }
}

.spots__prev,
.spots__next {
  display: none;
}
@media screen and (min-width: 768px) {
  .spots__prev,
  .spots__next {
    display: block;
    width: 80px;
    height: 80px;
    top: -35px;
  }
}
.spots__prev::after,
.spots__next::after {
  display: none;
}

.spots__prev {
  background: url(../img/pc/spots-prev.png) no-repeat center center/contain;
  left: 80px;
}

.spots__next {
  background: url(../img/pc/spots-next.png) no-repeat center center/contain;
  right: 80px;
}

@media screen and (min-width: 768px) {
  .spots__inner {
    position: relative;
    padding-top: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1104px;
    padding-inline: 40px;
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .spots__text-wrapper {
    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;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.spots__img {
  margin-left: auto;
  margin-right: auto;
  width: 255px;
}
@media screen and (min-width: 768px) {
  .spots__img {
    width: 495px;
    margin-left: 0;
    margin-right: 0;
  }
}

.spots__text {
  margin-top: 16px;
  font-size: 0.71rem;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .spots__text {
    margin-top: 0;
    font-size: 16px;
  }
}

.spots__button {
  margin-top: 24px;
  padding-bottom: 20px;
  padding: 4px 22px 6px;
  border: 2px solid #4a3636;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .spots__button {
    padding: 7px 37px 9px;
    border: 3px solid #4a3636;
    font-size: 20px;
    margin-top: 0;
    padding-top: 9px;
    padding-bottom: 12px;
  }
}

.FAQ {
  padding-top: 46px;
  padding-bottom: 30.67px;
}
@media screen and (min-width: 768px) {
  .FAQ {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

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

.FAQ__container {
  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;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .FAQ__container {
    margin-top: 40px;
    gap: 24px;
  }
}

.FAQ__content {
  border-radius: 12px;
  border: 2px solid #4a3636;
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .FAQ__content {
    border-radius: 16px;
  }
}
.FAQ__content.is-open .FAQ-q {
  padding-bottom: 11px;
}
@media screen and (min-width: 768px) {
  .FAQ__content.is-open .FAQ-q {
    padding-bottom: 36px;
  }
}
.FAQ__content.is-open .FAQ-q::after {
  background: url(../img/Icon-FAQ-close.png) no-repeat center center/contain;
}

.FAQ-q {
  display: block;
  position: relative;
  width: 100%;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 50px 9px 48px;
  line-height: 22.4px;
  color: #4a3636;
}
@media screen and (min-width: 768px) {
  .FAQ-q {
    font-size: 20px;
    padding: 33px 82px 32px 67px;
  }
}
.FAQ-q::before {
  content: "Q";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 14px;
  width: 22px;
  height: 30px;
  color: #9ed0e0;
  font-family: "Josefin Sans";
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .FAQ-q::before {
    left: 22px;
    width: 29px;
    height: 35px;
    font-size: 32px;
  }
}
.FAQ-q::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 14.91px;
  width: 26.18px;
  height: 26.18px;
  background: url(../img/Icon-FAQ-open.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .FAQ-q::after {
    right: 22px;
    width: 48px;
    height: 48px;
  }
}

.FAQ-a {
  position: relative;
  display: none;
  background: #f5f5f5;
  padding: 16px 16px 14px 47px;
  border-radius: 0 0 12px 12px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .FAQ-a {
    padding: 31px 22px 29px 61px;
    font-size: 16px;
    border-radius: 0 0 16px 16px;
  }
}
.FAQ-a::before {
  content: "A";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 14px;
  width: 22px;
  height: 30px;
  color: #9ed0e0;
  font-family: "Josefin Sans";
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .FAQ-a::before {
    left: 22px;
    width: 23px;
    height: 40px;
    font-size: 32px;
  }
}

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

.information__wrap {
  border: 8px solid #ffffff;
  background: rgba(255, 255, 255, 0.5);
  padding: 15.5px 15.5px;
}
@media screen and (min-width: 768px) {
  .information__wrap {
    padding: 32px 48px;
  }
}

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

.information__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: 11px;
}
@media screen and (min-width: 768px) {
  .information__list {
    gap: 14px;
  }
}

.information__content {
  border-bottom: 1px solid #cccccc;
}
.information__content:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .information__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.information__head {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .information__head {
    -ms-flex-preferred-size: 224px;
        flex-basis: 224px;
    margin-bottom: 11px;
    margin-left: 16px;
    padding-left: 16px;
    font-size: 16px;
  }
}
.information__head::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 8px;
  background: url(../img/Icon-information-lilsthead.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .information__head::before {
    top: 9px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.information__data {
  margin-top: 8px;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .information__data {
    -ms-flex-preferred-size: 672px;
        flex-basis: 672px;
    margin-top: 0;
    margin-bottom: 11px;
    font-size: 16px;
  }
}
.information__data ul {
  padding-left: 18px;
}
.information__data li {
  position: relative;
  padding-left: 0px;
  line-height: 19px;
}
@media screen and (min-width: 768px) {
  .information__data li {
    line-height: 25.77px;
    padding-left: 5px;
  }
}
.information__data li::before {
  position: absolute;
  content: "・";
  top: 0;
  left: -18px;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .information__data li::before {
    left: -16px;
  }
}

.information__bg {
  display: block;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .information__bg {
    text-align: center;
    margin-top: 122px;
  }
}

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

@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 928px;
    padding-inline: 40px;
    margin-inline: auto;
  }
}

.contact__note {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__note {
    margin-top: 32px;
    font-size: 16px;
  }
}

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

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

@media screen and (min-width: 768px) {
  .contact__field:nth-last-of-type(1) .form-field__head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.contact__privacy {
  margin-top: 25px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__privacy {
    margin-top: 41px;
    font-size: 16px;
  }
}

.contact__button {
  margin-top: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__button {
    margin-top: 40px;
  }
}
.contact__button input {
  padding: 4px 22px 6px;
  border: 2px solid #4a3636;
  -webkit-font-feature-settings: "pref" on;
          font-feature-settings: "pref" on;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .contact__button input {
    padding-left: 38px;
    padding-right: 38px;
  }
}

@media screen and (min-width: 768px) {
  .form-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}

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

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

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

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

.form-text {
  width: 100%;
  border-radius: 8px;
  border: none;
  background: #f5f5f5;
  padding: 13px;
  border: 3px solid transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .form-text {
    font-size: 16px;
  }
}
.form-text::-webkit-input-placeholder {
  color: #cccccc;
}
.form-text::-moz-placeholder {
  color: #cccccc;
}
.form-text:-ms-input-placeholder {
  color: #cccccc;
}
.form-text::-ms-input-placeholder {
  color: #cccccc;
}
.form-text::placeholder {
  color: #cccccc;
}
.form-text:hover, .form-text:focus {
  border-color: #9ed0e0;
  background-color: #e9f6f8;
  outline: none;
}

.from-radio {
  line-height: 1.4375;
}
.from-radio:hover .from-radio__text::before {
  border-color: #9ed0e0;
}

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

.from-radio__text {
  font-weight: 700;
  padding-left: 32px;
  position: relative;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .from-radio__text {
    font-size: 16px;
  }
}
.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: 3px solid transparent;
  left: 0;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.from-radio__text::after {
  width: 10px;
  height: 10px;
  background: #9ed0e0;
  left: 7px;
  opacity: 0;
}

.form-field__wrapper {
  position: relative;
  width: 100%;
}
.form-field__wrapper::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 52px;
  height: 55px;
  background: url(../img/control.png) no-repeat center center/contain;
  border-radius: 0 8px 8px 0;
}

.form-select {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 56px;
  font-weight: 400;
  padding: 13px;
  font-size: 14px;
  background-image: url(../img/Icon-select.png), linear-gradient(to left, #9ed0e0 52px, #f5f5f5 52px);
  border: 3px solid transparent;
  background-clip: padding-box;
  border-radius: 8px;
  overflow: hidden;
  background-repeat: no-repeat, no-repeat;
  background-position: center right 10.5px, center center;
  background-size: 32px 32px, cover;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media screen and (min-width: 768px) {
  .form-select {
    font-size: 16px;
  }
}
.form-select:hover, .form-select:focus {
  border-color: #9ed0e0;
  outline: none;
}

.form-textarea {
  border-radius: 5px;
  border: 3px solid transparent;
  background: #f5f5f5;
  width: 100%;
  height: 160px;
  padding: 13px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .form-textarea {
    font-size: 16px;
  }
}
.form-textarea:hover, .form-textarea:focus {
  border-color: #9ed0e0;
  background-color: #e9f6f8;
  outline: none;
}
.form-textarea::-webkit-input-placeholder {
  color: #cccccc;
}
.form-textarea::-moz-placeholder {
  color: #cccccc;
}
.form-textarea:-ms-input-placeholder {
  color: #cccccc;
}
.form-textarea::-ms-input-placeholder {
  color: #cccccc;
}
.form-textarea::placeholder {
  color: #cccccc;
}

.form-field__radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .form-field__radios {
    padding-top: 15px;
    padding-bottom: 15px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
  }
}

.form-checkbox:hover .form-checkbox__text::before {
  border-color: #9ed0e0;
}

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

.form-checkbox__text {
  position: relative;
  padding-left: 36px;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  background: #f5f5f5;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text::before {
    margin-top: 2px;
  }
}
.form-checkbox__text::after {
  width: 23px;
  height: 17.53px;
  left: -1px;
  margin-top: -1.2px;
  background: url(../img/check-icon.png) no-repeat center center/contain;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .form-checkbox__text::after {
    margin-top: 0.8px;
  }
}
.form-checkbox__text a {
  text-decoration-line: underline;
  font-weight: 700;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.form-checkbox__text a:hover {
  color: #9ed0e0;
}

/* テキスト系のエラー */
.is-error-text {
  background-color: #fff0f7;
  border: 1px solid #ce2073;
}

/* セレクトも同じ見た目にする場合 */
.is-error-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../img/Icon-select.png), linear-gradient(to left, #9ed0e0 52px, #fff0f7 52px);
  border: 1px solid #ce2073;
}

/* チェックボックスラッパーのエラー */
.is-error-checkbox {
  background-color: #fff0f7;
}

/* ラベルの文字色エラー */
.is-error-label {
  color: #ce2073;
}

.footer {
  padding-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 120px;
  }
}

.footer__title {
  font-family: "Josefin Sans";
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .footer__title {
    font-size: 24px;
  }
}

.footer__sns-icon {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sns-icon {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 768px) {
  .sns-icon {
    width: 40px;
    height: 40px;
  }
}
.sns-icon :hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

.footer__img {
  margin-top: 15px;
  margin-bottom: -5px;
  padding-left: 4px;
  padding-right: 3px;
}
@media screen and (min-width: 768px) {
  .footer__img {
    margin-top: 41px;
    max-width: 755px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
.footer__img img {
  width: 100%;
}

.footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .footer__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.footer__map {
  display: block;
  width: 100%;
  aspect-ratio: 335/271;
}
.footer__map iframe {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .footer__map {
    -ms-flex-preferred-size: 512px;
        flex-basis: 512px;
    width: auto;
    aspect-ratio: 512/400;
  }
}

.footer__coInfo {
  display: grid;
  place-items: center;
  background-color: #ffffff;
  overflow-x: auto;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .footer__coInfo {
    -ms-flex-preferred-size: 512px;
        flex-basis: 512px;
    width: auto;
  }
}

.coinfo-wrap {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .coinfo-wrap {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

.coInfo-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 153px;
}
@media screen and (min-width: 768px) {
  .coInfo-logo {
    margin-left: 0;
    width: 183px;
  }
}
.coInfo-organizer {
  width: 280px;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 6px;
  padding-bottom: 6px;
  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: 768px) {
  .coInfo-organizer {
    width: 389px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    margin-bottom: 0;
    gap: 12px;
  }
}

.coInfo-li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding-left: 16px;
  gap: 16px;
  text-align: left;
}
.coInfo-li::before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  background-color: #9ed0e0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.coInfo-title {
  font-weight: 700;
  width: 48px;
}
@media screen and (min-width: 768px) {
  .coInfo-title {
    font-size: 16px;
    width: 88px;
  }
}

@media screen and (min-width: 768px) {
  .coInfo-data {
    font-size: 16px;
  }
}

.footer__bg-wave {
  position: relative;
  margin-top: 24px;
  width: 100%;
  height: 46px;
  background: url("../img/sp/img_bg_wave.svg") repeat-x left top;
  background-size: 92px 46px;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer__bg-wave {
    margin-top: 120px;
  }
}
.footer__bg-wave::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #67b0c7;
}
@media screen and (min-width: 768px) {
  .footer__bg-wave {
    height: 120px;
    background: url(../img/pc/prizes_bg_wave.png) repeat-x left top/252px 120px;
  }
}

.pagetop {
  display: block;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  width: 75px;
  height: 78px;
  background: url(../img/sp/page-top.png) no-repeat center center/cover;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .pagetop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 100px;
    height: 104px;
  }
}

.footer__copyright {
  margin: 0;
  padding-bottom: 24px;
  background-color: #67b0c7;
  color: #ffffff;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    padding-bottom: 32px;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 1.2px;
  }
}