@charset "UTF-8";
html {
  font-size: 62.5%;
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", sans-serif;
}

body {
  margin: 0;
}

.l-container {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .l-container {
    width: 550px;
    margin: 0 auto;
    border-right: 2px solid black;
    border-left: 2px solid black;
  }
}

.pc_back {
  display: none;
}
@media (min-width: 768px) {
  .pc_back {
    display: block;
    position: fixed;
    width: 100%;
    min-height: 100vh;
    z-index: -999;
  }
}

h1 {
  margin: 0;
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 10px;
  width: 90%;
}

h2 { /*ディスコグラフィーのタイトル*/
  font-size: 2rem;
  margin: 10px 0;
}

p {
  font-size: 1.6rem;
}

.red {
  background-color: #FEB9B9;
}

.pink {
  background-color: #FEE5FB;
}

.blue {
  background-color: #DEFBFF;
}

.yellow {
  background-color: #FCFEDE;
}

.purple {
  background-color: #DEE7FE;
}

.green {
  background-color: #DEFFF2;
}

.white {
  background-color: #fff;
}

.center {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.left {
  text-align: left;
}

.heart {
  vertical-align: top;
  margin-top: 1px;
}

.cc1 {
  display: none;
}
@media (min-width: 768px) {
  .cc1 {
    display: inline;
    position: fixed;
    width: 10%;
    top: 0;
    left: 0;
    transform: rotate(180deg);
  }
}

.cc2 {
  display: none;
}
@media (min-width: 768px) {
  .cc2 {
    display: inline;
    position: fixed;
    width: 10%;
    bottom: 0;
    right: 0;
  }
}

.hidden {
  overflow: hidden;
}

.middle {
  position: relative;
  z-index: 2;
}

.ellipse {
  width: 105vw;
  height: 260px;
  border-radius: 50%;
  border: 2px solid black;
  margin-left: -2.5vw;
}
@media (min-width: 768px) {
  .ellipse {
    width: 555px;
    margin-left: -2.5px;
  }
}

.ellip-top {
  margin-bottom: -135px;
}

.ellip-bottom {
  margin-top: -135px;
}

.head {
  position: absolute;
  z-index: 800;
  top: -27px;
  left: 0;
  right: 0;
  margin: auto;
  height: 82px;
}
@media (min-width: 768px) {
  .head {
    height: 100px;
  }
}

header {
  width: 100%;
}

.menu-wrapper {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 950;
  padding-top: 100px;
  padding-left: 0;
}
@media (min-width: 768px) {
  .menu-wrapper {
    width: 546px;
  }
}
.menu-wrapper img {
  height: 85px;
  display: block;
  margin: 0 auto;
  margin-bottom: 14px;
}

.menu-wrapper.active {
  display: block;
}

.menu-wrapper.active a {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.2s; /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.menu {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 900;
  cursor: pointer;
}
@media (min-width: 768px) {
  .menu {
    right: calc((100vw - 550px) / 2);
  }
}

.menu.active {
  display: none;
}

.close {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  cursor: pointer;
}
@media (min-width: 768px) {
  .close {
    right: calc((100vw - 550px) / 2);
  }
}

.close.active {
  display: block;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 900;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #DEFBFF;
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  right: calc((100vw - 550px) / 2 - 50px);
  top: -50px;
  transition: all 1s; /*0.6秒かけてアニメーション*/
}
@media (min-width: 768px) {
  .circle-bg {
    opacity: 0.7;
  }
}

.circle-bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}

.fv {
  position: relative;
  height: 772px;
}
@media (min-width: 768px) {
  .fv {
    height: 810px;
  }
}

.logo {
  margin-top: 20px;
  margin-left: 10px;
  width: 50%;
  position: relative;
  z-index: 1;
}

.top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .top {
    display: none;
  }
}

.top_pc {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .top_pc {
    display: block;
  }
}

.news {
  position: relative;
  margin-top: -118px;
  z-index: 1;
}
.news .news--inner {
  text-align: center;
}
.news .news--inner .news--lists {
  width: 90%;
  margin: 0 auto;
}
.news .news--inner .news--lists .news--lists__column {
  margin-bottom: 30px;
}
.news .news--inner .news--lists .news--lists__column:last-child {
  margin-bottom: 0;
}
.news .news--inner .news--lists .news--lists__column > p {
  margin-bottom: 3px;
}
.news .news--inner .news--lists .news--lists__column .news--lists__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.news--wrapper {
  position: relative;
}

.news_button {
  width: 12%;
  cursor: pointer;
}

.news_button:hover {
  transform: scale(1.1);
}

.schedule {
  margin-top: -90px;
  padding-top: 206px;
  padding-bottom: 210px;
  position: relative;
  z-index: 0;
}
@media (min-width: 768px) {
  .schedule {
    margin-top: -100px;
    padding-top: 221px;
  }
}
.schedule .sche_ellipse {
  width: 100%;
}
.schedule .sche_arrow {
  position: absolute;
  right: 47px;
  bottom: 63px;
  width: 30%;
}
@media (min-width: 768px) {
  .schedule .sche_arrow {
    right: 68px;
    bottom: 94px;
  }
}

.sche_ellipse:hover {
  transform: scale(1.1);
}

.head_schedule {
  margin-top: 170px;
}

@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.sche_ellip_a {
  position: absolute;
  width: 30%;
  bottom: 159px;
  right: 24px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .sche_ellip_a {
    bottom: 136px;
    right: 14px;
  }
}

.sche_ellip_a:hover {
  transform: scale(1.1);
}

.sche_member {
  width: 76%;
  margin-top: 22px;
}

.kira {
  position: absolute;
}

.kira1 {
  top: 63px;
  left: 14px;
  width: 7%;
  animation: blink 1s ease-in-out infinite alternate;
}

.kira2 {
  top: 200px;
  right: 20px;
  animation: blink 1.5s ease-in-out infinite alternate;
}

.kira3 {
  bottom: 150px;
  left: 100px;
  width: 7%;
  animation: blink 1.2s ease-in-out infinite alternate;
}

.kira4 {
  top: 250px;
  left: 18px;
  width: 14%;
  animation: blink 1.4s ease-in-out infinite alternate;
}

.kira5 {
  bottom: 86px;
  right: 0;
  animation: blink 1s ease-in-out infinite alternate;
}

.kira6 {
  bottom: 90px;
  left: 0;
  animation: blink 1.5s ease-in-out infinite alternate;
}

.kira7 {
  top: 80px;
  right: 10px;
  width: 18%;
  animation: blink 1.3s ease-in-out infinite alternate;
}

.kira8 {
  top: 156px;
  left: 63px;
  animation: blink 1.5s ease-in-out infinite alternate;
}

.profile--wrapper {
  position: relative;
  margin-top: -100px;
}
@media (min-width: 768px) {
  .profile--wrapper {
    margin-top: -117px;
  }
}

.member--profile {
  width: 90%;
  margin: 0 auto;
}
.member--profile .member--profile__box {
  text-align: center;
  margin-bottom: 70px;
}
.member--profile .member--profile__box:last-child {
  margin-bottom: 0;
}
.member--profile .member--profile__box p {
  font-size: 1.4rem;
}

.profile--inner {
  padding-bottom: 200px;
}

.member--name {
  margin-bottom: 18px;
}

.pro {
  width: 75%;
  margin-bottom: 24px;
}

.producer--profile {
  padding: 150px 5% 170px 5%;
  -webkit-clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
  margin-top: -100px;
  position: relative;
  z-index: 3;
}
.producer--profile p {
  margin-bottom: 20px;
}

.support--profile {
  display: none;
  padding: 150px 5% 210px 5%;
  -webkit-clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 100px, 100% 0, 100% 100%, 0 100%);
  margin-top: -100px;
  position: relative;
  z-index: 4;
}
.support--profile .supports {
  margin-bottom: 40px;
}
.support--profile .supports__bottom {
  margin-bottom: 35px;
}

.disco--wrapper {
  position: relative;
  z-index: 4;
}

.disco {
  margin-top: -88px;
}
@media (min-width: 768px) {
  .disco {
    margin-top: -117px;
  }
}

.disco_button {
  width: 12%;
  margin-bottom: 35px;
  cursor: pointer;
}

.contact {
  margin-top: -114px;
  padding-top: 175px;
  padding-bottom: 210px;
  padding-right: 5%;
  padding-left: 5%;
  position: relative;
}

.head_contact {
  position: relative;
  margin: 0 auto;
  display: block;
}

footer {
  margin-top: -134px;
  position: relative;
  z-index: 6;
}

.footer--flex {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  .footer--flex {
    padding-top: 51px;
  }
}
.footer--flex a {
  text-align: center;
  width: 14%;
}
.footer--flex a img {
  width: 50%;
}

.footer--inner {
  padding-bottom: 30px;
  position: relative;
}

.footer-logo {
  position: absolute;
  top: -85px;
  right: 0;
  left: 0;
  margin: auto;
}

.copy {
  font-size: 1.2rem;
  text-align: center;
  padding-top: 46px;
}

.swiper {
  width: 90%;
  margin-bottom: 34px;
}
@media (min-width: 768px) {
  .swiper {
    width: 500px;
  }
}

:root {
  --swiper-theme-color: pink!important;
}

.group_img {
  margin-bottom: 40px;
  width: 90%;
}

.group_text {
  margin-bottom: 30px;
}

/* 点滅 */
.blinking {
  animation: blink 1.5s ease-in-out infinite alternate;
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.disco_button:hover {
  transform: scale(1.1);
}

/*フェードイン*/
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1s;
}

.fadein.active {
  opacity: 1;
  transform: translate(0, 0);
}

.swiper-slide img {
  width: 90%;
  max-width: 330px;
}

.sns--flex {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 15px;
}
.sns--flex a {
  text-align: center;
  width: 14%;
}
.sns--flex a img {
  width: 50%;
}

.white3 {
  display: none;
  position: fixed;
}
@media (min-width: 768px) {
  .white3 {
    display: block;
    z-index: 803;
    width: 130px;
    bottom: 0;
    left: 50%;
    transform: translateX(calc(-50% - 323px));
    -webkit-transform: translateX(calc(-50% - 323px));
    -ms-transform: translateX(calc(-50% - 323px));
  }
}

.pink3 {
  display: none;
  position: fixed;
}
@media (min-width: 768px) {
  .pink3 {
    display: block;
    z-index: 802;
    width: 145px;
    bottom: 168px;
    left: 50%;
    transform: translateX(calc(-50% - 318px));
    -webkit-transform: translateX(calc(-50% - 318px));
    -ms-transform: translateX(calc(-50% - 318px));
  }
}

.yellow3 {
  display: none;
  position: fixed;
}
@media (min-width: 768px) {
  .yellow3 {
    display: block;
    z-index: 800;
    width: 130px;
    bottom: 424px;
    left: 50%;
    transform: translateX(calc(-50% - 309px));
    -webkit-transform: translateX(calc(-50% - 309px));
    -ms-transform: translateX(calc(-50% - 309px));
  }
}

.red3 {
  display: none;
  position: fixed;
}
@media (min-width: 768px) {
  .red3 {
    display: block;
    z-index: 801;
    width: 120px;
    bottom: 290px;
    left: 50%;
    transform: translateX(calc(-50% - 315px));
    -webkit-transform: translateX(calc(-50% - 315px));
    -ms-transform: translateX(calc(-50% - 315px));
  }
}

.purple4 {
  display: none;
  position: fixed;
}
@media (min-width: 768px) {
  .purple4 {
    display: block;
    z-index: 802;
    width: 118px;
    bottom: 0;
    left: 50%;
    transform: translateX(calc(-50% + 308px));
    -webkit-transform: translateX(calc(-50% + 308px));
    -ms-transform: translateX(calc(-50% + 308px));
  }
}

.blue4 {
  display: none;
  position: fixed;
}
@media (min-width: 768px) {
  .blue4 {
    display: block;
    z-index: 800;
    width: 116px;
    bottom: 235px;
    left: 50%;
    transform: translateX(calc(-50% + 302px));
    -webkit-transform: translateX(calc(-50% + 302px));
    -ms-transform: translateX(calc(-50% + 302px));
  }
}

.green4 {
  display: none;
  position: fixed;
}
@media (min-width: 768px) {
  .green4 {
    display: block;
    z-index: 801;
    width: 145px;
    bottom: 150px;
    left: 50%;
    transform: translateX(calc(-50% + 325px));
    -webkit-transform: translateX(calc(-50% + 325px));
    -ms-transform: translateX(calc(-50% + 325px));
  }
}

.fuwafuwa1 {
  animation-name: fuwa1;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
}

@keyframes fuwa1 {
  0% {
    transform: translate(0, 0px);
  }
  100% {
    transform: translate(0, -15px);
  }
}
.fuwafuwa2 {
  animation-name: fuwa2;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1s;
}

@keyframes fuwa2 {
  0% {
    transform: translate(0, 0px);
  }
  100% {
    transform: translate(0, -15px);
  }
}
.red5 {
  display: none;
}
@media (min-width: 1200px) {
  .red5 {
    display: block;
    position: fixed;
    width: 160px;
    top: 5%;
    left: 6%;
  }
}

.white5 {
  display: none;
}
@media (min-width: 1200px) {
  .white5 {
    display: block;
    position: fixed;
    width: 175px;
    top: 37%;
    left: 11%;
  }
}

.pink5 {
  display: none;
}
@media (min-width: 1200px) {
  .pink5 {
    display: block;
    position: fixed;
    width: 160px;
    top: 61%;
    left: 2%;
  }
}

.yellow5 {
  display: none;
}
@media (min-width: 1200px) {
  .yellow5 {
    display: block;
    position: fixed;
    width: 160px;
    top: 4%;
    right: 9%;
  }
}

.purple5 {
  display: none;
}
@media (min-width: 1200px) {
  .purple5 {
    display: block;
    position: fixed;
    width: 160px;
    top: 23%;
    right: 2%;
  }
}

.blue5 {
  display: none;
}
@media (min-width: 1200px) {
  .blue5 {
    display: block;
    position: fixed;
    width: 160px;
    top: 51%;
    right: 6%;
  }
}

.green5 {
  display: none;
}
@media (min-width: 1200px) {
  .green5 {
    display: block;
    position: fixed;
    width: 170px;
    top: 70%;
    right: 1%;
  }
}/*# sourceMappingURL=style.css.map */

.contact--lists{
  margin-bottom: 20px;
}
.wpcf7-form-control{
  border: 1px solid black;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  resize: none;
}
.wpcf7-submit{
  background-color: #DEE7FE;
  border: 2px solid black;
  color: black;
}