/*--------------------------------------*
* foundation
*--------------------------------------*/
body {
  width: 100%;
  min-width: 20rem;
  height: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  color: #222222;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.71;
  font-family: "SF Pro Display", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  letter-spacing: 0.05em;
  scroll-behavior: smooth;
}

img, video, object {
  display: block;
  max-width: 100%;
  height: auto;
  border: unset;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

a:hover img {
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.3s;
}

/*--------------------------------------*
* layout
*--------------------------------------*/
.l-wrapper {
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  background: url(../images/pc-bg.webp) repeat-y center center/100%;
}
@media screen and (max-width: 767px) {
  .l-wrapper {
    background: rgba(255, 255, 255, 0.5) url(../images/bg_pattern.webp) repeat-y center center/cover;
  }
}

.l-main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 5%;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .l-main {
    display: block;
    padding: 0;
  }
}

.l-section {
  width: 100%;
  padding: 12.5rem 0.875rem 0;
}

.l-section__inner {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media screen and (max-width: 1023px) {
  .l-section__inner {
    padding: 0 1rem;
  }
}

.l-footer {
  width: 100%;
  padding: 2.5rem 0 1.875rem;
  background-color: #06c755;
  color: #ffffff;
}

/*--------------------------------------*
* object
*--------------------------------------*/
/*-------------------
* component
-------------------*/
.c-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 17.625rem;
  height: 5.9375rem;
  padding: 0.75rem 1.5rem 1.625rem;
  background: url("../images/btn.svg") center center/contain no-repeat;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.c-btn::after {
  display: block;
  transform: rotate(-45deg);
  width: 0.625rem;
  height: 0.625rem;
  margin-left: 1rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
}

.c-btn:active {
  transform: scale(0.95);
  font-size: 0.875rem;
}

.c-section-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 16.5625rem;
  background: url("../images/section-title-bg.svg") center center/contain no-repeat;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 2.4;
  text-align: center;
}

.p-examples .c-section-title {
  background-image: url("../images/section-title-bg_green.svg");
}

.p-message .c-section-title {
  background-image: url("../images/section-title-bg_blue.svg");
}

.p-present .c-section-title {
  background-image: url("../images/section-title-bg_yellow.svg");
}

.c-label {
  display: inline-block;
  padding: 0 0.375rem;
  background-color: #666666;
  color: #ffffff;
  font-size: 0.75rem;
}

/*-------------------
* project
-------------------*/
.p-fv h1 img {
  margin-top: -3.125rem;
}
@media screen and (max-width: 767px) {
  .p-fv h1 img {
    width: 32.6875rem;
    max-width: initial;
    margin-inline: -4.625rem;
  }
}

.p-sp-content {
  position: relative;
  max-width: 23.4375rem;
  max-height: 46.4375rem;
  margin-left: clamp(0rem, -20.69rem + 43.103vw, 6.25rem);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (max-width: 767px) {
  .p-sp-content {
    max-width: 100vw;
    max-height: 100vh;
    margin-top: 0;
    margin-left: 0;
    overflow-x: hidden;
  }
}

.p-sp-content::-webkit-scrollbar {
  display: none;
}

.p-sp-content__inner {
  width: 100%;
  background: rgba(255, 255, 255, 0.5) url(../images/bg_pattern.webp) repeat-y center center/contain;
}
@media screen and (max-width: 767px) {
  .p-sp-content__inner {
    max-width: 23.4375rem;
    margin: 0 auto;
    background: initial;
  }
}

.p-pc-request {
  display: flex;
  align-items: center;
  max-height: 500px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-pc-request {
    display: none;
  }
}

.p-pc-request__title img {
  margin: 0 auto;
}

.p-pc-request__description {
  display: flex;
  align-items: center;
  margin-top: 1.25rem;
  gap: 0.5rem;
}

.p-pc-header {
  position: absolute;
  top: 2.25rem;
  left: 2.25rem;
}
@media screen and (max-width: 1024px) {
  .p-pc-header {
    display: flex;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .p-pc-header {
    display: none;
  }
}

.p-pc-header > * + * {
  margin-top: 1rem;
}
@media screen and (max-width: 1023px) {
  .p-pc-header > * + * {
    margin-top: 0;
  }
}

.p-footer__img img {
  margin: 0 auto;
}

.p-footer__copyright {
  display: block;
  margin-top: 6.25rem;
  color: #ffffff;
  font-size: 0.875rem;
  letter-spacing: -0.05em;
  text-align: center;
}

.p-about .c-section-title {
  padding-top: 20px;
  padding-right: 20px;
  background-position: center left 0;
  font-size: 1.5rem;
  line-height: 2;
}

.p-about__text {
  min-height: 27.8125rem;
  margin-top: 3.75rem;
  padding: 1.5rem 2rem;
  background: url(../images/about_bg.svg) center center/cover no-repeat;
  font-size: 0.875rem;
}

.p-about__text > * + * {
  margin-top: 1.25rem;
}

.p-about__text span {
  font-weight: 700;
}

.p-contents {
  padding-top: 6.25rem;
  color: #06c755;
  font-weight: 700;
}

.p-contents__title {
  width: 19.6875rem;
  margin: 0 auto;
  padding: 1.125rem;
  border-radius: 50px;
  background-color: #ffffff;
  text-align: center;
}

.p-contents__nav {
  margin-top: 2.5rem;
}

.p-contents__list-item {
  position: relative;
  width: 12.5rem;
  height: 7.0625rem;
  margin-left: auto;
  padding-top: 0.375rem;
  padding-left: 1.375rem;
  background: url("../images/contents_bg.svg") center center/contain no-repeat;
  font-size: 0.875rem;
  line-height: 3;
  font-feature-settings: "palt";
}

.p-contents__list-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.p-contents__list-item::after {
  display: block;
  position: absolute;
  right: 1.5rem;
  bottom: 2.5rem;
  transform: rotate(135deg);
  width: 0.5625rem;
  height: 0.5625rem;
  border-top: 2px solid #06c755;
  border-right: 2px solid #06c755;
  content: "";
}

.p-contents__list-item.p-contents__list-item--left {
  margin-top: 0.625rem;
  margin-right: auto;
  margin-left: 0;
}

.p-contents__list-item:last-child {
  margin-top: 1.25rem;
}

.p-examples {
  position: relative;
  padding-right: 0;
  padding-left: 0;
}

.p-examples .c-section-title {
  margin: 0 0.875rem;
  padding-top: 1.25rem;
  background-position: center left 0;
  line-height: 2.4;
  letter-spacing: 0.01em;
}

.p-examples__text {
  margin-top: 4.375rem;
  font-weight: 700;
  line-height: 2.3;
  letter-spacing: -0.01em;
  text-align: center;
}

.p-examples__list-item {
  position: relative;
  z-index: 10;
  padding: 1.875rem 1.25rem 10.3125rem;
  background: url("../images/example_bg.svg") top center/cover no-repeat;
  background-size: 100% 550px;
}

.p-examples__img img {
  margin: 0 auto;
  border-radius: 10px;
}

.p-example__list-text {
  margin-top: 0.625rem;
  padding: 0.5rem 1rem;
  border-right: 3px solid #06c755;
  border-left: 3px solid #06c755;
  font-feature-settings: "palt";
}

.p-examples__name {
  display: flex;
  align-items: center;
  min-height: 3.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-examples__address {
  margin-top: 0.375rem;
  font-size: 0.625rem;
  line-height: 2;
}

.p-examples__thanks {
  position: relative;
  margin-top: 0.25rem;
  padding: 1.25rem 0.75rem;
  background: url("../images/example_thankyou_bg.svg") top center/contain no-repeat;
  color: #ff2121;
  font-weight: 900;
  font-size: 0.75rem;
}

.p-examples__like {
  display: inline-block;
  position: relative;
  width: 136px;
  margin-right: 0.625rem;
  padding-left: 3.25rem;
  color: #0d3752;
  font-weight: 900;
  font-size: 1.75rem;
  text-align: right;
}

.p-examples__like::before {
  display: block;
  position: absolute;
  top: 0.125rem;
  left: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: url("../images/example_heart.svg") center center/contain no-repeat;
  content: "";
}

.p-examples__thanks-text {
  margin-top: 2rem;
  margin-right: -0.625rem;
  margin-left: -0.625rem;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 2;
  text-align: center;
}

.p-examples__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -10.3125rem;
  left: 50%;
  transform: translateX(-50%);
}

.p-examples__btn::after {
  display: block;
  transform: initial;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.9375rem;
  border: unset;
  background: url("../images/icon_message.svg") center center/cover no-repeat;
  content: "";
}

.p-examples__btn:active {
  transform: scale(0.95) translateX(-50%);
}

.p-examples__btn:disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.swiper-slide {
  width: 17.5rem;
}

.swiper-button-prev, .swiper-button-next {
  top: 43%;
  z-index: 20;
  width: 2.25rem;
  height: 2.25rem;
}

.swiper-button-prev {
  left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev {
    right: calc(50% + 8rem);
    left: initial;
  }
}

.swiper-button-next {
  right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    right: initial;
    left: calc(50% + 8rem);
  }
}

.swiper-button-prev::after, .swiper-button-next::after {
  width: 100%;
  height: 100%;
  background-image: url("../images/example_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.swiper-button-next::after {
  transform: rotate(180deg);
}

.balloon-wrapper {
  position: relative;
  padding-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .balloon-wrapper {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}

.balloon-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 20%;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 70%;
}

@keyframes float {
  0% {
    visibility: visible;
    opacity: 1;
    transform: translateY(20vh);
  }
  90% {
    visibility: visible;
    opacity: 1;
    transform: translateY(-200vh);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-200vh);
  }
}
.p-message__list {
  margin-top: 5rem;
}

.p-message__name {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.p-message__name h3 {
  font-weight: 700;
  font-size: 0.75rem;
}

.p-message__text {
  display: flex;
  align-items: center;
  position: relative;
  width: 16.875rem;
  height: 8rem;
  margin-right: 0.375rem;
  margin-left: auto;
  padding: 1.75rem;
  background: url("../images/message_bg.svg") center center/contain no-repeat;
  font-size: 0.75rem;
  font-feature-settings: "palt";
}

.p-message__list > * + * {
  margin-top: 2.5rem;
}

.p-message__list-item:first-child .p-message__text {
  background: url("../images/message_bg_green.svg") center center/contain no-repeat;
  color: #ffffff;
}

.p-message__list-item:last-child .p-message__text {
  background: url("../images/message_bg_red.svg") center center/contain no-repeat;
  color: #ffffff;
}

.p-message__list-item.p-message__list-item--right .p-message__name {
  justify-content: flex-end;
}

.p-message__list-item.p-message__list-item--right .p-message__text {
  margin-top: 1rem;
}

.p-present .c-section-title {
  height: 17.625rem;
  padding-top: 2.5rem;
  background-size: cover;
  color: #222222;
}

.p-present .c-section-title span {
  margin-top: 0.625rem;
  color: #ff2121;
  font-size: 1rem;
}

.p-present-all {
  margin-top: 5rem;
}

.p-present-all__title {
  color: #0d3752;
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
}

.p-present-all__subtitle {
  width: 13.75rem;
  margin-top: 0.625rem;
  margin-left: auto;
  color: #0d3752;
  font-weight: 700;
  font-size: 1rem;
  font-feature-settings: "palt";
}

.p-present-all__subtitle span > span {
  font-size: 0.75rem;
}

.p-present-all__subtitle span {
  background: linear-gradient(transparent 70%, #ffe000 30%);
}

.p-present-all__content {
  position: relative;
  margin-top: 0.375rem;
}

.p-present-all__content::after {
  display: block;
  position: absolute;
  top: -5rem;
  left: 0;
  width: 7.5rem;
  height: 7.5rem;
  background: url("../images/present-all-ticket.svg") center center/contain no-repeat;
  content: "";
}

.p-present-all__text {
  padding: 3.5rem 1.875rem;
  background: url("../images/present-all-bg.svg") center center/contain no-repeat;
  font-size: 0.875rem;
  font-feature-settings: "palt";
}

.p-present-all__text span {
  font-weight: 700;
}

.p-present-all__text > * + * {
  margin-top: 1rem;
}

.p-present-all__link {
  display: block;
  margin-top: 1rem;
}

.p-present-all__caution {
  margin-top: 1.5rem;
  font-size: 0.625rem;
  line-height: 1.75;
  font-feature-settings: "palt";
}

.p-present-raffle {
  margin-top: 6.25rem;
}

.p-present-raffle__title {
  position: relative;
  width: 20.4375rem;
  height: 18.625rem;
  margin: 0 auto;
  padding: 1.875rem 0;
  background: url("../images/present-raffle-bg.svg") center center/cover no-repeat;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
  font-feature-settings: "palt";
}

.p-present-raffle__title span {
  display: block;
  width: 14.25rem;
  margin: 2.5rem auto 1.25rem;
  border-bottom: 3px solid currentColor;
  color: #ff2121;
  font-weight: 700;
  font-size: 1.75rem;
  text-align: center;
}

.p-present-raffle__img {
  margin-top: -1.875rem;
}

.p-present-raffle__img img {
  margin: 0 auto;
}

.p-present-raffle__content {
  margin-top: 0.875rem;
  padding: 2.5rem 1.875rem 1.25rem;
  background: url("../images/present-raffle-text-bg.svg") center center/contain no-repeat;
}

.p-present-raffle__text {
  margin-top: 0.25rem;
  font-size: 0.875rem;
}

.p-present-raffle__text span {
  font-weight: 700;
}

.p-present-raffle__catch-wrap {
  position: relative;
  padding-bottom: 1.25rem;
}
.p-present-raffle__catch-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: -3%;
  display: block;
  width: 106%;
  height: 100%;
  background: url(../images/filter_campaignCloseShort.png) center center/contain no-repeat;
}

.p-present-raffle__catch {
  padding-top: 1.5rem;
  color: #ff2121;
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
  font-feature-settings: "palt";
}

.p-present-all__note {
  margin-top: 1rem;
  padding: 0 1.25rem;
  font-size: 0.875rem;
  position: relative;
}
.p-present-all__note::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/filter_campaignClose.png) center center/contain no-repeat;
}

.p-present-all__note-text {
  line-height: 1.5;
}

.p-present-all__note-text > * + * {
  margin-top: 1rem;
}

.p-present-all__note-text span {
  font-weight: 700;
}

.p-present-raffle__btn {
  margin-top: 0.375rem;
  font-size: 1rem;
}

.p-present-raffle__content-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
  gap: 1.25rem;
}

.p-story {
  padding: 12.5rem 1.5625rem 0;
}

.p-story__content {
  margin-top: 3.75rem;
  padding: 1.875rem 0.9375rem 0;
  border-radius: 10px 10px 0 0;
  background-color: #ff2121;
}

.p-story__content-inner {
  padding: 1.5rem 0.75rem 0;
  border: 8px solid #f37777;
  background-color: #ffffff;
}

.p-story__content-title {
  width: 15.9375rem;
  padding: 0.875rem 0 0.625rem;
  border-radius: 5px;
  background-color: #ff2121;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  text-align: center;
}

.p-story__text {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  font-feature-settings: "palt";
}

.p-story__text > * + * {
  margin-top: 1.5rem;
}

.p-story__btn {
  width: 16.875rem;
  margin: 1.375rem auto 0 -0.375rem;
}

.p-story__btn.c-btn::after {
  margin-left: 0.375rem;
}

.p-story__img {
  margin-top: 0.25rem;
}

.p-story__img img {
  margin-right: 1.5rem;
  margin-left: auto;
}

.p-story__bg {
  margin-top: 3.125rem;
  padding: 0 0.25rem;
}

/*-------------------
* Utility
-------------------*/
@media screen and (max-width: 1023px) {
  .u-sp-none {
    display: none;
  }
}

.u-pc-none {
  display: none;
}
@media screen and (max-width: 1023px) {
  .u-pc-none {
    display: block;
  }
}

.u-pc-flex {
  display: flex;
}
@media screen and (max-width: 1023px) {
  .u-pc-flex {
    display: block;
  }
}

/*-------------------
* Program
-------------------*/

/*# sourceMappingURL=style.css.map */
