@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : base.css
Description : 共通
===================================================================== */
/* =====================================================================
    共通（大枠）
======================================================================*/
html {
  min-height: 100vh;
  font-size: calc(10 / 750 * 100vw);
  overflow-x: hidden;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1920 * 100vw);
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 10px;
  }
}

.gDef-wrapper {
  overflow: initial;
}

.wrapper {
  position: relative;
  font-family: "M PLUS Rounded 1c", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #ffffff;
  background: linear-gradient(to right, #e6738f 0%, #f2b6ca 50%, #967acc 100%);
  overflow: clip;
}
.wrapper::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/img_noise.gif) repeat center/30rem auto;
  opacity: 0.25;
  pointer-events: none;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .wrapper {
    font-size: 2.2rem;
    font-size: max(2.2rem, 14px);
  }
}
.wrapper section,
.wrapper main,
.wrapper header,
.wrapper footer,
.wrapper aside {
  position: relative;
}
.wrapper img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.wrapper a,
.wrapper button {
  display: block;
  color: currentColor;
  word-wrap: break-word;
  line-break: anywhere;
}
@media screen and (min-width: 768px) {
  .wrapper a,
  .wrapper button {
    transition: opacity 0.3s ease;
    backface-visibility: hidden;
  }
  .wrapper a:hover,
  .wrapper button:hover {
    opacity: 0.7;
  }
}

.main {
  overflow: hidden;
}
.main p,
.main dd {
  line-height: 2;
}
.main p a,
.main dd a {
  display: inline;
  color: #ff4d79;
  text-decoration: underline;
}

.inner {
  position: relative;
  margin: 0 auto;
  width: calc(640 / 750 * 100%);
  z-index: 2;
  transform: rotate(0.05deg);
}
@media screen and (min-width: 768px) {
  .inner {
    width: 80%;
    max-width: 1280px;
  }
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
/* =====================================================================
    共通
======================================================================*/
.ff-en {
  font-family: "Fredoka", sans-serif;
}

.btn01 {
  position: relative;
  text-align: center;
  margin: 8rem auto 0;
  padding: 0.7em 1em;
  padding-left: 2.5em;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 10.83em;
  font-size: 144%;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  background-color: #ff4d79;
  border-radius: 3em;
}
@media screen and (min-width: 768px) {
  .btn01 {
    font-size: 3.6rem;
  }
  .btn01:hover {
    opacity: 1 !important;
  }
  .btn01:hover::after {
    transform: translateX(0.3em);
  }
}
.btn01::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #ffccd8 0%, #634899 100%);
  filter: blur(2rem);
  z-index: -1;
  border-radius: 3em;
}
.btn01::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0.35em;
  margin: auto;
  width: 1.67em;
  height: 1.67em;
  background: url(../images/icon_arrow.png) no-repeat center/contain;
  transition: transform 0.3s ease;
}

.sec-ttl {
  text-align: center;
  margin-bottom: 8rem;
  font-size: 12rem;
}
@media screen and (min-width: 768px) {
  .sec-ttl {
    margin-bottom: 6rem;
    font-size: 9rem;
  }
}
.sec-ttl span {
  display: block;
}
.sec-ttl .en {
  position: relative;
  font-family: "Fredoka", sans-serif;
  font-weight: 900;
  letter-spacing: 0.07em;
}
.sec-ttl .en::before {
  content: attr(data-shadow);
  position: absolute;
  display: inline-block;
  white-space: pre;
  background: linear-gradient(0deg, #ffccd8 0%, #4c229f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(0.2em);
  z-index: -1;
}
.sec-ttl .ja {
  margin-top: 0.8em;
  font-size: 30%;
  font-weight: 900;
  color: #7759b3;
}

.bg-white {
  padding: 16rem 0;
}
@media screen and (min-width: 768px) {
  .bg-white {
    padding: 12rem 0;
  }
}
.bg-white::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(720 / 750 * 100%);
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 3.2rem;
}
@media screen and (min-width: 768px) {
  .bg-white::before {
    width: calc(1840 / 1920 * 100%);
    max-width: 1840px;
  }
}

/* =====================================================================
*    header
* =================================================================== */
.header {
  padding: 1rem 0 15rem;
}
@media screen and (min-width: 768px) {
  .header {
    padding-bottom: 10rem;
  }
  .header h1 {
    margin: 0 auto;
    max-width: 1920px;
  }
}

/* =====================================================================
    lead
======================================================================*/
.lead {
  margin-bottom: 24rem;
  padding: 8rem 0 0;
}
@media screen and (min-width: 768px) {
  .lead {
    margin-bottom: 12rem;
    padding: 10rem 0;
  }
}
.lead::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  margin-left: calc(15 / 750 * 100%);
  width: calc(761 / 750 * 100%);
  height: 100%;
  background: url(../images/bg_lead.png) no-repeat top left/contain;
}
@media screen and (min-width: 768px) {
  .lead::before {
    right: 0;
    margin: 0 auto;
    width: calc(1840 / 1920 * 100%);
    max-width: 1840px;
  }
}
@media screen and (min-width: 768px) {
  .lead > .inner {
    max-width: 1600px;
  }
  .lead-column {
    position: relative;
    display: flex;
    justify-content: space-between;
  }
  .lead-column .btn01 {
    position: absolute;
    top: 57rem;
    left: 7.8rem;
    margin: 0;
  }
}
.lead-ttl {
  position: relative;
  margin-bottom: 10rem;
  font-size: 11.2rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .lead-ttl {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}
.lead-ttl::before {
  content: attr(data-shadow);
  position: absolute;
  display: inline-block;
  white-space: pre;
  background: linear-gradient(-45deg, #ffccd8 0%, #4c229f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(0.2em);
  z-index: -1;
}
.lead p {
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .lead p {
    width: 55%;
    font-size: 109%;
    line-height: 2.5;
  }
}

/* =====================================================================
    program
======================================================================*/
.program-content {
  position: relative;
  margin-top: 12rem;
  padding: 3em calc(50 / 640 * 100%) 8rem;
  background-color: #967acc;
  border-radius: 3.2rem;
}
@media screen and (min-width: 768px) {
  .program-content {
    margin: 10rem auto 0;
    padding: 3.8em calc(80 / 1080 * 100%) 8rem;
    max-width: 1080px;
  }
}
.program-content::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #ffccd8 0%, #634899 100%);
  filter: blur(2rem);
  z-index: -1;
  border-radius: 3.2rem;
}
.program-content > *:not(:last-child) {
  margin-bottom: 4rem;
}
.program-content.event {
  font-size: 88%;
  line-height: 1.5;
  color: #ff4d79;
  background-color: #ffffff;
}
.program-content.event .program-subttl {
  color: #ffffff;
  background-color: #593f8c;
  margin: -2.15em auto 0;
}
.program-content.event p {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .program-content.event p {
    text-align: center;
  }
}
.program-subttl {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: -2.7em auto 0;
  padding: 0.65em;
  text-align: center;
  width: calc(520 / 640 * 100%);
  font-size: 125%;
  font-weight: 900;
  letter-spacing: 0;
  background-color: #ff4d79;
  border-radius: 3em;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .program-subttl {
    width: calc(390 / 1080 * 100%);
    font-size: 136%;
  }
}
.program-note {
  text-align: center;
  margin: 0 auto;
  padding: 0.4em 1.5em;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 87%;
  background: url(../images/img_wave.png) no-repeat center/100% 100%;
}
@media screen and (min-width: 768px) {
  .program-note {
    font-size: 95%;
  }
}
.program-list li {
  position: relative;
  padding-left: 15rem;
}
.program-list li:not(:last-child) {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .program-list li {
    padding-left: 11rem;
  }
}
.program-list li h4 {
  padding-top: 1rem;
  font-size: 125%;
  line-height: 1.7;
  letter-spacing: 0.04em;
  border-top: 1px solid currentColor;
}
@media screen and (min-width: 768px) {
  .program-list li h4 {
    padding-top: 2rem;
    font-size: 136%;
  }
}
.program-list li h4 span {
  padding: 0 0.1em;
  background-color: #ff4d79;
}
.program-list-num {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 0.15em;
  font-family: "Fredoka", sans-serif;
  font-weight: 900;
  font-size: 9.2rem;
  letter-spacing: 0.075em;
}
@media screen and (min-width: 768px) {
  .program-list-num {
    font-size: 7.2rem;
  }
}
.program-list-num::before {
  content: "PROGRAM";
  position: absolute;
  display: block;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  font-family: "Fredoka", sans-serif;
  font-weight: 900;
  font-size: 21%;
  letter-spacing: 0.075em;
}
@media screen and (min-width: 768px) {
  .program-event-list {
    display: flex;
    flex-wrap: wrap;
  }
}
.program-event-list li {
  position: relative;
  padding-left: 1.4em;
  font-weight: 800;
  color: #593f8c;
}
@media screen and (min-width: 768px) {
  .program-event-list li {
    width: 33.3333333333%;
  }
}
.program-event-list li::before {
  content: "●";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  color: #ff4d79;
}
.program-event-list li:not(:last-child) {
  margin-bottom: 0.6em;
}

.program-content h5 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 2em auto 0;
  font-size: 1.2em;
  text-align: center;
  color: #ffffff;
  padding: 0.3em;
  background-color: #ff4d79;
}

.event_makeup {
  text-align: center;
  color: #593f8c;
}
.event_makeup span {
  color: #ff4d79;
}

@media screen and (min-width: 768px) {
  .event_makeup_img {
    width: 50% !important;
    margin: 0 auto !important;
    z-index: 100 !important;
  }
}
/* =====================================================================
    intro
======================================================================*/
.intro {
  padding: 24rem 0;
  background: url(../images/bg_intro_l.png) repeat-y top left/40.1rem auto;
}
@media screen and (min-width: 768px) {
  .intro {
    margin: 6rem 0;
    padding: 18rem 0;
    background-image: url(../images/bg_intro_l.png), url(../images/bg_intro_r.png);
    background-position: top left, top right;
  }
}
.intro .sec-ttl .ja {
  color: #ff4d79;
}
.intro-list {
  margin-top: -3rem;
}
@media screen and (min-width: 768px) {
  .intro-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.intro-list li {
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .intro-list li {
    margin-bottom: 4rem;
    width: calc(600 / 1280 * 100%);
  }
}
.intro-list li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .intro-list li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}
.intro-list li h3 {
  margin: 0 0 3rem calc(-35 / 640 * 100%);
  width: calc(665 / 640 * 100%);
}
.intro-list li p {
  color: #593f8c;
}

/* =====================================================================
    howto
======================================================================*/
.howto .sec-ttl .en {
  font-size: 8.8rem;
}
@media screen and (min-width: 768px) {
  .howto .sec-ttl .en {
    font-size: 9rem;
  }
}
@media screen and (min-width: 768px) {
  .howto-list {
    margin: 0 auto;
    max-width: 1080px;
  }
}
.howto-list li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 45%;
  grid-template-rows: auto;
  gap: 0px 0px;
  grid-template-areas: "howto-list-num figure" "h4 h4" "p p";
  justify-content: space-between;
  padding: 8rem calc(50 / 640 * 100%);
  color: #593f8c;
  background-color: #ffffff;
  border-radius: 3.2rem;
}
@media screen and (min-width: 768px) {
  .howto-list li {
    display: flex;
    align-items: center;
    padding: 6rem calc(80 / 1080 * 100%);
  }
}
.howto-list li::before {
  border-radius: 3.2rem;
}
.howto-list li:nth-child(odd)::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #ffccd8 0%, #634899 100%);
  filter: blur(2rem);
  z-index: -1;
}
.howto-list li:nth-child(even)::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffccd8 0%, #634899 100%);
  filter: blur(2rem);
  z-index: -1;
}
.howto-list li:not(:last-child) {
  margin-bottom: 1.2em;
}
.howto-list li figure {
  grid-area: figure;
  margin-bottom: 0.2em;
}
@media screen and (min-width: 768px) {
  .howto-list li figure {
    flex-shrink: 0;
    margin-bottom: 0;
    width: 26.1956521739%;
  }
}
.howto-list li h4 {
  grid-area: h4;
  font-size: 125%;
  font-weight: 900;
  line-height: 1.5;
  color: #ff4d79;
}
@media screen and (min-width: 768px) {
  .howto-list li h4 {
    font-size: 163%;
  }
}
.howto-list li h4 small {
  font-size: 65%;
}
.howto-list li p {
  grid-area: p;
  line-height: 1.5;
}
.howto-list-content {
  display: contents;
}
@media screen and (min-width: 768px) {
  .howto-list-content {
    display: block;
    flex-grow: 1;
  }
}
.howto-list-num {
  grid-area: howto-list-num;
  margin-bottom: 0.2em;
  position: relative;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 0.15em;
  font-family: "Fredoka", sans-serif;
  font-weight: 900;
  font-size: 9.6rem;
  letter-spacing: 0.075em;
}
@media screen and (min-width: 768px) {
  .howto-list-num {
    font-size: 7.2rem;
  }
}
.howto-list-num::before {
  content: "HOW TO";
  position: absolute;
  display: block;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  font-family: "Fredoka", sans-serif;
  font-weight: 900;
  font-size: 21%;
  letter-spacing: 0.075em;
}

/* =====================================================================
    link
======================================================================*/
.link {
  padding: 18rem 0;
}
.link > .inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .link > .inner {
    max-width: 1920px;
  }
}
.link .sec-ttl .ja {
  color: #ff4d79;
}
.link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: url(../images/bg_link.png) repeat-y top center/192rem auto;
}
@media screen and (min-width: 768px) {
  .link-list {
    background-size: 100% auto;
  }
}
.link-list li {
  margin-bottom: 8.4rem;
  padding-top: 3rem;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .link-list li {
    width: 25%;
  }
}
.link-list li:nth-last-child(-n+2) {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .link-list li:nth-last-child(-n+4) {
    margin-bottom: 0;
  }
}
.link-list li a {
  margin: 0 auto;
  width: 64%;
}
@media screen and (min-width: 768px) {
  .link-list li a {
    transition-property: transform;
    width: 50%;
  }
  .link-list li a:hover {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* =====================================================================
*    footer
* =================================================================== */
.footer {
  padding-bottom: 4rem;
}

.pagetop {
  position: fixed;
  display: none;
  bottom: 6rem;
  right: 6rem;
  z-index: 10;
}
.pagetop a {
  position: relative;
  width: 8rem;
  height: 8rem;
}
.pagetop a::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #ffccd8 0%, #634899 100%);
  filter: blur(2rem);
  z-index: -1;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .pagetop a {
    transition-property: transform;
  }
  .pagetop a:hover {
    opacity: 1;
    transform: translateY(-1rem);
  }
}
.pagetop a img {
  transform: rotate(270deg);
}

.copyright {
  text-align: center;
  font-family: "Fredoka", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.075em;
  transform: rotate(0.05deg);
}
@media screen and (min-width: 768px) {
  .copyright {
    font-size: 3.2rem;
  }
}/*# sourceMappingURL=base.css.map */