@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Yu Gothic Medium", sans-serif;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  font-size: 18px;
  background-color: #333;
  color: #fff;
  font-feature-settings: "palt";
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.5s;
}

button {
  transition: 0.5s;
}

a:hover,
button:hover {
  opacity: 0.7;
}

.active {
  text-decoration: underline;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* --------------------------

header-visualエリア

----------------------------*/
header {
  background-image: url(../img/header-visual.png);
  background-size: cover;
  background-position: center;
  height: 600px;
  padding: 125px 0;
}
header hgroup {
  text-align: center;
  background-color: rgba(255, 0, 0, 0.4);
}
header hgroup h1 {
  font-size: 72px;
  padding-bottom: 25px;
}
header hgroup p {
  font-size: 64px;
  padding-bottom: 25px;
}
header hgroup p:last-child {
  padding-bottom: 0;
}

/* --------------------------

m-menuエリア

----------------------------*/
ul.m-menu {
  display: flex;
  width: 96%;
  padding: 40px 0;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: space-between;
}
ul.m-menu li.filter {
  cursor: pointer;
}

/* --------------------------

System of @ Upエリア

----------------------------*/
main section h2 {
  margin-bottom: 80px;
  background-color: #ff0000;
  line-height: 86px;
  font-size: 36px;
  text-align: center;
}
main section p {
  max-width: 730px;
  margin: 0 auto;
  padding-bottom: 80px;
  width: 96%;
}

.mix {
  display: none;
  width: 100%;
}

/* --------------------------

MEMBERエリア

----------------------------*/
main section.member ul {
  display: flex;
  max-width: 1110px;
  margin: 0 auto 80px;
  width: 96%;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 30px;
}
main section.member ul li {
  position: relative;
  flex-basis: 48.64%;
}
main section.member ul dl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  text-align: center;
  background-color: rgba(255, 83, 13, 0.4);
  width: 100%;
  padding-top: 43px;
}
main section.member ul dt {
  padding-bottom: 10px;
}
main section.member ul dd {
  font-size: 32px;
  padding-bottom: 47px;
}

/* --------------------------

change the worldエリア

----------------------------*/
main section.change p {
  padding-bottom: 40px;
}
main section.change h3 {
  font-size: 16px;
  text-align: center;
  padding-bottom: 24px;
}
main section.change ul {
  position: unset;
  display: block;
  margin: 0 auto 40px;
  max-width: 323px;
  width: 96%;
}
main section.change ul li {
  background-color: #333;
  font-size: 32px;
  padding-bottom: 8px;
}
main section.change ul li:last-child {
  padding-bottom: 0;
}
main section.change dl {
  text-align: center;
  padding-bottom: 80px;
}
main section.change dl dt {
  padding-bottom: 8px;
}
main section.change dl dd {
  font-size: 32px;
}

/* --------------------------

CONCERTエリア

----------------------------*/
main section.concert p {
  padding-bottom: 40px;
  max-width: 690px;
  width: 96%;
}
main section.concert dl {
  text-align: center;
  padding-bottom: 80px;
}
main section.concert dl dt {
  padding-bottom: 8px;
}
main section.concert dl dd {
  font-size: 32px;
  padding-bottom: 40px;
}
main section.concert dl dd:last-child {
  padding-bottom: 0;
}

/* --------------------------

ACCESSエリア

----------------------------*/
main section.access p {
  text-align: center;
  padding-bottom: 40px;
}
main section.access p br.pc-none {
  display: none;
}
main section.access iframe.maps {
  width: 100%;
  aspect-ratio: 16/9;
  height: 400px;
}

/* --------------------------

ページトップエリア

----------------------------*/
p.PageTop {
  position: fixed;
  right: 16px;
  bottom: 107px;
}

/* --------------------------

ENTRYエリア

----------------------------*/
main section.entry {
  margin-top: -7px;
}
main section.entry form {
  max-width: 540px;
  margin: 0 auto;
  width: 96%;
}
main section.entry form div {
  padding-bottom: 80px;
}
main section.entry form dt span {
  margin-left: 8px;
}
main section.entry form dd input {
  border: none;
  outline: none;
  color: #fff;
  border-bottom: 1px solid #fff;
  background: none;
  width: 100%;
  line-height: 40px;
}
main section.entry form p {
  text-align: center;
}
main section.entry form p button {
  outline: none;
  border: none;
  width: 160px;
  line-height: 56px;
  font-size: 24px;
  color: #fff;
  background-color: #FF530D;
}
main section.entry form p button:hover {
  opacity: 0.7;
  color: #FF530D;
  background-color: #fff;
}

/* --------------------------

footerエリア

----------------------------*/
footer p {
  margin-top: -7px;
  font-size: 24px;
  line-height: 92px;
  background-color: #ff0000;
  text-align: center;
}

/* --------------------------

タブレットエリア

----------------------------*/
@media (max-width: 991px) {
  /* --------------------------

  header-visualエリア

  ----------------------------*/
  header {
    height: 655px;
  }
  header hgroup p:last-child {
    font-size: 63px;
  }
}
/* --------------------------

タブレットエリア

----------------------------*/
@media (max-width: 767px) {
  /* --------------------------

  m-menuエリア

  ----------------------------*/
  ul.m-menu {
    flex-wrap: wrap;
  }
  ul.m-menu li.filter:first-child {
    flex-basis: 100%;
  }
  ul.m-menu li.filter {
    flex-basis: 31.53%;
    padding-bottom: 16px;
    text-align: center;
  }
  ul.m-menu li.filter:nth-child(5), ul.m-menu li.filter:nth-child(6), ul.m-menu li.filter:nth-child(7) {
    padding-bottom: 0;
  }
}
/* --------------------------

スマホ縦エリア

----------------------------*/
@media (max-width: 575px) {
  /* --------------------------

  header-visualエリア

  ----------------------------*/
  header {
    height: 655px;
  }
  header hgroup {
    padding: 95px 0;
  }
  header hgroup h1 {
    font-size: 49px;
    padding-bottom: 15px;
  }
  header hgroup p {
    font-size: 45px;
    padding-bottom: 15px;
  }
  header hgroup p:last-child {
    padding-bottom: 0;
    font-size: 29px;
  }
  /* --------------------------

  m-menuエリア

  ----------------------------*/
  ul.m-menu {
    display: block;
    max-width: 360px;
  }
  ul.m-menu li.filter:nth-child(5), ul.m-menu li.filter:nth-child(6) {
    padding-bottom: 16px;
  }
  /* --------------------------

  MEMBERエリア

  ----------------------------*/
  main section.member ul {
    display: block;
    max-width: 360px;
  }
  main section.member ul li {
    padding-bottom: 30px;
  }
  main section.member ul li:last-child {
    padding-bottom: 0;
  }
  main section.member ul dl {
    top: 44%;
    padding-top: 22px;
  }
  main section.member ul dl.drum {
    top: 50%;
  }
  main section.member ul dd {
    font-size: 24px;
    padding-bottom: 22px;
  }
  /* --------------------------

  change the worldエリア

  ----------------------------*/
  main section.change p {
    max-width: 360px;
  }
  main section.change ul {
    max-width: 360px;
  }
  /* --------------------------

  CONCERTエリア

  ----------------------------*/
  main section.concert p {
    max-width: 360px;
  }
  /* --------------------------

  ACCESSエリア

  ----------------------------*/
  main section.access p br.sp-block {
    display: block;
  }
  /* --------------------------

  ENTRYエリア

  ----------------------------*/
  main section.entry form {
    max-width: 360px;
  }
  /* --------------------------

  footerエリア

  ----------------------------*/
  footer p span {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */