@charset "UTF-8";
/* CSS INFORMATION =====================================================
File name : base.css
Description : 共通
===================================================================== */
/* ========================================================
    base
======================================================== */
.gDef-top-banner {
  background-color: #d320ad;
}

.gDef-contents * {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1.8;
  box-sizing: border-box;
}
.gDef-contents img {
  width: 100%;
  vertical-align: bottom;
  border: none;
}
.gDef-contents a {
  text-decoration: none;
  word-break: break-all;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .gDef-contents a:hover {
    opacity: 0.7;
  }
}
.gDef-contents dt {
  font-weight: 400;
}

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

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

.color_pink {
  color: #ff008e;
}
.color_orange {
  color: #e83e0b;
}

.text_align_left {
  text-align: left;
}
.text_align_center {
  text-align: center;
}
.text_align_right {
  text-align: right;
}

/* ========================================================
    layout
======================================================== */
html {
  font-size: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 10px;
  }
}

.gDef-contents {
  width: 100%;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .gDef-contents {
    font-size: 2rem;
  }
}

#wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.main {
  position: relative;
  width: 100%;
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5rem;
}

.noise {
  position: fixed;
  left: -50%;
  top: -50%;
  display: block;
  width: 200%;
  height: 200%;
  background: url(../images/common/noise_bg01.png);
  pointer-events: none;
  z-index: -3;
  will-change: auto;
  animation: noise 2s steps(3) infinite both;
}

@keyframes noise {
  0% {
    transform: translate3d(1%, -1%, 0);
  }
  10% {
    transform: translate3d(-5%, -2%, 0);
  }
  20% {
    transform: translate3d(10%, 5%, 0);
  }
  30% {
    transform: translate3d(5%, -11%, 0);
  }
  40% {
    transform: translate3d(-12%, -5%, 0);
  }
  50% {
    transform: translate3d(10%, 9%, 0);
  }
  60% {
    transform: translate3d(15%, 0, 0);
  }
  70% {
    transform: translate3d(-10%, 8%, 0);
  }
  80% {
    transform: translate3d(10%, 2%, 0);
  }
  90% {
    transform: translate3d(1%, 5%, 0);
  }
  100% {
    transform: translate3d(0, 8%, 0);
  }
}
/* ========================================================
    header
======================================================== */
.header {
  position: relative;
  width: 100%;
}

.mv {
  position: relative;
  width: 100%;
  padding: 4rem 0;
}
@media screen and (min-width: 768px) {
  .mv {
    padding: 2rem 0;
  }
}
.mv_column {
  position: relative;
  width: 115.3846153846%;
  aspect-ratio: 750/1226;
  margin: 0 -7.6923076923%;
}
@media screen and (min-width: 768px) {
  .mv_column {
    width: 90%;
    aspect-ratio: 1200/1116;
    margin: 0 auto;
  }
}
.mv_column::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/mv_bg01_sp.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .mv_column::before {
    background-image: url(../images/common/mv_bg01_pc.png);
  }
}
.mv_ttl {
  position: relative;
  width: 60.8%;
  margin: 0 auto;
  padding-top: 40.6666666667%;
  filter: blur(10px);
  transform: scale(1.02);
}
@media screen and (min-width: 768px) {
  .mv_ttl {
    width: 50.4166666667%;
    padding-top: 11.4166666667%;
  }
}
.mv_ttl.is-blur {
  animation-name: blur;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blur {
  from {
    filter: blur(10px);
    transform: scale(1.02);
  }
  to {
    filter: blur(0);
    transform: scale(1);
  }
}
/* ========================================================
    footer
======================================================== */
.footer {
  position: relative;
  width: 100%;
}
.footer_copyright {
  position: relative;
  width: 100%;
  padding: 10rem 0;
}
@media screen and (min-width: 768px) {
  .footer_copyright {
    padding: 5rem 0;
  }
}
.footer_copyright::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 100%;
  display: block;
  width: 100%;
  height: 15px;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}
@media screen and (min-width: 768px) {
  .footer_copyright::before {
    height: 5px;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
  }
}
.footer_copyright p {
  color: #ffffff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer_copyright p {
    font-size: 1.6rem;
  }
}
.footer_pagetop {
  position: absolute;
  right: 0;
  bottom: 24rem;
  display: block;
  transform: rotate(90deg);
  transform-origin: top right;
}
@media screen and (min-width: 768px) {
  .footer_pagetop {
    right: 2.5rem;
    bottom: 12rem;
  }
}
.footer_pagetop > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  padding: 2.5rem 3rem;
}
@media screen and (min-width: 768px) {
  .footer_pagetop > a {
    padding: 1rem 3rem;
  }
}
@media screen and (min-width: 768px) {
  .footer_pagetop > a:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .footer_pagetop > a:hover .footer_pagetop_text.hover {
    width: 100%;
    filter: drop-shadow(0 0 20px #ff4af9);
  }
}
@media screen and (min-width: 768px) {
  .footer_pagetop > a:hover .footer_pagetop_text.hover::before {
    background-color: #ff4af9;
  }
}
.footer_pagetop_text {
  color: transparent;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1px #ffffff;
  text-stroke: 1px #ffffff;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .footer_pagetop_text {
    font-size: 3rem;
  }
}
.footer_pagetop_text.hover {
  content: attr(data-text);
  position: absolute;
  left: 2rem;
  top: 0;
  width: 0%;
  padding: 1rem 0 1rem 3rem;
  -webkit-text-stroke: 1px #ff4af9;
  text-stroke: 1px #ff4af9;
  overflow: hidden;
  transition: 0.5s;
  inset: 0;
}
.footer_pagetop_text.hover::before {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 0;
  display: block;
  width: 1rem;
  height: 10rem;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .footer_pagetop_text.hover::before {
    width: 0.6rem;
    height: 5rem;
  }
}
.footer_pagetop_text > span {
  display: inline-block;
  margin-right: 1rem;
  line-height: 1;
  transform: translateY(-0.1rem) scale(0.8, 1.6);
}

/* =====================================================================
    bg-speaker
======================================================================*/
.bg-speaker {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  background-image: url(../images/common/common_bg01_sp.png);
  background-repeat: repeat-y;
  background-position: center;
  background-size: 100% auto;
  z-index: -4;
}
@media screen and (orientation: landscape) {
  .bg-speaker {
    background-image: url(../images/common/common_bg01_pc.png);
    background-size: auto auto;
  }
}
.bg-speaker-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg-speaker-group > li {
  position: absolute;
}
.bg-speaker-group > li:nth-child(1), .bg-speaker-group > li:nth-child(3) {
  left: -16.15vh;
}
.bg-speaker-group > li:nth-child(4), .bg-speaker-group > li:nth-child(6) {
  right: -16.15vh;
}
.bg-speaker-group > li:nth-child(1), .bg-speaker-group > li:nth-child(4) {
  bottom: calc(100% - 35.07vh);
}
.bg-speaker-group > li:nth-child(3), .bg-speaker-group > li:nth-child(6) {
  top: calc(100% - 35.07vh);
}
.bg-speaker-group > li:nth-child(2), .bg-speaker-group > li:nth-child(5) {
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.bg-speaker-group > li:nth-child(2) {
  left: -12.53vh;
}
.bg-speaker-group > li:nth-child(5) {
  right: -12.53vh;
}
@media screen and (min-width: 768px) {
  .bg-speaker-group > li:nth-child(1), .bg-speaker-group > li:nth-child(3) {
    left: -7.92vh;
  }
  .bg-speaker-group > li:nth-child(4), .bg-speaker-group > li:nth-child(6) {
    right: -7.92vh;
  }
  .bg-speaker-group > li:nth-child(2) {
    left: -4.19vh;
  }
  .bg-speaker-group > li:nth-child(5) {
    right: -4.19vh;
  }
}
.bg-speaker .speaker01 {
  width: 28.92vh;
  height: 28.92vh;
}
.bg-speaker .speaker01-item {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.bg-speaker .speaker01-big {
  width: 100%;
  height: 100%;
  animation: 1000ms pulsate ease-in infinite;
}
.bg-speaker .speaker01-md {
  width: 82.1808510638%;
  height: 82.1808510638%;
  animation: 1000ms md-pulsate ease-in infinite;
}
.bg-speaker .speaker01-small {
  width: 26.329787234%;
  height: 26.329787234%;
  animation: 1000ms front-heart-pulsate ease-in infinite;
}
.bg-speaker .speaker02 {
  width: 21.76vh;
  height: 21.76vh;
}
.bg-speaker .speaker02-item {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.bg-speaker .speaker02-big {
  width: 100%;
  height: 100%;
  animation: 1000ms pulsate ease-in infinite;
}
.bg-speaker .speaker02-small {
  width: 34.9823321555%;
  height: 34.9823321555%;
  animation: 1000ms front-heart-pulsate ease-in infinite;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
  85% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes md-pulsate {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(1.3);
  }
  65% {
    transform: scale(1);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes front-heart-pulsate {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.4);
  }
  45% {
    transform: scale(1.4);
  }
  55% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}/*# sourceMappingURL=base.css.map */