@charset "UTF-8";
/*!
variables
------------------------------
*/
:root {
  --color-white: #fff;
  --color-black: #111;
  --color-red: #e60012;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-en: "Bebas Neue", sans-serif;
}

html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4035087719vw;
  }
}
@media (min-width: 1140px) {
  html {
    font-size: 100%;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
body {
  margin: 0 auto;
  font-family: var(--font-family-base);
  word-break: break-all;
  color: var(--color-white);
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

/*!
utility
------------------------------
*/
.u-br-sp {
  display: block;
}

@media screen and (min-width: 992px) {
  .u-br-sp {
    display: none;
  }
}
.u-br-pc {
  display: none;
}

@media screen and (min-width: 992px) {
  .u-br-pc {
    display: block;
  }
}
.u-desktop {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .u-desktop {
    display: block !important;
  }
}
.u-mobile {
  display: block !important;
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none !important;
  }
}
/*!
layout
------------------------------
*/
.l-container {
  margin: 0 auto;
}

.l-header {
  display: block;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: var(--color-white);
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 5rem;
  }
}

.l-inner {
  width: 100%;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1140px;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

/*!
component
------------------------------
*/
.c-largeButton {
  font-size: 1.125rem;
  line-height: normal;
  font-weight: 600;
  display: block;
  padding: 0.75rem 0.625rem;
  background-color: var(--color-red);
  border-radius: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-largeButton {
    font-size: 2rem;
    border-radius: 50px;
    padding: 1.375rem 1.25rem;
  }
}

.c-middleButton {
  font-size: 0.875rem;
  font-weight: 300;
  padding: 1.0625rem;
  color: var(--color-black);
  display: block;
  text-align: center;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  transition: color 0.3s, background-color 0.3s;
}

@media screen and (min-width: 768px) {
  .c-middleButton:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    opacity: 1;
  }
}

.c-commonText {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-commonText {
    font-size: 1.75rem;
  }
}

.c-sectionTitle {
  font-family: var(--font-family-en);
  color: #000;
  font-size: 1.875rem;
  font-weight: 400;
  text-transform: uppercase;
}

/*!
project
------------------------------
*/
/* ヘッダー */
.p-header {
  padding: 0.625rem 1rem;
}

.p-header__inner {
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.p-header__button {
  text-transform: uppercase;
  display: none;
  font-family: var(--font-family-en);
}
@media screen and (min-width: 768px) {
  .p-header__button {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    font-size: 2.3125rem;
    font-weight: 400;
    line-height: normal;
    padding: 1.75rem 1.375rem;
    border-radius: 0 0 0 10px;
    background-color: #85000a;
  }
}

.p-header__title {
  max-width: 4.125rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-header__title {
    margin-left: 0;
    max-width: 6.4375rem;
  }
}

.p-header__title a {
  display: block;
}

/* main */
.p-section {
  padding-top: 6.1875rem;
  padding-bottom: 3.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-section {
    padding-top: 10.125rem;
    padding-bottom: 6.25rem;
  }
}

.p-section.p-section--bgLayer {
  background-image: url(../images/bg.jpg);
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.p-head__text {
  text-align: center;
  margin-top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-head__text {
    margin-top: 2.5625rem;
  }
}

.p-head__images {
  display: grid;
  row-gap: 1.5rem;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-head__images {
    margin-top: 6.3125rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-head__placeImg img {
  height: auto;
  display: block;
}

.p-head__subText {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2px;
  font-weight: 300;
  margin-top: 1rem;
}

.p-head__middleTextBox {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-head__middleTextBox {
    margin-top: 3.0625rem;
  }
}

.p-head__miniText {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .p-head__miniText {
    font-size: 1.25rem;
  }
}

.p-head__largeText {
  margin-top: 0.6875rem;
  font-size: 1.375rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-head__largeText {
    font-size: 2.25rem;
    margin-top: 0.75rem;
  }
}

.p-head__largeText span {
  font-size: 1rem;
  margin-left: 0.5rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-head__largeText span {
    margin-left: 0.8125rem;
    font-size: 1.5rem;
  }
}

.p-head__ticketBox {
  margin-top: 2.5rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-head__ticketBox {
    margin-top: 3.75rem;
  }
}

.p-ticket {
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-ticket {
    margin-bottom: 2.5rem;
  }
}

.p-ticket__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-ticket__header {
    gap: 1.25rem;
  }
}

.p-ticket__title {
  font-size: 1.375rem;
  font-weight: 600;
  text-align: left;
  flex: 1;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .p-ticket__title {
    font-size: 1.75rem;
  }
}

.p-ticket__price {
  font-size: 1.375rem;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-ticket__price {
    font-size: 1.75rem;
  }
}

.p-ticket__benefits {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-ticket__benefits {
    margin-top: 1.5rem;
  }
}

.p-ticket__benefitText {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-ticket__benefitText {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
}

.p-ticket__benefitText:last-child {
  margin-bottom: 0;
}

.p-ticket__divider {
  height: 1px;
  background-color: var(--color-white);
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-ticket__divider {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.p-ticket__notes {
  margin-top: 1rem;
  list-style: none;
  padding: 0;
}

.p-ticket__note {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-ticket__note {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }
}

.p-ticket__note:last-child {
  margin-bottom: 0;
}

.p-head__bottomBox {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-head__bottomBox {
    margin-top: 3.375rem;
  }
}

/* cta */
.p-ctaBox {
  background-color: #000;
  border: 4px solid var(--color-white);
  border-radius: 20px;
  padding: 1.25rem 0.75rem;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .p-ctaBox {
    padding-top: 2.6875rem;
    padding-bottom: 2.875rem;
  }
}

.p-ctaBox__inner {
  text-align: center;
}

.p-ctaBox__title {
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-ctaBox__title {
    font-size: 2.5rem;
  }
}

.p-ctaBox__text {
  margin-top: 0.875rem;
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-red);
}
@media screen and (min-width: 768px) {
  .p-ctaBox__text {
    font-size: 2.125rem;
    margin-top: 1.5rem;
  }
}

.p-ctaBox__button {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-ctaBox__button {
    max-width: 36.6875rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.5rem;
  }
}

.p-ctaBox__subText {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .p-ctaBox__subText {
    margin-top: 1.875rem;
    font-size: 1rem;
  }
}

.p-ctaBox__notes {
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-ctaBox__notes {
    margin-top: 1.875rem;
  }
}

.p-ctaBox__note {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-ctaBox__note {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }
}

.p-ctaBox__note:last-child {
  margin-bottom: 0;
}

/* artist */
.p-artist {
  padding-top: 3.125rem;
  background-color: var(--color-white);
}

.p-artist__title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-artist__title {
    font-size: 4.375rem;
  }
}

.p-artist__blockWrap {
  margin-top: 2.0625rem;
  display: grid;
  row-gap: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-artist__blockWrap {
    margin-top: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-artist__block {
    display: grid;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    -moz-column-gap: 3.125rem;
         column-gap: 3.125rem;
  }
}

.p-artist__img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-artist__img {
    max-width: 18.75rem;
  }
}

.p-artist__img img {
  display: block;
}

.p-artist__textBox {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-artist__textBox {
    margin-top: 0;
  }
}

.p-artist__subTitle {
  color: var(--color-black);
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.5333333333;
}
@media screen and (min-width: 768px) {
  .p-artist__subTitle {
    font-size: 2.25rem;
    line-height: 1.2777777778;
  }
}

.p-artist__text {
  display: block;
  color: var(--color-black);
  font-size: 0.875rem;
  font-weight: 300;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-artist__text {
    margin-top: 0.875rem;
  }
}

.p-artist__links {
  display: grid;
  row-gap: 0.875rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-artist__links {
    margin-top: 4.75rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    max-width: 34.25rem;
  }
}

.p-artist__moreText {
  font-size: 1.5rem;
  color: var(--color-black);
  font-weight: 600;
  line-height: 1.9166666667;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-artist__moreText {
    font-size: 2.25rem;
    line-height: 1.2777777778;
  }
}

/* フッター */
.p-footer {
  background-image: url(../images/bg.jpg);
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: overlay;
  padding-top: 3.125rem;
  padding-bottom: 8.25rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-top: 6.25rem;
    padding-bottom: 8.375rem;
  }
}

.p-footer__logo {
  display: block;
  max-width: 9.1875rem;
  margin-right: auto;
  margin-left: auto;
}

.p-footer__textBox {
  margin-top: 3.125rem;
  text-align: center;
}

.p-footer__text {
  display: block;
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 2;
}

.p-footer__textSlash {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer__textSlash {
    display: inline-block;
    margin-left: 0.125rem;
    margin-right: 0.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__textWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.p-footer__textWrap + .p-footer__text {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__textWrap + .p-footer__text {
    margin-top: 0;
  }
}

.p-footer__links {
  display: grid;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  justify-content: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__links {
    margin-top: 3.125rem;
  }
}

.p-footer__icon {
  display: block;
}

.p-footer__bottomText {
  margin-top: 1.9375rem;
  font-size: 0.875rem;
  letter-spacing: 0.2px;
  line-height: 3.2857142857;
  color: var(--color-white);
  font-weight: 300;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-footer__bottomText {
    margin-top: 3.125rem;
    font-size: 1rem;
    line-height: 2.875;
  }
}

.p-footer__iconbox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-footer__iconbox {
    width: 400px;
  }
}

.p-footer__iconbox a {
  padding: 0;
  margin: 0 10px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-footer__iconbox a {
    margin: 0 20px;
  }
}

/* artists section */
.p-artists {
  background-color: transparent;
  background-image: none;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-artists {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}

.p-artists--spacing {
  margin-top: 50px;
}

.p-artists__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-artists__header {
    margin-bottom: 3.75rem;
  }
}

.p-artists__title {
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-red);
  font-family: var(--font-family-en);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  letter-spacing: 0.1em;
  border: 2px solid var(--color-white);
}
@media screen and (min-width: 768px) {
  .p-artists__title {
    font-size: 3rem;
    padding: 1rem 3rem;
    border-width: 3px;
  }
}

.p-artists__content {
  display: grid;
  row-gap: 2.5rem;
  margin: 0 auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .p-artists__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    row-gap: 0;
  }
}

.p-artists__block {
  text-align: center;
}

.p-artists__image {
  width: 100%;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-artists__image {
    margin-bottom: 2rem;
  }
}

.p-artists__image img {
  width: 100%;
  height: auto;
  display: block;
}

.p-artists__name {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 1.5rem 0 0 0;
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-artists__name {
    font-size: 2rem;
    margin-top: 2rem;
  }
}

.p-artists__name--asitis {
  border-bottom: 0.25rem solid var(--color-white);
  padding-bottom: 0.5rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-artists__name--asitis {
    border-bottom-width: 0.35rem;
    padding-bottom: 0.75rem;
  }
}

.p-artists__name--gg {
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-artists__name--gg {
    margin-bottom: 0.75rem;
  }
}

.p-artists__support {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-artists__support {
    font-size: 1.25rem;
  }
}

.p-artists__more {
  text-align: center;
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  margin-top: 2.5rem;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-artists__more {
    font-size: 1.75rem;
    margin-top: 3.75rem;
  }
}
/*# sourceMappingURL=style.css.map */