:root {
  --s-color-14a8897e: #e50a84ff;
  --s-color-d6812cfd: #fef9f5ff;
  --s-color-9aab594a: #333f;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  color: #333;
  text-decoration: none;
  list-style: none;
  border: 0;
  word-spacing: 1px;
  transition: .3s cubic-bezier(.4,.4,0,1);
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #fef9f5;
  transition: background 0.5s cubic-bezier(0.4, 0.4, 0, 1);
}

img {
  max-width: 100%;
  height: auto;
}

/* .c-bg */
.c-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  flex: none;
  flex-flow: column nowrap;
  place-content: center center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  margin: 0;
  background: #fef9f5;
}

.c-bg__img {
  position: relative;
  flex: none;
  flex-flow: column nowrap;
  place-content: center center;
  align-items: center;
  width: 80%;
  max-width: 80%;
  height: 80%;
  margin: 0 auto;
}

.c-bg__img::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  content: "";
  background-image: url('../img/bg.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: inherit;
  transition: inherit;
}

/* .c-mv */
.c-mv {
  display: flex;
  flex: none;
  flex-flow: row nowrap;
  place-content: flex-start center;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 56px 64px;
  margin: 0;
  background: rgb(0 0 0 / 0%);
}

.c-mv__img {
  flex: none;
  flex-flow: column nowrap;
  place-content: center flex-start;
  align-items: center;
  width: calc(48% - 24px);
  max-width: calc(48% - 24px);
  height: auto;
  margin: 0 24px 0 0;
  background: rgb(33 33 33 / 0%);
}

.c-mv__content {
  width: calc(48% - 24px);
  max-width: calc(48% - 24px);
  padding: 0;
  margin: 0 0 0 24px;
}

.c-mv__text {
  flex: none;
  justify-content: space-between;
  width: auto;
  max-width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #e50a84;
  text-align: justify;
}

.c-mv__note {
  width: auto;
  max-width: 100%;
  height: auto;
  padding: 0;
  margin: 24px 0 32px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
  color: #e50a84;
  text-align: left;
}

.c-mv__list {
  display: flex;
  flex: none;
  flex-direction: row;
  place-content: flex-start flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 0 16px;
  background: rgb(33 33 33 / 0%);
}

.c-mv__listHead {
  flex: none;
  justify-content: center;
  width: calc(18% - 16px);
  max-width: calc(18% - 16px);
  height: auto;
  margin: 0 16px 0 0;
  font-size: 12px;
  line-height: 2.4;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  background: #e50a84;
  border-radius: 17px;
}

.c-mv__listBody {
  flex: none;
  justify-content: flex-start;
  width: calc(70% - 16px);
  max-width: calc(70% - 16px);
  height: auto;
  margin: 0 16px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: #e50a84;
  text-align: left;
  letter-spacing: 0.05em;
}

.c-mv__listLink {
  display: flex;
  width: 100%;
  margin-bottom: 18px;
}

.c-mv__list .c-mv__listLink .c-mv__listBody {
  width: fit-content;
  max-width: 100%;
}

.c-mv__listIcon {
  font-size: 24px;
  color: #e50a84;
  vertical-align: bottom;
}

.c-mv__listIconWrap {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.c-mv__listLink:hover .c-mv__listBody {
  transition-duration: 200ms;
  transform: translate(-3px, 0);
}

.c-mv__listLink:hover .c-mv__listIcon {
  font-size: 20px;
  color: #fff;
  transform: scale(0.75, 0.75);
}

.c-mv__listLink:hover .c-mv__listIconWrap {
  background: #e50a84;
  border-radius: 100px;
  transform: scale(1.8, 1.8);
}

@media screen and (width <= 768px) {
  .c-mv {
    display: flex;
    flex-flow: column nowrap;
    padding: 48px;
  }

  .c-mv__img {
    flex: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 56px;
  }

  .c-mv__content {
    width: 100%;
    max-width: 100%;
    margin: 0 0 32px;
  }

  .c-mv__note {
    margin-top: 16px;
  }

  .c-mv__listHead {
    width: 70px;
    max-width: calc(100% - 16px);
  }
}

@media screen and (width <= 480px) {
  .c-mv {
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 0 24px 36px;
    margin: 0 0 56px;
  }

  .c-mv__img {
    margin: 0 0 32px;
  }

  .c-mv__content {
    margin: 0;
  }

  .c-mv__list {
    margin-bottom: 8px;
  }

  .c-mv__listHead {
    width: 60px;
    max-width: calc(100% - 16px);
  }

  .c-mv__listBody {
    width: calc(72% - 8px);
    max-width: calc(72% - 8px);
  }

  .c-mv__list .c-mv__listLink .c-mv__listBody {
    margin-right: 0;
  }
}

/* .c-heading */
.c-heading {
  width: calc(90% - 16px);
  max-width: calc(90% - 16px);
  margin: 0 auto 32px;
  text-align: center;
}

.c-heading__inner {
  padding-bottom: 32px;
  margin: 0 auto;
  border-bottom: 1px solid #e50a84;
}

.c-heading__main {
  margin: 8px 0 16px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  color: #e50a84;
}

.c-heading__sub {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #e50a84;
  letter-spacing: 0.2em;
}

@media screen and (width <= 768px) {
  .c-heading__main {
    margin-bottom: 8px;
    font-size: 8px;
  }
}

@media screen and (width <= 480px) {
  .c-heading {
    width: 90%;
    max-width: 90%;
    margin-top: 12px;
    margin-bottom: 24px;
  }
}

/* .c-products */
.c-products__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
}

.c-products__item {
  display: flex;
  flex: none;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-start;
  width: 196px;
  max-width: calc(100% - 16px);
  height: 327px;
  padding: 32px 16px;
  margin: 0 8px 16px;
  background: #fff;
  border-radius: 32px;
}

.c-products__itemImg {
  width: 90%;
  max-width: 90%;
  height: auto;
}

.c-products__itemLink {
  position: relative;
  display: flex;
  flex: none;
  flex-flow: row nowrap;
  align-items: center;
  align-items: normal;
  justify-content: center;
  width: calc(90% - 4px);
  max-width: calc(90% - 4px);
  height: auto;
  padding: 6px 12px;
  margin: 0 0 0 4px;
  background: #e50a84;
  border-radius: 40px;
  transition-duration: 200ms;
}

.c-products__itemIcon {
  max-width: 100%;
  margin: 0;
  font-size: 18px;
  color: #fff;
}

.c-products__itemText {
  font-size: 12px;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}

@media screen and (width <= 768px) {
  .c-products__item {
    width: 156px;
    max-width: calc(100% - 16px);
    height: 292px;
    padding: 32px 8px;
    margin: 0 8px 32px;
  }

  .c-products__itemLink {
    width: calc(100% - 4px);
    max-width: calc(100% - 4px);
  }

  .c-products__itemIcon {
    font-size: 12px;
  }

  .c-products__itemText {
    font-size: 8px;
  }
}

@media screen and (width <= 480px) {
  .c-products__list {
    margin-bottom: 56px;
  }

  .c-products__item {
    justify-content: center;
    width: calc(50% - 16px);
    max-width: calc(50% - 16px);
    height: auto;
    padding: 24px 8px;
    margin: 0 8px 16px;
    border-radius: 16px;
  }

  .c-products__itemLink {
    position: relative;
    z-index: 5;
    flex: none;
    flex-flow: row nowrap;
    justify-content: center;
    width: 223px;
    max-width: 100%;
    height: auto;
    margin: 0;
    background: #fef9f5;
    border-radius: 35px;
  }

  .c-products__itemIcon {
    font-size: 18px;
    color: #e50a84;
  }

  .c-products__itemText {
    padding: 0 0 0 2px;
    font-size: 10px;
    font-feature-settings: 'palt' 1;
    color: #e50a84;
    letter-spacing: 0.03em;
  }
}

.c-sponsor {
  flex-flow: column nowrap;
  place-content: center flex-start;
  align-items: center;
  width: 90%;
  height: auto;
  padding: 60px 0 48px;
  margin: 0 auto;
}

.c-sponsor__banner {
  width: 80%;
  padding: 32px 16px;
  margin: 0 auto 30px;
  background: #fff;
  border-radius: 32px;
}

.c-sponsor__bannerIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: -60px auto 16px;
  background: #fff;
  border-radius: 50%;
}

.c-sponsor__bannerIconItem {
  width: 15%;
  max-width: 15%;
  height: auto;
}

.c-sponsor__bannerText {
  width: 100%;
  padding: 0 0 0 8px;
  margin: 0 auto 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #e50a84;
  text-align: center;
  letter-spacing: 0.05em;
}

.c-sponsor__bannerImg {
  display: block;
  width: calc(90% - 16px);
  margin: 0 auto;
}

.c-sponsor__layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 80%;
  margin: 0 auto;
}

.c-sponsor__left {
  width: calc(40% - 16px);
  padding: 0;
  margin: 0 8px 32px;
}

.c-sponsor__right {
  width: calc(60% - 16px);
  padding: 0;
  margin: 0 8px;
}

.c-sponsor__label {
  flex: none;
  justify-content: center;
  width: 100px;
  max-width: calc(100% - 16px);
  margin: 0 16px 16px 0;
  font-size: 12px;
  line-height: 2.4;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  background: #e50a84;
  border-radius: 17px;
}

.c-sponsor__text {
  width: 100%;
  padding: 0 0 0 8px;
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: #e50a84;
  text-align: left;
  letter-spacing: 0.05em;
}

@media screen and (width <= 768px) {
  .c-sponsor__banner {
    width: 90%;
    padding: 32px 8px;
    margin: 0 auto 32px;
  }

  .c-sponsor__bannerText {
    width: 82%;
  }

  .c-sponsor__layout {
    width: 90%;
  }

  .c-sponsor__left {
    width: 40%;
    margin: 0 0 92px;
  }

  .c-sponsor__right {
    width: 60%;
    margin: 0 0 60px;
  }

  .c-sponsor__label {
    width: fit-content;
    max-width: calc(100% - 16px);
    padding: 0 16px;
  }
}

@media screen and (width <= 480px) {
  .c-sponsor {
    width: 100%;
    max-width: 100%;
    padding: 0 24px 48px;
  }

  .c-sponsor__banner {
    width: 100%;
    max-width: 100%;
    padding: 32px 0;
    margin: 0 auto 48px;
    border-radius: 16px;
  }

  .c-sponsor__bannerIcon {
    margin: -60px auto 0;
  }

  .c-sponsor__bannerText {
    width: 100%;
    padding: 0;
    margin: 0 0 10px;
    font-size: 14px;
    font-feature-settings: 'palt' 1;
    line-height: 1.7;
    text-orientation: mixed;
  }

  .c-sponsor__bannerImg {
    width: calc(95% - 16px);
  }

  .c-sponsor__layout {
    width: 100%;
  }

  .c-sponsor__left,
  .c-sponsor__right {
    width: 100%;
    margin: 0;
  }

  .c-sponsor__label {
    width: 100px;
    max-width: calc(100% - 16px);
    padding: 0 8px;
    margin: 0 16px 8px 0;
    font-size: 12px;
    color: #fff;
    border-radius: 17px;
  }

  .c-sponsor__text {
    width: calc(100% - 8px);
    max-width: calc(100% - 8px);
    margin: 0 0 0 8px;
    font-size: 14px;
    font-feature-settings: 'palt' 1;
    line-height: 1.7;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
  }
}

/* .c-message */
.c-message__content {
  width: 90%;
  height: auto;
  padding: 48px 0;
  margin: 0 auto;
}

.c-message__contentInner {
  width: 60%;
  margin: 0 auto;
}

.c-message__text {
  width: 100%;
  max-width: 100%;
  margin: 0 0 16px;
  font-size: 14px;
  font-feature-settings: 'palt' 1;
  line-height: 1.7;
  color: #e50a84;
  text-align: left;
  letter-spacing: 0.15em;
}

.c-message__text--right {
  text-align: right;
}

.c-message__text--end {
  margin: 0;
}

@media screen and (width <= 768px) {
  .c-message__contentInner {
    width: 80%;
    margin: 0 auto;
  }

  .c-message__text {
    margin: 0 0 16px;
  }
}

@media screen and (width <= 480px) {
  .c-message__content {
    width: 100%;
    padding: 0 24px 48px;
  }

  .c-message__contentInner {
    width: 100%;
    padding: 0 8px 64px;
  }

  .c-message__text {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.6;
  }

  .c-message__text--end {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: normal;
  }
}

/* .c-about */
.c-about {
  padding: 0 0 48px;
}

.c-about__link {
  display: block;
  display: flex;
  flex: none;
  flex-flow: column nowrap;
  place-content: center center;
  align-items: center;
  width: 240px;
  max-width: calc(100% - 24px);
  height: 240px;
  margin: 0 auto;
  margin-top: 48px;
  background: #fff;
  border: 1px solid #e50a84;
  border-radius: 50%;
  transition-duration: 200ms;
}

.c-about__link:hover {
  transition-duration: 200ms;
  transform: scale(1.05, 1.05);
}

.c-about__linkImg {
  width: 80%;
  max-width: 80%;
  height: auto;
  margin: 0 auto;
}

@media screen and (width <= 480px) {
  .c-about__link {
    width: 170px;
    height: 170px;
    margin-right: auto;
    margin-left: auto;
  }

  .c-about__linkImg {
    margin: 8px 0 0;
  }

  .c-about__linkText {
    padding: 0;
    margin: 0;
    font-size: 44px;
    line-height: 1.3;
    color: #e50a84;
  }
}
